• Resolved Flamekebab

    (@flamekebab)


    I’m trying to get my shop back to how it used to look before migrating to 2.x. Various things have changed or been removed and I’m going to document them as best as I can to make migration easier for other people.

    JigoShop 1.x had a navigational breadcrumbs both on product lists and product pages. They’re gone in 2.x.

    The documentation talks about jigoshop_template_functions.php to remove them or add them to another area of the site. As far as I can tell that file no longer exists in the 2.x branch of JigoShop:
    https://www.jigoshop.com/documentation/breadcrumb/

    Should I be using the Breadcrumb NavXT plugin instead?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can use whichever plugin you wish – our breadcrumbs weren’t implemented in 2.x – they might be implemented later on, though ??

    Thread Starter Flamekebab

    (@flamekebab)

    I shall experiment and report back! Glad to know it’s not just me failing to find the “on” switch!

    Thread Starter Flamekebab

    (@flamekebab)

    Okay, so implementing Breadcrumbs Nav XT was quite straightforward.

    It was just a matter of popping the following code into my theme’s files to make it appear on the relevant pages. For me it was layout-head.php but chances are it’ll be something else for other people.

    <div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/" id="breadcrumb">
        <?php if(function_exists('bcn_display'))
        {
            bcn_display();
        }?>
    </div>

    Once I’d inserted the code I was able to customise it in the Breadcrumbs NavXT settings.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘JigoShop Breadcrumbs no longer exist?’ is closed to new replies.