Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1317812

    Hello,

    Each image that you add in the masonry gallery add an <h3> title tag, which destroying the seo on-page.
    <h3 class=”av-masonry-entry-title entry-title ” ….. </h3>

    How Can I remove the h3 and have only as normal paragraph ?

    #1317839

    this comes to child-theme functions.php:

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array()){
      if( $context == 'avia_masonry' ){
        $args['heading'] = 'p';              
      }
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );
    #1317974

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

    #1318167

    Hi,

    Thanks ! This works fine.
    It will be nice to have this in theme. Too many functions slows down the theme.

    #1318403

    Hi,

    Thanks for the feedback, we’ll take that into account for a future version of the theme.

    Best regards,
    Rikard

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