Forum Replies Created
-
AuthorPosts
-
October 3, 2021 at 9:29 pm in reply to: Color changes by headlines and symbol box for no reason #1323358
Hey 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,
MikeHi,
Thank you for your patience and for the login, I removed the script that @Yigit had added so I could test and I made a duplicate of your product, it seems that the manually added Product Purchase Button causes this with the first following product slider, if the Product Purchase Button is removed or if it is placed at the after the product sliders this doesn’t occur.
On the duplicate product page linked below I removed all other elements one at a time, and placed the Product Purchase Button in between two product sliders to demonstrate this.
But I’m not able to reproduce this on a new install with Enfold and WooCommerce by copying your page shortcode to it, or by manually trying to recreate, in this screenshot you will the product slider doesn’t break, please note the products are from our Shop demo so they are different from yours but the page elements and layout is yours:

So I don’t believe this is caused by the theme, perhaps it’s from one of your 28 plugins, you could investigate further by disabling them one at a time to find the one causing the error, or if you could use @Yigit’s solution above.Best regards,
MikeHi,
Thank you for your patience, to make the current page menu item white please add this css:#nav_menu-4.widget #menu-galerien > li.current_page_item > a { color: #fff !important; }I’m not sure what you want to set wide, if it is the widget then try increasing the parent column from 1/5 to a larger column.
Best regards,
MikeHi,
Thank you for the video, I tried to take a look at your test site but Enfold is not activated, can you please activate it.Best regards,
MikeOctober 2, 2021 at 5:47 pm in reply to: Footer Navigation is missing after the update of today #1323288Hi,
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 the link to your sites, while examining your production site I saw an error in the console that pointed to the avia_framework_globals url had an unrecognized character that broke the url, this is a screenshot to show the comparison note the new line in the url:

this space or empty character was also visible in the permalink settings:

and while I found no odd characters in your WordPress ▸ Settings ▸ General ▸ WordPress Address (URL) & Site Address (URL) re-entering the urls and saving solved
Please clear your browser cache and check.Best regards,
MikeHey Dzimnikov,
Thank you for the link to your site, I checked your orange slider button on the second slide in Chrome, Firefox, & Edge on Windows 10 desktop and the text looks centered to me.

the emails also seem centered on large mobile (425px)

but on small mobile the text goes off the screen as you said, you could use word-break, but since it an email I believe it would be better to reduce the font size:@media only screen and (max-width: 420px) { #top #main #homeamenities h4 { font-size: 18px !important; } }I would also recommend reducing your font size for the slider elements on mobile, but try using the layerslider custom css field for the slider elements.
For the cart button try this css:.html_visible_cart #header_main .cart_dropdown { right: 20px; }The login to your site didn’t work for me, but to sort your products on the shop page try going to Customizer → WooCommerce → Product Catalog and sort by most recent:

Best regards,
Mike -
AuthorPosts





