Forum Replies Created
-
AuthorPosts
-
February 22, 2020 at 7:10 pm in reply to: Looking to Build Layout Similar to Construction Demo #1186996
Hi,
Sorry for the late reply, and thanks for the link. Your menu items look larger than the “Construction Demo”
Please include an admin login so we can try to match.Best regards,
MikeHey condonpb,
Sorry for the late reply, please link to the page that the tickbox is not working on.Best regards,
MikeHey Keith,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:h2.post-title.entry-title { padding: 0px !important; }To sort the results please try adding this code to the end of your functions.php file in Appearance > Editor:
add_filter( 'pre_get_posts', 'custom_get_posts' ); function custom_get_posts( $query ) { if( is_category() || is_archive() ) { $query->query_vars['orderby'] = 'name'; $query->query_vars['order'] = 'ASC'; } return $query; }Best regards,
MikeFebruary 22, 2020 at 6:07 pm in reply to: white background of cell with -90 margin works fine on pc but not on mobile #1186988Hi,
Sorry for the late reply, I took a look at your negative margin element and what I see is that your section has full width, so when it is moved up it just makes the top image look smaller.
I recommend using a different element, such as a grid row, to create this effect.Best regards,
MikeHey whdsolutions,
Thank you for the link and screenshot, for the one page you linked to you could use this css:#av_section_1 > div > div,#av_section_2 > div > div { padding-bottom: 0px; } #footer { z-index: 0 !important; } #av_section_2 > div > div > div > div > div > div > div > div > div > img { margin-bottom: -40px; z-index: 5 } #av_section_1 > div > div > div > div > div > div > div > div > div > img { margin-bottom: -50px; }But I notice that there are other pages with these two elements, so to have these work on all pages please add a custom ID such as “hands-up” and “inspection-copies” on every page they show.

After you do this then this css should work:#inspection-copies > div > div,#hands-up > div > div { padding-bottom: 0px; } #footer { z-index: 0 !important; } #hands-up > div > div > div > div > div > div > div > div > div > img { margin-bottom: -40px; z-index: 5 } #inspection-copies > div > div > div > div > div > div > div > div > div > img { margin-bottom: -50px; }Best regards,
MikeHi,
Thank you for the login, I adjusted your function to this:// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['imdb'] = array( 'font' =>'effra', 'icon' => 'uf2d8'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['imdb'] = 'imdb'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Please clear your browser cache and check.
Best regards,
MikeHi,
For my example above this css works:#footer .widget_text .custom-html-widget .footer-icons .avia-image-container-inner { padding-right: 5px; }but if this doesn’t work for you plaese link to your page so we can examine.
Best regards,
MikeHi,
I see that the error is for/config-woocommerce/config.php:2016\and you said that you changed/config-woocommerce/config.phpso if you have been replacing the/config-woocommerce/config.phpwith each update there is a good possibility that the file has changed.
Try replacing with the standard file for this version to see if it corrects the error.Best regards,
MikeHi,
Thanks for the link, your “BVG_Cover_Stapel” the magazine cover, seems normal to me, it is 400px, were your other image is 1000px
you can adjust these sizes when you add the image. Can you post the functions.php code that you are concerned about?Best regards,
MikeHi,
Thank you, this is the css I added to your Quick CSS:#top .main_color .BGbiancoTXTblu .avia-color-theme-color.avia-button { background-color: #ffffff; border-color: #24305e; color: #24305e !important; } #top .main_color .BGbiancoTXTblu:hover .avia-color-theme-color.avia-button { color: #fff !important; }Please clear your browser cache and check.
Best regards,
MikeHey rainerknappeham,
Thank you for the link, to remove the title on hover Try adding this code to the end of your functions.php file in Appearance > Editor:function remove_title_on_hover(){ ?> <script> (function($){ $("*").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_title_on_hover');Typically we would recommend adding this to your child theme functions.php so you will not lose it after the next update, but it looks like you are not using a child theme. Another option is to add this function as a plugin, which you can download here.
Best regards,
MikeHey tivo_designs,
Thank you for the link, I see in your socket you have two twitter icons and assume one of these is meant to be the “imdb”
Please include and admin login so I can check your new icon settings.Best regards,
MikeHey Mohamad,
Sorry for the late reply, You should be fine migrating to a new server and removing the theme from the old server so it is not pinged anymore.Best regards,
MikeHi,
Please remove all of the custom css for this button so we can try againBest regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeFebruary 20, 2020 at 1:18 pm in reply to: How to change "Save my name, email, and website …" text in comment section #1186330Hi,
Glad to see you have found a solution for this, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
@dondela as I understand it the custom files @Guenni007 created do not work anymore because of changes to Enfold a couple of updates ago and there is a new option in Enfold for setting the H tag.

Best regards,
MikeHi,
Sorry, I don’t see any, not all feature requests make it into development.
But I understand a new feature requests page is going to be added shortly so it will be another opportunity to submit it for review.Best regards,
MikeFebruary 20, 2020 at 12:48 pm in reply to: Add icon list on all pages of my website, including product page? #1186318Hi,
Are we seeing the CTA twice because we are adding it twice, once with the original “woocommerce_after_single_product_summary” and again with the new “ava_before_footer”?
I’m thinking we don’t need the original shortcode anymore because the new one works on all pages and not just the product pages?Best regards,
MikeFebruary 19, 2020 at 2:03 pm in reply to: How to change "Save my name, email, and website …" text in comment section #1186037Hey bcerin,
Thank you for the link, but I’m not seeing “Save my name, email, and website in this browser for the next time I comment” in your comment section. I also don’t see the “website” field, were you already able to make these changes?Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field instead:@media only screen and (max-width: 767px) { .intro-box-main > .av-parallax { background: #fff; background-image: unset !important;}}Best regards,
MikeHi,
Sorry for the late reply, this seems to be related to another post of yours that was answered here. Please check.Best regards,
MikeHi,
Try adding this css:#top .main_color .BGbiancoTXTblu .avia-button > span.avia_iconbox_title:hover { color: #fff !important; z-index: 0 !important; } #top .main_color .BGbiancoTXTblu > .avia-button > .avia-button:hover { color: #fff !important; background-color: #24305e !important; }Best regards,
MikeHi,
Glad you found a solution that works better for you, and thanks for sharing.
Shall we close this then?Best regards,
MikeHi,
Thank you, I found the text in the de_DE language file:Aufgrund deiner Datenschutz-Einstellungen können wir Ihnen die Karte nicht anzeigen. Klicken Sie hier, um die Karte in einem neuen Fenster zu öffnen.and changed to your request:
Aufgrund Ihrer Datenschutz-Einstellungen können wir Ihnen die Karte nicht anzeigen. Klicken Sie hier, um die Karte in einem neuen Fenster zu öffnen.Please download the modified files here and save a copy of your current files for fallback and upload these to /enfold/lang/ then clear your browser cache and check.
Best regards,
MikeHi,
Very good then, please feel free to open a new topic if you have further questions about this.Best regards,
MikeHey DirkB,
Please check your settings at Enfold Theme Options > Cookie Consent > Cookie Handling > Show advanced options > Refuse Cookie Warning

to see if this is matchs your message, I checked my install in German but the message is not the same, perhaps you are using a different version.
We can make the text change in the German language file for you once we find it, please link to your site where we can see the message and let us know if you are using “de_DE” or “de_DE_formal” for the language, and which translation above to wish to use.Best regards,
Mike -
AuthorPosts
