Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1213251

    Without editing FTP files, I need to find a solution I can implement from inside WordPress.

    I’m running Enfold 4.71 with a child theme.

    Thanks!

    #1214531

    Hey 0_o,

    Thank you for the inquiry.

    You can change the heading tag to h2 by editing the slide’s Advanced > Heading Tag settings. Make sure to update the theme to the latest version, 4.7.4.

    Best regards,
    Ismael

    #1215028

    Thanks, I was able to change it from H2 to H1, but I can’t update the theme from 4.71 to anything above it, it keeps telling me:

    Theme Updates: No Updates available. You are running the latest version! (4.7.1)
    Your PHP version: 7.4.4
    Last successful check was on 2020/05/21 13:50.

    Under Enfold Child Theme Options > Theme Update.

    • This reply was modified 3 years, 11 months ago by 0_o.
    #1215362

    Hi,

    Did you add a valid token? https://kriesi.at/documentation/enfold/theme-registration/. If that is not the problem then please post admin login details in private so that we can have a closer look at your site.

    Best regards,
    Rikard

    #1215403

    on Fullwidth-Easyslider : Content-Tab (first tab) – click on one image to go to the slide option window.
    Go to “Advanced Tab” ( Third tab ) – there you have the option to switch for each slide to a heading tag you want.

    #1215755

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

    #1216056

    or does he like to : A way to change any Fullwidth Easy Slider Caption Title to H1 from inside WP?

    the filter : avf_customize_heading_settings is now in newest enfold only in the av-helper-slideshow.php
    I thought it was on former versions in each slider type.
    So i only found a way to influence the whole default_heading tag by this in your child-theme functions.php:
    It only changes the default_heading – if you have set a custom heading tag ( see posting of mine before with the image) it will not overwrite that.

    function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ){
    	if( $context == 'avia_slideshow' ){
    		$default_heading = ! empty( $dev_tags['heading_tag'] ) ? $dev_tags['heading_tag'] : 'h1';
    		$args['heading'] = $default_heading;					
    		$args['extra_class'] = $dev_tags['heading_class'];	
    	}
      return $args;
    }
    add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );

    i did not see a way to use this filter only for the full-width slider
    if you only like to influence the default_heading on fullwidth easy slider you can have your own
    child-theme slideshow_fullsize.php
    and change on line 810 to:
    'theme_default' => 'h1',

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