Forum Replies Created
-
AuthorPosts
-
Hi,
The issue is coming from this css:#menu-cja-menu-left { position: absolute; }to correct please add this css:
@media only screen and (max-width: 767px){ .responsive #top #wrap_all #header_main .container { height: 30px !important; } #top #wrap_all #menu-cja-menu-left { position: relative !important; } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for the link, I found “not an option” as bold, here is what it looks like for me:

was there also other ones? Does it not show only in preview before it is published?
You also said that the text is white by default? What is the color set at Enfold Theme Options > General Styling > Main Content > Main Content font color

also check Enfold Theme Options > Advanced Styling > p in case the color was set there:

If this doesn’t help please include an admin login so we can investigate further.Best regards,
MikeHey smarta-brett,
Sorry for the late reply, and thanks for the screenshot, but we are unable to view the page in question to test without a login, please include an admin login.
Did you also add the css from the solution post?.single-product-main-image { width: 25%; } .single-product-summary { overflow: hidden; width: 45%; float: left; margin-right: 5%; } .single-product .sidebar { width: 25%; }If you didn’t that could be why it’s not working for you, or perhaps try clearing your browser cache.
Best regards,
MikeHi,
Glad to hear :) If you have tried adding your buttons to other products and the buttons continue to work properly, then perhaps we can close this thread?Best regards,
MikeHi,
I took a look at your page and found that your “learn dash” css requires the class “learndash-wrapper” for the section in question, but this class has not been applied. I don’t see any errors for this and I don’t see a way to add the class properly though the backend, and since I have not worked with this plugin before so I recommend asking the learn dash support if they have seen this before.
I can not imagine anything in Enfold that would remove any classes. I do see that you have a custom “course.php” in your child theme that I assume is used to create this page but the other classes are not matching up so I don’t want to try editing it. Perhaps whoever created this for you will be better suited to modify it.
But if none of this helps you I wrote this script to add the class for you based on the page you linked to. Try adding this code to the end of your child theme functions.php file in Appearance > Editor:function add_learndash_wrapper(){ ?> <script> (function($){ $(document).ready(function(){ $(".ld-item-list.ld-lesson-list").addClass("learndash-wrapper"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_learndash_wrapper');Best regards,
MikeHey jelle,
Sorry for the late reply, we can’t see your settings without logging in but when you edit your contact element you can look under “backend” > “Your email address” to enter the aaddresses you want the email to go to:

you can enter one or more Email addresses (separated by comma) where mails should be delivered to.
Unfortunately, we don’t have a way to create headings in the email for the responses you receive.
You may find a plugin such as the “Contact Form 7” offers more options like this for you.Best regards,
MikeHey anantharam,
To add the “add to cart” button to your homepage and categories, try adding this code to the end of your functions.php file in Appearance > Editor:add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_add_to_cart', 10 );To make your breadcrumbs fit into your titles ares, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (max-width: 767px) { .single-product .title_container { height: 90px !important; } }for your related products did you add this css:
.related.products li { width:18%!important; }it is what is making is very small, it should be removed.
For your 4 product tabs, on large phones they may fix into one line with this css:#top div.product .woocommerce-tabs ul.tabs a { padding: 5px !important; }but on small phones, such as the iPhone 6, they will not and to make the buttons smaller may make them not usable.
To remove your footer widget spacing, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { .responsive #top #wrap_all #footer .widget,.responsive #top #wrap_all #footer .flex_column.av_one_fourth { margin-top: 0 !important; margin-bottom: 0 !important; } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHey flordelizamejia,
Thank you for the links, you could open a “easy slider” in a “popup” lightbox by adding the easy slider shortcode into the popup light box.

First I used the “popup lightbox tutorial” but in this case I modified it a little so I could publish all of the code needed into a “code block” element, this makes it only work on page with the “code block”.<script type="text/javascript"> jQuery(window).load(function(){ jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true }); }); </script> <!--/*triger*/--> <a href="#test-popup" class="open-popup-link">Click this button to open a lightbox</a> <!--/*popup box*/--> <div id="test-popup" class="white-popup mfp-hide"> YOUR CODE GOES HERE </div> <style> /*css*/ .white-popup { position: relative; background: #FFF; padding: 20px; width: auto; max-width: 500px; margin: 20px auto; } </style>then in the code above where you see
YOUR CODE GOES HEREI added the “easy slider” shortcode created with the “shortcode wand” from a “Classic Editor” post:

You could add other element shortcodes the same way if you wish, such as a “call to adtion” button

you can also edit the css in the code above to change the size of the popup or make the background transparent.Best regards,
MikeJanuary 25, 2020 at 3:42 pm in reply to: set the same font for different languages frontpage #1178372Hi,
Try adding multiple layerslider elements to your page, then the layerslider that is first will have the ID#layer_slider_1and the one below will have the ID#layer_slider_2then use this css to hide or show the IDs based on screen width:@media only screen and (min-width: ?px) and (max-width: ?px) { #layer_slider_1 { display: block; } #layer_slider_2 { display: none; } } @media only screen and (min-width: ?px) and (max-width: ?px) { #layer_slider_2 { display: block; } #layer_slider_1 { display: none; } }change the
?pxto the numbers you want.Best regards,
MikeHi,
Sorry about that, looks like I forgot a line, please try this instead:function custom_next_prev(){ ?> <script> (function($){ $(document).ready(function(){ var getprev = $("a.avia-post-nav.avia-post-prev").attr("href"); var getnext = $("a.avia-post-nav.avia-post-next").attr("href"); $(".woocommerce-product-details__short-description .avia-buttonrow-wrap a.avia-button:nth-child(2)").attr("href", getprev); $(".woocommerce-product-details__short-description .avia-buttonrow-wrap a.avia-button:nth-child(3)").attr("href", getnext); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_next_prev');Best regards,
MikeHi,
@Kahil I tried to simulate this by adding a button to one of my pages for it to open the editor in a popup iframe, but I noticed that the link had two question marks where you should only use one, so please try this format:
http://test.test/wp-admin/post.php?post=626&action=edit&iframe=true

Best regards,
MikeJanuary 25, 2020 at 2:32 pm in reply to: set the same font for different languages frontpage #1178360Hi,
Thank you, I tried to look in the layerslider documentation for another way to better fine-tune the background-position for different screen widths, but I didn’t find one. It seems that the layers have better control, so perhaps if your background was just white and you added the images as another layer you can set a position from the top top as a pixel value

or you could try creating different sliders for different screens as your suggestion.Best regards,
MikeJanuary 24, 2020 at 2:52 pm in reply to: How to enable (small) fixed/sticky header for mobile/tablet? #1178127Hi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 989px) { .html_stretched.responsive.html_mobile_menu_tablet.html_header_top #top #main { margin-top: 90px !important; } .html_stretched.responsive.html_mobile_menu_tablet #top #wrap_all #header { position: fixed !important; } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
No, it’s fine, just glad we could help, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Sorry for the late reply, and thank you for the login, I have investigated your issue with the button colors and found that your default color options are not correct, in this screenshot I compare my theme color options with yours and you will see that you are missing the “Theme Color Highlight” option:

but if you look at the source code for the element you will see that when you choose “Theme Color” it is actually setting the “Theme Color Highlight” option:

when I change the language setting in the user profile for the “enfold” user that you gave us to English the correct “Theme Color” color option returns. I was able to reproduce this error on my localhost.
So I edited the fr_FR language files to correct this and it seems to work on my localhost, so please try downloading the language files linked in the Private Content area and upload them to your site via FTP at\wp-content\themes\enfold\lang\
please save a copy of your original files in case you encounter an error.
fr_FR.po & fr_FR.mo
I used Google Translate to make “Theme Color Highlight” read “Surbrillance de la couleur du thème” I hope this is correct.
After you upload the files please clear your browser cache and try selecting the colors again for the buttons to see if you have the correct options.Best regards,
MikeHi,
Thank you for the ftp login, I also got the white screen when I renamed the themes, that was unexpected, I guess it has to do with your version of WordPress 4.9.13, I also understand why you want to wait to update WordPress.
Please check your webhost to see if you have the one-click staging site option, this is an option in most cPanels to create a staging clone of your site so you can test on it and your live site will stay up and running untouched.
Here are some screenshots of what it would look like:


If you can set up the staging clone then you can try updating WordPress first on it and then rename the themes to update, and then you can test the site well to ensure everything works well, and if something needs to be corrected we can work on the clone, that way you will be prepared for when you try this for your live site.
Should the stanging clone crash when you update WordPress still try renaming the themes to update because it could just be the Enfold v4.4.1 having a hard time with WordPress v5.3.2
If it’s a total loss you can always delete the staging clone and create a new one and we will try something else.
I also recommend using your webhosting backup tool to create a full backup, it’s good practice to do so.Best regards,
MikeJanuary 24, 2020 at 11:07 am in reply to: set the same font for different languages frontpage #1178075Hi,
I see that you were using HTML inline commenting in your css:<!-- Table styling -->
so I corrected to css inline commenting:/* Table styling */
and now your css is working, please clear your browser cache and check.Best regards,
MikeHi,
@jr-music thanks for the login, you wrote:Once I renamed the folder everything was white and nothing was working so I had to revert
so did you do this via FTP? You would rename your old theme “enfold-old” and your new theme “enfold” via FTP whichever theme folder is named “enfold” is the one that will be active.
The only customization I saw in your functions.php was:/** * Remove the generated product schema markup from Product Category and Shop pages. */ function wc_remove_product_schema_product_archive() { remove_action( 'woocommerce_shop_loop', array( WC()->structured_data, 'generate_product_data' ), 10, 0 ); } add_action( 'woocommerce_init', 'wc_remove_product_schema_product_archive' );so you will want to add this to your new functions.php after renaming the theme folders, do you think there are other files that have been edited?
If you still have an issue then please include ftp access and we can help.Best regards,
MikeJanuary 23, 2020 at 2:25 pm in reply to: set the same font for different languages frontpage #1177609Hi,
Thank you for the video, so the reason the page has a slight scroll is because the layerslider is set to 100% visual height and then you have a small footer at the bottom of the page.
So to correct we will make the layerslider 92% percent high so the footer will also show without scroll.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (min-width: 767px) { #top.home #layer_slider_1 { height: 92vh !important; } }please feel free to adjust to suit.
I didn’t understand your second question about the logo, do you want the logo on the right of the site name? When I look on a desktop screen I don’t see this, I see that the site name and the logo together is one image. Perhaps you had a different image you were using at one time?Best regards,
MikeHi,
Glad to hear this works, I had added the post ID (#top.postid-41520) to the code for it to work on the one post to test, and I was not sure if each post was going to be the same or not. You can remove the “#top.postid-41520” part of the code.So I investigated this further and created a test post on your site and found that this css in the theme was causing the issue:
.avia_mobile .avia-full-stretch { background-attachment: scroll !important; }So even though you had set the image to “fixed” it was actually getting set to “scroll” and moved the image up and was clipped, I corrected by adding this css in your Quick CSS:
.avia_mobile #top #main .avia-bg-style-fixed .avia-full-stretch { background-attachment: fixed !important; }Please clear your browser cache and check the test post on mobile. Then please check your other pages on mobile to see if is working for them and if so you can remove the first css I gave you, or use both, it’s up to you.
You may find the first css handy to fine tune some background positions with a pixel value rather than a basic “top” or “center”
For your other question, you can define this custom css with a class and add the class in the color section, please let us know if you still want to do this, I’m not sure if the new info changes your thought about this.Best regards,
MikeHi,
For the table to have a max width of 270px (70px+200px) please try this css:@media only screen and (min-width: 768px) { #top.single-product .avia-data-table th.avia-desc-col { text-align: right !important; width: 70px !important; padding: 0px !important; } #top.single-product .avia-data-table .avia-highlight-col { width: 200px !important; } #top.single-product div .avia-table { width: 270px !important; } }but I find that the first column text is larger than 70px, you can change the values in the code to suit, perhaps to 100px for the first column, 300px for the second, and 400px for the total table width.
@media only screen and (min-width: 768px) { #top.single-product .avia-data-table th.avia-desc-col { text-align: right !important; width: 100px !important; padding: 0px !important; } #top.single-product .avia-data-table .avia-highlight-col { width: 300px !important; } #top.single-product div .avia-table { width: 400px !important; } }also if you want the rows in the second column to have the same background colors, the change the second column to default from highlight:

Best regards,
MikeHi,
Thank you for the screenshot mockup, first add this css to remove the blue circles and gray line, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia-toc-style-elegant { padding-left: 0px !important; } .main_color .avia-toc-style-elegant a:first-child:after, .main_color .avia-toc-style-elegant a.avia-toc-level-0:after { border-color: #fff !important; } .main_color .avia-toc-style-elegant a:before { border-color: #fff !important; }Then to add a number before each TOC link Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_toc_script(){ ?> <script> (function($){ $(document).ready(function(){ var i = 0; $('a.avia-toc-link').each(function(index, element){ i++; $(element).text(i + '. ' + $(element).text()); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_toc_script');unfortunately, since the number is added to the link we can not change the color to red as in your mockup, I also only tested this on a TOC with no childern, as in your mockup.
This is the expected results:

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,
Thank you for the feedback, to adjust the space between these rows please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field, I assigned percentages so the values would be somewhat flexible, and targeted the main screen sizes, 425px and under for mobile, 768px, 1024px, 1440px, and above for desktop, and included a little extra around these sizes. This should cover all real devices.@media only screen and (min-width: 1299px) { #top.home #av_section_1 > div > div.container > main > div > div > div:nth-child(4) { margin-top: -10% !important; } } @media only screen and (min-width: 999px) and (max-width: 1050px) { #top.home #av_section_1 > div > div.container > main > div > div > div:nth-child(4) { margin-top: -25% !important; } } @media only screen and (min-width: 768px) and (max-width: 800px) { #top.home #av_section_1 > div > div.container > main > div > div > div:nth-child(4) { margin-top: -40% !important; } } @media only screen and (max-width: 767px) { #top.home #av_section_1 > div > div.container > main > div > div > div.flex_column_table > div.flex_column:nth-child(n+2),#top.home #av_section_1 > div.av-section-color-overlay-wrap > div.container > main > div > div > div:nth-child(4) { margin-top: -30% !important; } }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the link, I tested your site in Chrome, Firefox, Edge & IE11 but couldn’t find any errors please include a screenshot of the error that you are seeing.
You can add screenshots by uploading your images to a service such as postimages.org and pasting the html code, or link given in your post or Private Content area.Best regards,
MikeJanuary 22, 2020 at 12:14 pm in reply to: Headline Rotator centre alignment not working for Prepended static text line #1177146Hi,
Sorry I was not able to see your page because it is in maintenance mode. I recommend opening a new thread with your admin login in the Private Content area, Since this is not your thread posting your login here will not be private. You can post a link to your new thread here so it will be easier to find.Best regards,
MikeJanuary 22, 2020 at 12:00 pm in reply to: Purchased theme and have 404 errors – installed on a staging area #1177136Hi,
For the full-screen video try using the layerslider with a video background, for the header to show while scrolling up try this solution.Best regards,
MikeJanuary 22, 2020 at 3:51 am in reply to: set the same font for different languages frontpage #1176998Hi,
Thanks for the video, I took a look and cleared my cache and the 3 pages look correct, when you clear your cache in Chrome try hitting “F-12” to bring up the developers tools and then right click on your reload button and choose “empty cache and hard reload”
you can only get this menu option when the developers tools are showing, it looks like this:

Best regards,
Mike -
AuthorPosts


