Forum Replies Created
-
AuthorPosts
-
February 12, 2022 at 2:12 pm in reply to: Corrupted Thumbnails on Enfold Latest News Sidebar Widget #1340266
Hi,
Thank you for the link to your site and the screenshot, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.news-link .news-thumb .wp-caption { margin: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeFebruary 12, 2022 at 1:53 pm in reply to: Stye for a link added to the Cookie Consent Message Bar #1340265Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thank you, I adjusted for these also, please clear your browser cache and check again.Best regards,
MikeHi,
To center these footer “widgettitle” you can use this css:#footer strong.widgettitle { width: 100% !important; display: block; text-align: center; }or since these titles are manually added in a text widgets you could edit them to be H3 instead of “strong” tags and use this css instead
#footer h3.widgettitle { width: 100% !important; display: block; text-align: center; }Hi,
Please link to the pages so I can create css rules that filter for these, I have checked many pages but don’t see any links that are red.Best regards,
MikeHi,
Thanks for the link, I adjusted for these, please clear your browser cache and check if you can find any more.Best regards,
MikeHey arasaac,
You could try this script, I tested it with a slideshow button and it worked, so you will need to adjust it to use the class you are going to use.
Try adding this code to the end of your functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function($){ $('a.avia-slideshow-button').on('click', function(e) { e.preventDefault(); $('.av-burger-menu-main a').trigger('click'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');If you need help adjusting this then include an admin login in the Private Content area and a link to a text page with the element you want to use as the trigger.
Best regards,
MikeHi,
Thank you for your patience, I have added this css to address the three types of links that were still red in your posts:#top #main p > strong > span > a, #top #main .abh_name.fn.name a, #top #main .entry-content p > span > a { color: #0000ff!important; }
if you find anymore links in a post that is still red please link to it so we ca examine it.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey fgiotto,
Thanks for the link to your page, I would not foresee any issues, it should work fine.Best regards,
MikeHi,
This is not occurring when I test your page, please explain what device and browser you are using.
Does this have anything to do with why your shortcodes.js was customized in the first place? I see that you have quite a few files in your child theme are all of these customized?Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
The footer widgets are h3 on our demo we could help better if you linked to your page.Best regards,
MikeFebruary 11, 2022 at 1:22 am in reply to: Hero image with title and excerpt on homepage, individual post pages? #1340062Hi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1); function avf_header_setting_filter_mod($header_settings) { if ( is_singular() ) { $header_settings['header_transparency'] .= " header_transparency"; $header_settings['header_class'] .= " av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_phone av_header_transparency av_header_searchicon av_header_unstick_top_disabled av_minimal_header av_bottom_nav_disabled av_alternate_logo_active av_header_border_disabled"; } return $header_settings; }Best regards,
MikeHi,
Please include the url to the page in question so we can take a look.Best regards,
MikeFebruary 10, 2022 at 1:58 pm in reply to: Hero image with title and excerpt on homepage, individual post pages? #1339979Hi,
To force the featured image full width on posts please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#top.single-post .big-preview.single-big { width: 100vw !important; position: relative !important; left: calc(-50vw + 50%) !important; }After applying the css, please clear your browser cache and check.
Best regards,
MikeFebruary 10, 2022 at 1:46 pm in reply to: Logo Size Mobile/Tablet + Scaling of Menu Bar on Medium Size Screens #1339976Hi,
To use a custom screen width for the burger menu please see here in our documentation:@media only screen and (max-width: 890px) { #top #header .av-main-nav > li.menu-item { display: none!important; } #top #header .av-burger-menu-main { cursor: pointer; display: block!important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
I reason only one opens at a time is because you have it set to Only one toggle open at a time (Accordion Mode) if you want then use the Multiple toggles open allowed (Toggle Mode) option

other that that your toggles are working as expected, see our demo here.Best regards,
MikeFebruary 10, 2022 at 4:14 am in reply to: Cannot make any changes in the backend, everything is white #1339894Hi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thanks for the login, disabling your child theme/js/shortcodes.jsby disabling this function in your functions.php solves the issue:function wp_change_shortcodesjs() { wp_dequeue_script( 'avia-shortcodes' ); wp_enqueue_script( 'avia-shortcodes-child', get_stylesheet_directory_uri().'/js/shortcodes.js', array('jquery'), 2, true ); } add_action( 'wp_print_scripts', 'wp_change_shortcodesjs', 100 );so there is an error in your shortcodes.js, please review, if you can not find the error then replace with a new copy of the current parent theme shortcodes.js
Best regards,
MikeHey daves1997,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:h3.widgettitle { text-align: center; }After applying the css, please clear your browser cache and check.
If this doesn’t help please include the url to the page in question so we can take a closer look.Best regards,
MikeHi,
Please remove the script above and the css above that hid the h2 tag and add this code to the end of your functions.php file in Appearance ▸ Editor:function add_product_title_to_description_tab() { ?> <script> (function($){ var text = $('#top.single-product #wrap_all h1.product_title.entry-title').text(); $('#tab-description h2').text(text.replace('Beschrijving', text)); })(jQuery); </script> <?php } add_action('wp_footer', 'add_product_title_to_description_tab');Best regards,
MikeHi,
Thanks, I see that the Tekst 1 is added text, so while that text could be replaced with the product title, it doesn’t seem logical to add text or shortcode to be replaced when you could just as easily add the product title in the first place, do you see what I mean?Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts


