Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Currently using – WP 2.8.4 and NextGen 1.3.5

    Note: My navigation bar is a little messed up from upgrading to 2.8.4, but the resolution for my slideshow not appearing still works – I hope this helps you all.

    I was having the same difficulty as many who have written in in that my slideshows were not appearing at all (but everything else was working great!).

    To fix it I went to:
    GALLERY->Options->Slideshow and then I changed the location of the “Path to the Imagerotator (URL):” to /wp-content/uploads/imagerotator.swf and that fixed everything.

    Note: the difference is that previously the “/wp-content/” was not in the URL, it was just “/uploads/imagerotator.swf”.

    Good luck everyone!

    Take a look at this article… I used this to specifically remove the breadcrumbs from my home page and would imagine it will work for any page (where you would substitute “home” or “front_page” with any page name you like).

    https://www.ads-software.com/support/topic/247222

    digikev wrote:
    It is far simpler to adjust the code that you add into your header.php so it reads:

    <?php if (is_home()) {
    	echo '';
    } else {
    	if ( function_exists('yoast_breadcrumb') ) {
    		yoast_breadcrumb('<p id="breadcrumbs">','');
    	}
    } ?>

    I found that I needed to change the word home — see above example — to front_page because in WP 2.8.2 I have the FRONT PAGE DISPLAYS option set to “A static page” which I then set and WP “turns into” a call for “front_page”. It worked great after I made that one change.

    Also, I placed the breadcrumbs in my index.php – you may need to look elsewhere (other than header.php) if your breadcrumbs are not in that file.

    I used:

    <?php if (is_front_page()) {
    	echo '';
    } else {
    	if ( function_exists('yoast_breadcrumb') ) {
    		yoast_breadcrumb('<p id="breadcrumbs">','');
    	}
    } ?>

Viewing 3 replies - 1 through 3 (of 3 total)