StudioPress Community Forums
  StudioPress Community Forums > Search Forums
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
Showing results 1 to 25 of 25
Search took 0.01 seconds.
Search: Posts Made By: KHCreative
Forum: General Discussion 11-06-2012, 10:36 PM
Replies: 7
Views: 558
Posted By KHCreative
Bill, that did it. Not sure why I couldn't get it...

Bill, that did it. Not sure why I couldn't get it to work the first time I put it in the functions file. I was probably just over thinking it.

Thank you so much for your time,
Keith
Forum: General Discussion 11-06-2012, 07:50 PM
Replies: 7
Views: 558
Posted By KHCreative
Well, I suppose I've spent to much time behind...

Well, I suppose I've spent to much time behind the computer today, because I drawing a blank as to where to use this code. I tried writing it in the functions file and the archive page of the child...
Forum: General Discussion 11-06-2012, 01:23 PM
Replies: 7
Views: 558
Posted By KHCreative
Bill - I have been thinking about this today and...

Bill - I have been thinking about this today and thought the problem involved the archives not recognizing my cpt. I'll try your code and see how it works and let you guys know. I really appreciate...
Forum: General Discussion 11-06-2012, 07:44 AM
Replies: 7
Views: 558
Posted By KHCreative
Great, thanks. Looks like I have some reading to...

Great, thanks. Looks like I have some reading to do. While I'm sifting through this, if anyone has an idea or solution, please chime in. At first glance I don't see my answer easily found in Travis'...
Forum: General Discussion 11-05-2012, 09:05 PM
Replies: 7
Views: 558
Posted By KHCreative
Custom Post Type categories

Hello all,

I know this is going to fall outside of general support, but I'm hoping the community can help me figure this out.

I have added custom post types to a site and I'm having trouble...
Forum: General Discussion 09-25-2012, 01:50 PM
Replies: 2
Views: 186
Posted By KHCreative
OK, if figured out how to get the excerpt to show...

OK, if figured out how to get the excerpt to show for "posts" and the content for custom post types using this code:
remove_action('genesis_loop', 'genesis_do_loop');
add_action('genesis_loop',...
Forum: General Discussion 09-07-2012, 12:31 AM
Replies: 2
Views: 186
Posted By KHCreative
This is the code I'm currently using in a...

This is the code I'm currently using in a template for this page.
function custom_do_cat_loop() {
if ( 'schedule' == get_post_type() ) {
the_content();
}
$announcements_args =...
Forum: General Discussion 09-07-2012, 12:02 AM
Replies: 2
Views: 186
Posted By KHCreative
Show the_content instead of the_experpt in archive with CPTs

I have set up an archive page that shows my posts and custom post types. I need to be able to show the excerpts for my regular posts and show the content for my custom post types. I'm thinking there...
Forum: General Discussion 08-28-2012, 05:25 PM
Replies: 3
Views: 138
Posted By KHCreative
Solved

OK, after much trial and error, I figured it out. I'll post my code here so that someone less may be able to benefit from it some day.

/*-----------------------------------------
Check if a page...
Forum: General Discussion 08-28-2012, 04:40 PM
Replies: 3
Views: 138
Posted By KHCreative
I expected that this was not something support...

I expected that this was not something support would handle but thought a member might jump in and offer a hand. I feel like I'm very close, as I have the parent and subpage printing on their...
Forum: General Discussion 08-28-2012, 01:15 PM
Replies: 3
Views: 138
Posted By KHCreative
List pages only if subpages exist

Hey guys,

I'm trying to build a navigation menu for sub-pages, that only shows up when you're on the parent page. I also need the parent page to show up in the menu as well. I thought I had it,...
Forum: General Discussion 08-27-2012, 08:44 AM
Replies: 5
Views: 167
Posted By KHCreative
Thanks Nick, that worked.. I hate when I bother...

Thanks Nick, that worked.. I hate when I bother you guys with such trivial stuff. Thank you for you time.

Keith
Forum: General Discussion 08-26-2012, 10:25 PM
Replies: 5
Views: 167
Posted By KHCreative
Nick, I had tried that without success and...

Nick,

I had tried that without success and left it out of the code I posted. Maybe I'm not writing it correctly. Here is what I'm using.

function custom_do_cat_loop() {
global $query_args;...
Forum: General Discussion 08-24-2012, 10:59 AM
Replies: 5
Views: 167
Posted By KHCreative
CPT and pagination

Hey gang,

I'm trying to create a page template that will show all blog posts, including all cpt. Currently I have this working aside from the pagination. The links are showing up, but all pages...
Forum: General Discussion 08-22-2012, 04:37 PM
Replies: 3
Views: 168
Posted By KHCreative
I have created a search.php page in my child...

I have created a search.php page in my child theme directory, where I have began creating the desired results. Now I need to get my "pages" to show excerpts. I have this code in my functions file
//...
Forum: General Discussion 08-22-2012, 09:36 AM
Replies: 3
Views: 168
Posted By KHCreative
Understood. I need to figure out how to get the...

Understood. I need to figure out how to get the pages to show an except, like the posts and then I need to figure out if I need to create a search.php page in my theme directory where I can customize...
Forum: General Discussion 08-20-2012, 10:54 AM
Replies: 3
Views: 168
Posted By KHCreative
Change layout of search results page

Hello everyone,

I'm wanting to change the results of my search results page. I am trying to make it look a bit more like Google, with less except and no post meta data. I would think I need a page...
Forum: General Discussion 08-12-2012, 12:11 PM
Replies: 1
Views: 92
Posted By KHCreative
Anyone?

Maybe I should have titled this "PHP help". Basically, I need help with this one line:

echo '<div id="category-name" style="background-image: url( '<?php echo $image[0]; ?>' )"></div> ';

The...
Forum: General Discussion 08-11-2012, 03:15 PM
Replies: 1
Views: 92
Posted By KHCreative
Use featured image as background in post div

Hey guys,

I have a site where I need to able to change the background in a post via the media library. I think I have found the solution, I just don't have the php knowledge to code it correctly....
Forum: General Discussion 07-27-2012, 10:09 AM
Replies: 9
Views: 243
Posted By KHCreative
Genius!!!! Thank you very much. Do you mind...

Genius!!!! Thank you very much. Do you mind telling me what the "!" means in php. Sorry, new to the php game and learning as I go.

Thank you again for solving this problem,
Keith
Forum: General Discussion 07-27-2012, 09:57 AM
Replies: 9
Views: 243
Posted By KHCreative
I'm developing this on my computer, so I don't...

I'm developing this on my computer, so I don't have a url. I do see in the function file a custom field that is added above the post title for the post image. With this, the image does not have to be...
Forum: General Discussion 07-27-2012, 09:37 AM
Replies: 9
Views: 243
Posted By KHCreative
OK, I see from researching the theme forum that...

OK, I see from researching the theme forum that the post image in the single post is pulled automatically and not needed to be inserted into the post. I'll have to change that.

Thanks and you can...
Forum: General Discussion 07-27-2012, 09:06 AM
Replies: 9
Views: 243
Posted By KHCreative
OK, coffee has kicked in, so I shouldn't need to...

OK, coffee has kicked in, so I shouldn't need to ask this question, but now that I have the images imported correctly and showing up in excepts, I also have the image showing up at the top of my...
Forum: General Discussion 07-27-2012, 08:51 AM
Replies: 9
Views: 243
Posted By KHCreative
As I stated, lack of coffee...... Actually,...

As I stated, lack of coffee......

Actually, I imported the site and it failed to import the past two years of images. Once I scrolled through post back to 2009, I started seeing my images in the...
Forum: General Discussion 07-27-2012, 07:21 AM
Replies: 9
Views: 243
Posted By KHCreative
Use post image when no featured image

I'm thinking my lack of coffee this morning is causing a brain fade, as I can't seem to recall how to make genesis use the first image in my post in place of the featured image, when no featured...
Showing results 1 to 25 of 25

 
Forum Jump

All times are GMT -5. The time now is 02:21 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.