Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1338534

    Hello,

    The date of the milestone is in H2. I want it in p

    How can I do that?

    In the option panel, it’s written to use avf_customize_heading_settings. But how does it work?

    thank you!

    #1338543

    Ok I found it.
    But is there a tutorial on how to use that function?

    #1338599

    Hi VirtuHouse,

    Please try using this code:

    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 );

    Hope it helps.

    Best regards,
    Nikko

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