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

    Ia it possible to place this Breadcrumb on another position? For example in a code block? Now I am using transparent header and then I doesn’t show…
    What I most like to do is to decide myself the placement of it…

    #1366755

    Hey limedrop,
    You can add the breadcrumb as a shortcode to the site, such as in a code block element, the shortcode is [av_breadcrumbs]
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor to make the shortcode work:

    function av_breadcrumbs_shortcode( $atts ) {
      return Avia_Breadcrumb_Trail()->get_trail( array( 'separator' => '/', 'richsnippet' => true ) );
      }
      
      add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );

    Best regards,
    Mike

    #1366756

    Thank u :)

    #1366766

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumb’ is closed to new replies.