Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1407538

    Hello. There is an issue with the icon lists. The texts are H4 automatically which in some cases disrupts the SEO structure of the pages.
    We would like to be able to adjust the tags. If not possible, remove the heading tags.

    #1407567

    Hi menainfosec,

    It’s possible to adjust the tags.
    Edit the Icon List, then edit the List Item > Advanced (tab) > Heading Tag and change it to your preferred tag.
    Hope it helps.

    Best regards,
    Nikko

    #1407590

    there is no Heading tag on the Advanced tab

    #1407597

    Hi,

    I think you have checked the Advanced (tab) of Icon List and not the List Item, here are some screenshots that may help:

    and

    Hope it helps.

    Best regards,
    Nikko

    #1407605

    I don’t have that option https://prnt.sc/Gsx2K31Xg6tn

    #1407614

    Hi menainfosec,

    I see, did you perhaps modified Icon List or overridden it via a child theme? if yes, then you may need to update it as well.
    If not, can you give us temporary admin access? so we can check on it (if the site has people viewing on it then a staging site would be great).
    You can post the credentials in private content.

    Best regards,
    Nikko

    #1407618

    I am not sure. Please check yourself.

    #1407623

    Hi menainfosec,

    Thanks for giving us admin access.
    It shows up now, Hide Advanced Layout Builder Developer Options was enabled in Enfold Theme Options > Layout Builder > Show Advanced Options that’s why it was hidden.
    Please review your site.

    Best regards,
    Nikko

    #1407642

    Thank you. It’s default H4 now. Can I somehow make it default <p> ?

    #1407692

    Hi menainfosec,

    To default into < p > for Icon List item, please add this PHP code in your child theme’s functions.php:

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

    Best regards,
    Nikko

    #1407780

    ok. Thanks

    #1407790

    Hi menainfosec,

    We’re glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Icon list texts are H4’ is closed to new replies.