Forum Replies Created
-
AuthorPosts
-
Hi,
Very good, we will leave this thread open to hear back from you.Best regards,
MikeHi,
Thanks for the feedback, do you mean the width of the orange background or the blue bar at the top? I thought we were looking at the orange background. I don’t have an iPhone but I checked the page on a Mac with Safari in Responsive Design Mode using iPhone 8 plus and iPads in portrait and landscape and the background was full width, Please see the screenshots in the Private Content area.
Try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.Best regards,
MikeHi,
The only time I saw the cookie message was when the “Enable cookie consent messages” was activated, isn’t this what you meant? Perhaps I misunderstood. With Polylang I believe you need to use the Strings Translations to change the text language, I don’t believe it’s going to change automatically because Polylang changed the language codes.Best regards,
MikeHi,
Thanks for tring , above you wrote “last woocommerce update which was faulty” and the error says “No such file or directory” so try deactivating your plugins and reinstalling woocommerce, perhaps a manual installation via FTP might be easiest. Perhaps you should also make a backup of your site.Best regards,
MikeHi,
Glad Nikko was 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,
MikeHey misterman,
Thank you for your request, I submitted it to the Dev Team for review.Best regards,
MikeHi,
I see that you are using PHP v8.0.10 on your server, please try downgrading to v7.x
and then clear your caches. You may also want to deactivate your other WooCommerce plugins before re-activating the main WooCommerce plugin.Best regards,
MikeOctober 3, 2021 at 9:29 pm in reply to: Color changes by headlines and symbol box for no reason #1323358Hey acardell887,
Thanks for the login, I see you are using a caching and minifying plugin with the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression settings also active. When you make a chage please be sure to clear your caches, I logged into your first site abd cleared your plugin cache and the icon returned to red.

It would be best to disable all of your caches while you are making changes to your site.Best regards,
MikeHey Paul,
Thanks for the feedback but I’m not seeing that your width is not 100% for landscape, but I do see that you have an un-closed media query rule at:/*---START I-PAD-PRO-STYLES---*/ @media only screen and (max-width: 1400px) { /* Add your iPAD-PRO Styles here */this max-width: 1400px rule includes all of your other rules, so there is a good chance that if you are using Safari this is messing up the rest of your css.
I’m using Chrome on Windows which is a little more forgiving.
Try checking all of your css for other errors also, it may help to remove unused rules instead of commenting them out and removing extra comments.Best regards,
MikeHi,
Glad to hear this helped, for the widget titles please try:#wrap_all .main_color h3.widgettitle { color: #fff; }After applying the css, please clear your browser cache and check.
Best regards,
MikeOctober 3, 2021 at 8:16 pm in reply to: Header Layout: Logo left, Widgets right, menu below #1323354Hi,
Thank you for your patience and the link to your site, in order to replate the Header Layout: Logo left, Widgets right, menu below on your site I had to change your header widget function fromava_main_menutoava_after_main_menufor the widgets to be placed in the correct place.add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }and the order of this css needed to be 5, instead of 1
.responsive #top #header #header_main .inner-container .main_menu { order: 5;now your header looks like the example, please clear your browser cache and check.
Best regards,
MikeOctober 3, 2021 at 6:16 pm in reply to: TOC widget content disappers after update to 4.8.6.3 #1323350Hi,
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,
MikeOctober 3, 2021 at 6:12 pm in reply to: When making new pages they keep showing up on the menu and no way of deleting #1323347Hi,
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,
Thank you for your patience, to exclude your function from certain pages try changing to this:add_action('ava_before_footer','avia_footer_top_column'); function avia_footer_top_column(){ if( ! is_page( array( 74, 76, 504 ) ) ) { ob_start(); dynamic_sidebar( 'footertop' ); $footertop = ob_get_clean(); $output = "<div class='container_wrap footer_color' id='footertop'>"; $output .= "<div class='container'>"; $output .= do_shortcode($footertop); $output .= "</div>"; $output .= "</div>"; echo $output; } }and edit the array page IDs to the ones you want to exclude:
74, 76, 504Best regards,
MikeHi,
Thank you for your patience and the login to your site, I found that for your custom shortcode[polylang_cookie_message]
the language codes didn’t match your site, typically I would seeen_US & de_DEas in your function but when I examined your site it was usingen & deso I changed your function to this and nw it works correctly:add_shortcode( 'polylang_cookie_message', 'avia_polylang_cookie_message' ); function avia_polylang_cookie_message() { $message = 'I agree to the terms and conditions laid out in the <a href="https://mywebsite.com/privacy/">Privacy Policy</a>'; $lang = pll_current_language('locale'); switch ($lang) { case 'en': $message = 'I agree to the terms and conditions laid out in the <a href="https://mywebsite.com/privacy/">Privacy Policy</a>'; break; case 'de': $message = 'Durch die Nutzung unserer Angebote erklären Sie sich mit dem Setzen von Cookies einverstanden. Mehr erfahren Sie in unserer <a href="https://mywebsite.com/datenschutz/">Datenschutzerklärung</a>.'; break; } return $message; }It looks like your Polylang plugin allows you to manually set the language codes.
Best regards,
MikeOctober 3, 2021 at 3:55 pm in reply to: Enfold Theme next category tab – don't know what to actually call this #1323338Hi,
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,
Thanks for the feedback, in this example I have added media queries because I note that this is not needed for smaller devices before the boxed layout takes effect, and as the screen width becomes larger the percentage needs to change. So give this a try and if you notice a certain size that needs more percentage you can add it with a media query.@media only screen and (min-width: 989px) and (max-width: 1460px) { #top.page-id-26118 #wrap_all #header { margin-left: -5% !important; } } @media only screen and (min-width: 1461px) { #top.page-id-26118 #wrap_all #header { margin-left: -7% !important; } }If you do find a certain size and your media query is not working as expected, then let us know so we can help.
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,
MikeOctober 3, 2021 at 1:58 pm in reply to: Google Chart – Gauge animated – Strange background colour #1323330Hi,
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,
MikeOctober 2, 2021 at 11:59 pm in reply to: undefined index error after update to Enfold 4.8.6.3 #1323312Hi,
Thank you for the login, I corrected by editing\enfold\config-templatebuilder\avia-shortcodes\magazine\magazine.php
line 544:
if( 'disabled' == $atts['img_scrset'] )
changed to:
if( isset( $atts['img_scrset'] ) && 'disabled' == $atts['img_scrset'] )
please clear your browser cache and check.
This was found and corrected by the Dev Team and will be in the next update.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,
MikeOctober 2, 2021 at 11:37 pm in reply to: Enfold Theme next category tab – don't know what to actually call this #1323309Hey TSPCart,
For the Single Product Post Navigation you can enable at Enfold Theme Options ▸ Blog Layout ▸ Single Post Options ▸ Single Post Navigation

I don’t believe this is available on category archive pages to the next category, I don’t recall it and it’s not showing on our Shop Demo.Best regards,
MikeHi,
Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:@media screen and (max-width: 767px) { #top > #wrap_all, #footer-bg > div { width: 100% !important; max-width: 100% !important; } }After applying the css, please clear your browser cache and check.
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 matteomelli,
Thanks for the link to your site but I don’t see a Typography -> Font dimension option in the right sidebar in either the Block Editor nor the Classic Editor, perhaps this is a plugin addon?

To change the text size of a textblock element the option is under the styling tab:

Perhaps there is something else that is overriding your font size so if you could explain the exact block of text you are having an issue with and perhaps a screenshot of how you are trying to change it we could understand better.Best regards,
MikeHi,
Thanks for the feedback, for page 1 I don’t see that you have added the css above, it will make the menu link text white for all 4 items when you are on those pages, please see the screenshot below.
The blue area is the full width of your 1/5 column, on either side is the margin and padding from the page and from the next column, to make it larger please make your 1/5 column larger and the next column smaller, please see the screenshot below.
For you page 2 the widget ID is different so you will need to add this css for it to work the same:#nav_menu-5 { background-color: #0098d2; margin-top: 8px; padding: 10px; } #nav_menu-5.widget li a { color: #000 !important; font-weight: normal; } #nav_menu-5.widget li a:hover { color: #fff !important; } #nav_menu-5.widget #menu-archiv > li.current_page_item > a { color: #fff !important; }please see the screenshot below.
After applying the css, please clear your browser cache and check.Best regards,
MikeOctober 2, 2021 at 9:13 pm in reply to: Google Chart – Gauge animated – Strange background colour #1323299October 2, 2021 at 8:28 pm in reply to: Help me, please.Enfold Theme:There has been a critical error on this website. #1323295Hi,
Thank you for your patience, this can easily be fixed by manually changing the url to “https://” and click “Save all settings” button at the top of the page.

you do not have to use the “upload” button, you can manually enter the url to the image.
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




