Forum Replies Created

Viewing 1 replies (of 1 total)
  • I tried this with no results.

    Again, If I understand right, replace the 10 and or 11 with the page ID to exclude from the flyout.

    I inserted into the function.php file…My contact page still shows.
    My example:

    add_filter( ‘iworks_upprev_filter_where’, ‘my_function’ );

    function my_function( $where = ” )
    {
    return $where.’ ID is not in ( 798, 11 ) ‘;
    }

    I got the page ID by hovering over the page edit link: post:798

    Unrelated, this function worked as expected (in function.php)

    add_filter( ‘iworks_upprev_box’, ‘add_my_content’ );

    function add_my_content( $content )
    {
    $text = ‘xxxxxxxxxxxxx’;
    return preg_replace( ‘@</h6>@’, ‘</h6>’.$text, $content );
    }

    Any words of wisdom? Thanks

Viewing 1 replies (of 1 total)