Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #650515

    Hi,

    Is there a way I can use the breadcrumbs without using the bar that they sit in?

    Also, how do I override the breadcrumbs and use Yoast version instead.? I enabled Yoast, but it won’t activate over yours.

    Thanks

    Vincent

    • This topic was modified 8 years, 5 months ago by Vincent.
    #651196

    Hey Vincent,

    Thank you for using Enfold.

    Create a new shortcode from the avia_title function. More info here: https://kriesi.at/support/topic/how-to-using-the-breadcrumb-shortcode/#post-523485

    Best regards,
    Ismael

    #651428

    Hi Ismael,
    Thanks for your reply. That post you sent to me does not apply. If you read what I wrote above, it says:

    Is there a way I can use the breadcrumbs without using the bar that they sit in?

    So, to rephrase:
    I would like to enable breadcrumbs without the breadcrumbs being placed in the title bar. I am NOT using the title bar. I would like to use Yoast inbuilt settings from his plugin to control the breadcrumbs.

    Thanks
    Vincent.

    • This reply was modified 8 years, 4 months ago by Vincent.
    #652444

    Hi,

    If you do the modification in the previous thread, you’ll be able to place the breadcrumb shortcode anywhere you want. Isn’t that what you want? Maybe a screenshot will help. If you you want to use the yoast breadcrumb, replace the avia_title function with the yoast_breadcrumb function:

    add_shortcode( 'avs_bread_crumb', 'yoast_breadcrumb' );
    

    Use this shortcode afterwards:

    [avs_bread_crumb]
    

    Best regards,
    Ismael

    #652640

    Hi Ismael,

    Thanks for your reply.

    Okay, this is part of the way there. However, I don’t want to have to manually use a shortcode each time we upload a product, most of our products will come via a feed and that is literally hundreds automatically listing on the site.

    What I would like is to be to the breadcrumbs outputted from Yoast SEO plugin.
    I would like these breadcrumbs to appear without using the Enfold title bar. I have enclosed a screenshot in private area whee I would like them.

    Thanks and I appreciate your help.
    Vincent

    #654016

    Hi,

    We are sorry for the delay. Please use this in the functions.php file:

    add_action( 'woocommerce_after_single_product_summary', 'ava_yoast_breadcrumb_mod', 1 );
    function ava_yoast_breadcrumb_mod() {
    	yoast_breadcrumb();
    }

    Best regards,
    Ismael

    #654235

    Hi Ismael,
    Thanks for your reply, please see my response in the private area.

    Thanks
    Vincent

    • This reply was modified 8 years, 4 months ago by Vincent.
    #655748

    Hi,

    maintenance mode seems to be on. Can you provide us admin access please? so we see the actual page?

    Best regards,
    Andy

    #656252

    HI Andy, details below

    #656649

    Hi,

    User credentials are not working for me. Can you please check them once again?

    Best regards,
    Yigit

    #656664

    Sorry Yigit, I missed a character, see below:

    #658184

    Hi,

    Seems you have disabled the title and breadcrumbs on your site.

    Best regards,
    Josue

    #658225

    Josue,

    See notes below

    • This reply was modified 8 years, 4 months ago by Vincent.
    #659081

    Hi,

    We modified the code a bit. The breadcrumb is now located above the single product title. Use the following css code if you want to adjust the position of the breadcrumb:

    .yoast_product_breadcrumb {
        position: absolute;
        right: 0;
        top: 20px;
    }

    Best regards,
    Ismael

    #659516

    Cheers Ismael and appreciate the time you took to help us. – please marked as resolved.

    Regards
    Vince

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Remove beadcrumbs from Title Bar’ is closed to new replies.