pirazolone
Forum Replies Created
-
Forum: Plugins
In reply to: flShow Manager HelpSeems that no one has solved the XML issues from the following post.
Forum: Plugins
In reply to: flShow Manager HelpSeems not to work with 2.8+ You can get to what is described in the as the “manage” by looking in the “Tools” section of the Menu… FYI.
Forum: Fixing WordPress
In reply to: is_page_template conditionalHas someone found a way to make conditional CSS based on “is_page_template” to work? I am trying to load only css page “x” to certain templates…
I was trying:
<?php if ( is_page_template('single-video.php')) { echo '<link rel=”stylesheet” href=”',bloginfo("template_directory"),'/css/video.css” type=”text/css” />'; } ?>or
<?php if ( is_page_template('single-video.php')) { ?> <link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/css/video.css” type=”text/css” /> <?php } ?>to no avail… It seems not to even send it to the browser.
Is this just not even possible (with or without the “echo” in the header)?
(thinking that being pre-“Body”, the php is not parsing… )Any hint in a direction would help…
Forum: Plugins
In reply to: Is there a plugin for age verification for WordPress 2.7I am also looking for a Age verification (challenge, Bday input) for only certain posts/pages.
Has anyone found anything?
Forum: Fixing WordPress
In reply to: Navigation – 3rd levelAny luck with this, I am using the following code and have the same problem:
<?php if($post->post_parent) $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); else $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); if ($children) { ?> <div class="sideblock-pages"> <ul class="subpage-list"> <?php echo $children; ?> </ul> </div> <?php } ?>