gavingear
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Salt] Search results page broken in Salt after updateJust got the update, and it’s fixed, thanks so much!!!
Forum: Themes and Templates
In reply to: [Salt] Search results page broken in Salt after updateJust sent the .SQL file, thanks!
Forum: Themes and Templates
In reply to: [Salt] Search results page broken in Salt after updateI’ll do that.
JFYI: I added the following to wp-config.php, and debug.log was empty, no errors detected when searching.
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, true);
@ini_set(‘display_errors’, E_ALL);Forum: Themes and Templates
In reply to: [Salt] Search results page broken in Salt after updateAnyone else experience this?
Forum: Plugins
In reply to: Insert Youtube ID from Custom Field into Embed CodeYes, there was an error- here’s the fixed code:
<?php $youtubeid = get_post_meta($post->ID, "youtubeid", true); ?> <?php if($youtubeid !== '') { ?> <div class="video_style"> <object type="application/x-shockwave-flash" style="width:425px; height:350px;" data="http://www.youtube.com/v/<?php echo $youtubeid; ?>"> <param name="movie" value="http://www.youtube.com/v/<?php echo $youtubeid; ?>" /> </object> </div> <?php } ?>Forum: Fixing WordPress
In reply to: 2.7 Post Template option goneSounds good- I’ll give it a try!
Forum: Themes and Templates
In reply to: post template optionsI was looking for a way to do this from the “new post” page- like you get (the dropdown) when you create a new page… (I’d like to have product-specific templates that I can choose when authoring a new post.
Why not use pages instead of posts you may ask? I’m using categories to sort sidebar sections. Pages don’t have categories. 🙂
Forum: Themes and Templates
In reply to: post template optionsI’m in the same boat. Anyone have an answer here?
Forum: Fixing WordPress
In reply to: 2.7 Post Template option goneI’m on 2.8, and want to use post templates (from dropdown) I see the option in pages, but not posts. Thanks!
Forum: Fixing WordPress
In reply to: Supporting subdirectories for different “sections” on my siteThanks for the information- so with “standard WordPress” you can’t have pages show up under mydomain.com/subdirectory?
Can you elaborate on this sentance:
“I see only regular WordPress section Pages with one set to Blog Page with list of Posts”What are “section pages”?