Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    The wppa display is apparently not on either a post or a page. I did not recognize that this was possible, i will fix it in the next version.
    This case will then be treated as a ‘page’ case, so it will be dependant of setting Table II-A1b.

    If you can’t wait until 5.1.12 you can patch it as follows:

    edit wppa-breadcrumb.php line 24:

    if ( $type == 'page' && ! $wppa_opt['wppa_show_bread_pages'] ) return;	// Nothing to do here

    change to:

    if ( $type != 'post' && ! $wppa_opt['wppa_show_bread_pages'] ) return;	// Nothing to do here

    Thread Starter webmastermama

    (@webmastermama)

    THANK YOU SO MUCH!

    Thread Starter webmastermama

    (@webmastermama)

    THANK YOU SO MUCH!

    Thread Starter webmastermama

    (@webmastermama)

    Sorry – my fingers hit a bunch of keys accidentally.

    This worked and that makes me happy. I appreciate your quick response and a response that worked. Once I get home I’ll get the donation sent
    because anyone who response quickly deserves that.

    I’m using a theme where the front-page content is created through the
    appearance area. It has a form to fill out so I had to go in and
    edit the page directly to include the slideshow.

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

The topic ‘Breadcrumbs with PHP Code’ is closed to new replies.