Forum Replies Created
-
AuthorPosts
-
Hey jnightingale,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.cog-form__container { background-color: #0056a6 !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Stefan,
Assuming that this is a Pricing Table element and you want to add a different link to each inner table:
First add the custom class table-link to the table element developer settings:
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function ($) { $(".table-link .pricing-table-wrap:first-child").wrap(function() { var link = $('<a/>').css({'display':'table','width':'33%','float':'left'}); link.attr('href', 'https://google.com'); return link; }); $(".table-link .pricing-table-wrap:nth-child(2)").wrap(function() { var link = $('<a/>').css({'display':'table','width':'33%','float':'left'}); link.attr('href', 'https://duckduckgo.com'); return link; }); $(".table-link .pricing-table-wrap:nth-child(3)").wrap(function() { var link = $('<a/>').css({'display':'table','width':'33%','float':'left'}); link.attr('href', 'https://bing.com'); return link; }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');
note that each of the three inner tables have a different URL
While this works, it has a drawback that the link changes the display of the table which changes the width, the script adds a hard width to the table to correct this issue but then it is not very response. Perhaps you don’t mind this, but I recommend just using the button that is in the table for your links.Best regards,
MikeHey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.woocommerce-shop .container_wrap_first { border: none; } #top.woocommerce-shop .product-sorting { display: none; } #top.single-product .avia-wc-30-product-gallery-lightbox { display: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Perhaps, the email field is showing in the theme options and on my test site it shows on the frontend for a published page, try editing the element again and saving again to reload it, if this doesn’t work then publish the page and check again.Best regards,
MikeHey James,
Thanks for your patience and the link to your site, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function($) { $('#av-masonry-2-item-3398 img').height($('#av-masonry-2-item-3398 img').height() + 15); $('#av-masonry-1-item-3400 img').height($('#av-masonry-1-item-3400 img').height() + 15); }(jQuery)); </script> <?php } add_action('wp_footer', 'custom_script');
Best regards,
MikeHey lzevon,
Glad you were able to find the issue is with the slashs in the GravityView shortcode, slashs in shortcode is very unusual, have you tried to escape the slashs like this:
[gv/\widgets/\page_size] [/gv/\widgets/\page_size]
If that doesn’t work then try making a new shortcode with no slashs to call that shortcode using do_shortcode
I don’t see that we can correct this plugin in the theme.Best regards,
MikeHi,
Please don’t add css into the developer setting fields, only add CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS fieldBest regards,
MikeHey beverlystone,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.avia_textblock ul li ul li:before { content:'-'; padding-right: 5px; color:#000 !important; font-size: 20px; } .avia_textblock ul li ul li { list-style: none; padding-left: 1em; text-indent: -2em; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Unfortunately you can not control the objects inside an iframe, you would need to dequeue the items for the page that is going to be used as an iframe before it is used.
So your iframe page would only be used for the popup and not directly accessed.
Since your popup is only a contact form why not add it to your page hidden and show in a lightbox popup?Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { #top #av_section_2 .avia-builder-el-first.first.flex_column_div { margin-top: -400px; } }
Feel free to adjust the negative margin to suit, this worked on the three pages that you linked to and should work on any other pages with the same structure.
After applying the css, please clear your browser cache and check.Best regards,
MikeHi,
Your shortcode[best_selling_products limit="4" column="4" paginate="true" orderby="rand"]
is already set to show random items with orderby=”rand” but I found that the shortcode best_selling_products is very old and should be used with old versions of woocommerce. According to this article you should try this shortcode:[products class="columns-4" limit="4" column="4" orderby="rand"]
to show random products.
If you want to use this you will need to also add this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.woocommerce.columns-3.columns-4 li:nth-child(4) { clear: none; margin-right: 0; } .woocommerce.columns-3.columns-4 li.last { margin-right: 1% !important; }
To make each product grid & product image & product header caption in each grid all equal height you could add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function equal_height_product_grid_image_header() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.products.columns-3,.products.columns-4').each(function(){ var $items = $('li',this); var $image = $('li .thumbnail_container img',this); var $header = $('li .inner_product_header',this); var itemsHeight = Math.max.apply(Math, $items.map(function(){ return $(this).height(); }).get()); var imageHeight = Math.max.apply(Math, $image.map(function(){ return $(this).height(); }).get()); var headerHeight = Math.max.apply(Math, $header.map(function(){ return $(this).height(); }).get()); $items.height(itemsHeight); $image.height(imageHeight); $header.height(headerHeight); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'equal_height_product_grid_image_header');
The only problem is that your secondary images that show on mouse-over which are added by the plugin WooCommerce Product Image Flipper are not the same heights, so you would need to change all of those secondary images because on hover a white space is shown.
Best regards,
MikeHi,
Thanks for your patience and the link to your site, when I check your site was not loading with multiple errors:
Uncaught ReferenceError: jQuery is not defined typically this occurs when a script is called before jQuery is loaded.
I see that you have a plugin Async JavaScript, when I disable it and clear your caching plugin your site loads on desktop & mobile.
I left the plugin disabled, believing that you would want your site to load, please clear your browser cache and check.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,
MikeJune 24, 2023 at 7:12 pm in reply to: Error 404 page created with ALB and set in theme settings does not work #1411569Hey BeeCee,
Thanks for your patience and the link to your site, the custom 404 page doesn’t work when the maintenance mode is enabled, I tested by disabling your maintenance mode for a minute and your custom 404 page showed when I entered random letters.
Thanks for pointing our the needed update for our 404 page option, I notified the team.Best regards,
MikeJune 24, 2023 at 6:44 pm in reply to: H1 in some places are staying all capitalized and other places are lower/capital #1411567Hey newvisionnew,
To remove the text-transform for all or your special heading h1 on your whole site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .template-page .entry-content-wrapper .av-special-heading-h1 h1{ text-transform: none; }
After applying the css, please clear your browser cache and check.
Please note that if you use all caps in the backend when you edit the element then it will still show as all caps in the frontend, so you need to ensure the backend is written as you want to see it.
If you also want this for your special heading h2 try this css:#top .template-page .entry-content-wrapper .av-special-heading-h2 h2{ text-transform: none; }
Best regards,
MikeHey condonp,
Thanks for your patience and the link to your site try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av_one_third .avia-slideshow-inner { height: 100% !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey germanvoice,
Thanks for your patience, to change the font color and size of the price try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.single-product .price span { color: red; font-size: 18px; }
the expected results:
To show more information try adding it to the Product short description below the product data:
the expected results:
By default the sidebar widgets are shown below the product images:
To show the sidebar on the right side like in posts try this solution.
but it will make the image smaller because ther is less room, you could make the product page full width with this css:.responsive #top.single-product .container_wrap_first > .container { max-width: 100%; }
Best regards,
MikeHi,
Please note that after you install the plugin you will need to go to your pages and see the notice at the top of the page:
Devi tradurre la tua pagina statica iniziale in Italiano, English. it is a link guiding you to translate your pages and follow the steps.
To adjust your menu go to your menus, and select the language, and edit the menu for each language.
You then need to translate each element on each page for your additional languages, this is a big job and I can’t translate your site for you as it is outside the scope of our support. I know based on your other threads you may find this challenging so I recommend hiring a freelancer to help you.Best regards,
MikeHi,
I see that you are using Enfold v4.9.2.1 this version is not WordPress v6 ready, please update to Enfold v5.6.2
Please note that if you have a header.php or footer.php in your child theme, you will need to remove these before you update.
These will cause errors in your theme. We do not recommend adding these files to your child theme, it is the most common reason for errors when updating. If you have them in your child theme please remove these files and any customizations you wish to make should be done in your child theme functions.phpTo update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Best regards,
MikeHi,
@Enfoldfanatic please ensure that you have reverified the mailchimp API key at Enfold Theme Options ▸ Newsletter ▸ Mailchimp after you updated, and then you must edit the mailchimp element and re-save it and the page. If this doesn’t work then try the version linked below, I have tested it and it works correctly.Best regards,
MikeJune 24, 2023 at 3:33 pm in reply to: Issue with Fullscreen Button Not Appearing in Enfold Theme’s HTML5 Video Player #1411556Hey rup,
Thank you for your patience and the link to your site, I tested this on my demo site and the fullscreen button in the HTML5 video player indeed shows as on your example site, I disabled all of your plugins except the four WPML plugins and the fullscreen button then showed, try disabling your plugins, except the four WPML plugins, and then reactivate each one individually until you find the one causing the conflict.Best regards,
MikeHi,
Thanks for the login, I updated your site to v5.6.3 and now your Mailchimp Available Lists are showing in the Enfold Theme Options ▸ Newsletter ▸ Mailchimp ▸ Available Lists please check.Best regards,
MikeJune 24, 2023 at 2:43 pm in reply to: Change Font Size in the Text Section of a Tab Element #1411554Hi,
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,
MikeHey EinsElfManufaktur,
Thank you for your patience, as I understand the issue on your homepage is there is a black overlay on your images:
this is because the black overlay is enabled for the images:
So you could remove the overlay for each image or try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to make the overlay transparent:.page-id-451 .avia-image-container .av-caption-image-overlay-bg { background-color: transparent; }
For your blog page I believe the error is that when you mouseover an image the link icon overlay doesn’t go away on mouseleave:
this is because of this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:* { opacity: 1 !important; -webkit-transition: none !important; transition: opacity none !important; }
if you remove this css the issue will be solved, please note that using the wildcard “*” as a css selector will affect all elements on your site, often causing unexpected results, it is much better to use detailed selectors in your css to avoid issues.
Best regards,
MikeHey BeeCee,
I tested this on top level menu items and sub items and found that this is working correctly.
Please note !is_user_logged_in is for users that are not logged in, so whem you test use a incognito tab so you are not logged in.Best regards,
MikeJune 24, 2023 at 1:33 pm in reply to: Image opening in Lightbox singly without arrows to scroll through all images #1411549Hi,
Thank you for sharing your solution, I tested it on my demo site and it works good 🎉
I’m sure future users will benefit from your work, do you want to leave this thread open and answer questions from future users, or do you want it closed?Best regards,
MikeJune 24, 2023 at 12:46 pm in reply to: but still I have a lot of gap on my website. What is it due to? #1411547June 24, 2023 at 12:42 pm in reply to: but still I have a lot of gap on my website. What is it due to? #1411546Hi,
I did the update from the theme section on the dashboard, but first I disabled Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and clear your cache plugin.
To update download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
then you will see the Theme updated successfully message.
Best regards,
MikeHi,
When I check the middle ad looks fine, if it is cut off intermittently then that would point to ads are sometimes shown in a larger format than mobile, there should be a why to choose only mobile sized ads to show.
The ads are shown in iframes and the inner divs of the iframe can not be adjusted localy, it is a limitation of iframes.Best regards,
Mike -
AuthorPosts