Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #347045

    Hi, I have image links within my home page that link to another page and so on. Currently my breadcrumb just says Home>14-19, then once I click a link within 14-19 it says the title of that page instead for example Home>Apprenticeships. whereas it should be Home>14-19>Apprenticeships

    I need the breadcrumbs to feature all the links of how the user got to the specific page.

    #347426

    Hey elloEmily!

    Are you sure “Apprenticeships” is a child page of “14-19”? If so then it should display in the breadcrumbs.

    If your still having problems then try deactivating all plugins and send us a link and we’ll take a look.

    Regards,
    Elliott

    • This reply was modified 9 years, 4 months ago by Elliott.
    #347675
    This reply has been marked as private.
    #347861

    Hey!

    I wasn’t able to test this out but try opening up /enfold/config-templatebuilder/avia-shortcodes/numbers.php and find lines 285 – 287.

    $number = strip_tags(apply_filters('avf_big_number', $number));
    $number = preg_replace('!(\D+)!','<span class="avia-no-number">$1</span>',$number);
    $number = preg_replace('!(\d+)!','<span class="avia-single-number" data-number="$1">$1</span>',$number);
    

    And change them to this.

    if(!preg_match('/(?i)msie [1-8]/',$_SERVER['HTTP_USER_AGENT'])) {
    $number = strip_tags(apply_filters('avf_big_number', $number));
    $number = preg_replace('!(\D+)!','<span class="avia-no-number">$1</span>',$number);
    $number = preg_replace('!(\d+)!','<span class="avia-single-number" data-number="$1">$1</span>',$number);
    }

    Cheers!
    Elliott

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.