Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Forum: Plugins
    In reply to: flShow Manager Help

    Seems that no one has solved the XML issues from the following post.

    http://wordpress.org/support/topic/273699

    Forum: Plugins
    In reply to: flShow Manager Help

    Seems 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.

    Has 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…

    I am also looking for a Age verification (challenge, Bday input) for only certain posts/pages.

    Has anyone found anything?

    Any 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 } ?>
Viewing 5 replies - 1 through 5 (of 5 total)