-
AuthorPosts
-
March 26, 2020 at 2:38 pm #1198048
Hello. How can I change the Heading tags (h3) in the Footer widget areas?
March 26, 2020 at 5:18 pm #1198119Hey Nazarii,
Change to what or how(font-size, color, etc)?
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
VictoriaMarch 26, 2020 at 6:22 pm #1198145Just change h3 tags to h5
March 28, 2020 at 3:44 pm #1198605Hi Petreshak,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
VictoriaMarch 28, 2020 at 9:10 pm #1198679try this in child-theme functions.php:
function replace_tags_with_tags(){ ?> <script> (function($) { function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('#footer h3.widgettitle', '<h5></h5>'); }(jQuery)); </script> <?php } add_action('wp_footer', 'replace_tags_with_tags');
March 28, 2020 at 9:22 pm #1198686i thought we could use a filter – but it is only set in class-sidebar-generator.php for sidebar widget titles
try this instead in your child-theme functions.php – it is better to replace it before it is inserted in the DOM
function register_custom_footer_widget(){ $footer_columns = avia_get_option( 'footer_columns', '5' ); for ($i = 1; $i <= $footer_columns; $i++){ unregister_sidebar( 'av_footer_'.$i ); register_sidebar(array( 'name' => 'Footer - column'.$i, 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h5 class="widgettitle">', 'after_title' => '</h5>', 'id'=>'av_footer_'.$i )); } } add_action( 'widgets_init', 'register_custom_footer_widget', 11 );
- This reply was modified 4 years, 7 months ago by Guenni007.
March 30, 2020 at 2:43 pm #1199075https://joinuplviv.com/, can i change this h3 http://prntscr.com/rpfven http://prntscr.com/rpfvxu to h5 by quick css?
March 30, 2020 at 7:12 pm #1199138you can not change the tags via quick css!
did you test this ( i would prefer ) : https://kriesi.at/support/topic/heading-tags-in-the-footer-widget-areas/#post-1198686
or that: https://kriesi.at/support/topic/heading-tags-in-the-footer-widget-areas/#post-1198679
-
AuthorPosts
- You must be logged in to reply to this topic.