-
AuthorPosts
-
May 15, 2020 at 12:10 pm #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!
May 20, 2020 at 7:42 am #1214531Hey 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,
IsmaelMay 21, 2020 at 3:52 pm #1215028Thanks, 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 4 years, 5 months ago by 0_o.
May 23, 2020 at 7:37 am #1215362Hi,
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,
RikardMay 23, 2020 at 9:56 am #1215403May 24, 2020 at 2:08 pm #1215755May 25, 2020 at 9:43 am #1216056or 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',
-
AuthorPosts
- You must be logged in to reply to this topic.