Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1217656

    Hi,

    With the module “chronology”

    I don’t have my H1 tag.

    the h2 tag is on event date, it in not a good idea.

    How can i put H2 tag to Milestone Title not H4 ! and remove tag title in event date.

    https://test.sophronisator.fr/en/using-the-mobile-application

    <h1>(Missing heading)
    <h2>How to use the web and mobile application Accord-Sophro
    <h2>1
    <h3>(Missing heading)
    <h4>Advices
    <h2>2
    <h3>(Missing heading)
    <h4>Sessions
    <h2>3
    <h3>(Missing heading)
    <h4>Phéno-diary
    <h3>Lancer l’application

    • This topic was modified 4 years, 6 months ago by ChrisCoach.
    #1217677

    i do not see your page – but you can use the filter in this case: avf_customize_heading_settings

    This filter exists in a lot of ALB Elements to change the heading tag: Link

    on time line there are two possibilites to influence the date and the title
    And you can even add an additional Class to these tags:
    Put this to your child-theme functions.php

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array()){
    
    // this is for the date 
      if( $context == 'avia_sc_timeline' && is_array( $extra_args ) && in_array( 'date', $extra_args ) )
      {
        $args['heading'] = 'h3';            
        $args['extra_class'] = 'custom-date-class';   
      }
    
    // this is for the title 
      if( $context == 'avia_sc_timeline' && is_array( $extra_args ) && in_array( 'title', $extra_args ) )
      {
        $args['heading'] = 'h2';            
        $args['extra_class'] = 'custom-title-class';   
      } 
      
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );
    #1217687

    these ALB do have that filter :

    #1217939
    This reply has been marked as private.
    #1217941

    Hi
    I change “h3” in function by “p”

    and it seems OK :now :
    <h1>(Missing heading)
    <h2>Comment utiliser l’application web et mobile Accord-Sophro
    <h2>Conseils
    <h2>Séances
    <h2>Phéno-Agenda
    <h3>Lancer l’application
    <h3>Séances de groupe
    <h4>Séance de groupe de sophrologie tous les samedis de 16 h à 17 h
    <h3>Derniers Articles
    <h3>Catégories
    <h3>Suivez-nous sur Facebook
    <h3>Cookie and Privacy Settings

    but not H1 ?

    • This reply was modified 4 years, 6 months ago by ChrisCoach.
    #1217945

    so you had to wait til a mod is here.

    #1217947
    This reply has been marked as private.
    #1217951
    This reply has been marked as private.
    #1217971

    I am a participant like you and therefore do not see the hidden content.
    Bumping here in the posts has rather the opposite effect. Your Urgent in the topic is indicative enough for the mods.

    #1218000

    Hi,

    Thank you very much, your solution work.
    I just try to find why the title with h1 does’nt display, It seems to be from extended editor…

    Best Regard
    cm

    • This reply was modified 4 years, 5 months ago by ChrisCoach.
    #1219368

    Hi,

    Sorry for the late response. Looks like you’ve managed to add the h1 element or title using the Special Heading element. Let us know if you need more help.

    Best regards,
    Ismael

    #1219761

    you can close this post

    #1220045

    Hi,

    Thanks for letting us know, I’ll go ahead and close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Big SEO issue URGENT’ is closed to new replies.