Forum Replies Created
-
AuthorPosts
-
May 29, 2025 at 8:56 pm in reply to: Issue with Sort By & Display options on Woocommerce category page #1484833
Hi,
Glad Ismael 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 extraeyes,
The old version 5.6.6 will not automatically update, to 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.
For your other issue see this post.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,
MikeHi,
Assuming that all portfolio pages have the same structure, try this css in your Quick CSS:.single-portfolio #after_section_1 { max-width: 1440px; margin: auto; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad to hear that you have this sorted out, 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 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,
MikeHey amyncuih,
Typically you would change your Users ▸ Profile ▸ Profile Picture but this is linked to your profile picture on Gravatar and your email address.
To use a site specific profile image, use a plugin like User Profile Picture then upload your image in the profile:
and it will then show:
Best regards,
MikeHi,
When I check your page source code there is only one H1, the one that you manually added further down on the page. Your screaming frog plugin may be checking the page before the javascript runs, the “woocommerce-products-header__title” is a H2, Google Bot will not see two H1’sBest regards,
MikeHi,
With the child theme you don’t need the WP Code plugin as you could just add the code snippets into your chid theme functions.php file. But it doesn’t cause any issues to use the plugin. So you can use both.
the plugins:
Disable XML-RPC
BETTER SEARCH AND REPLACE
REGENERATE THUMBNAILS
you probably don’t need now, since you don’t remember why you installed them.
When I check your page: https://www.survivalfoodngear.com/long-term-food/
the titles are using “p” not any “H” heading, so it seems to be working as you wish.
Shall we close this thread now?Best regards,
MikeHi,
Glad that Rikard could help you sort this out, shall we close this thread now? If you have any further questions you can always create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Try this instead:@media only screen and (max-width: 767px) { .responsive #top.page-id-254 #wrap_all .slide-entry { width: 100%; margin-left: 0%; padding-bottom: 20px; } }
Best regards,
MikeHi,
It’s not showing as closed: https://wordpress.org/plugins/insert-headers-and-footers/
Best regards,
MikeHi,
The snippets above are for the theme category pages, not woocommerce product category pages, the H1 title on your page is from woocommerce.
In this case use this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> (function($) { $(function() { function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('.archive.woocommerce h1.woocommerce-products-header__title', '<h2></h2>'); }); }(jQuery)); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
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,
MikeHi,
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
and ensure that it is activated, then add the above code and save.Best regards,
MikeHey limedrop,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 767px) { .responsive #top.page-id-254 #wrap_all .slide-entry { width: 100%; margin-left: 0%; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey extraeyes,
To make this font-size 20px
this css works:#top #wrap_all .all_colors h2.woocommerce-loop-product__title { font-size: 20px; }
but it will not remove the H2, which it sounds like this is what you want to do.
If you want this H2 to be a “p” instead, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function change_woocommerce_product_title_tag_in_product_slider() { ?> <script> (function($) { $(function() { function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('h2.woocommerce-loop-product__title', '<p></p>'); }); }(jQuery)); </script> <?php } add_action( 'wp_footer','change_woocommerce_product_title_tag_in_product_slider', 99 );
Best regards,
MikeHi,
Glad to hear that you have this sorted out, 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,
Each license should have one Token, and each site should have a different Token, just as each site should have a different license.Best regards,
MikeHi,
I made a copy of your page and removed your script from the bottom of the page and the stacking order for the first “Equipment Rentals” works correctly now.
I don’t know why the script is causing this, but I do note that you have two sections for each ID:
#rentals-tab, #season-lease-tab, #tuning-tab
one a grid row and the second a color section, typically this will cause issues with linking to sections with an ID like you are in your custom submenu, as basic HTML rules state that on each page all IDs must be unique.
Since your script is looking for your IDs:const sections = document.querySelectorAll('#rentals-tab, #season-lease-tab, #tuning-tab');
I’m not sure what conflict is occurring with the second IDs.
nonetheless, review the copy page without the script and perhaps you can debug your script.Best regards,
MikeHi,
Unsure, sometimes Google doesn’t see it, my demo site has no issues when I use the theme options, but once in a while other users have seen this and uploading the favicon.ico has helped.Best regards,
MikeHey swd,
Try converting your image into a .ico and name it “favicon.ico” and upload it via ftp or your webhost file manager to your root directory, the same place as your wordpress “index.php”
Then resubmit your site for crawling in your Google console, it may take a couple of days from Google to crawl again and update the listing.Best regards,
MikeHey Sven,
The fixed header on mobile devices has never been an option because the Dev Team has always felt that it takes too much space on mobile devices, over the years the only option was to add some custom css to achieve this.
To have a fixed header on your site and have a small header so it doesn’t take up as much space you can try this css, I specifically created it for your site and it works in my tests.@media only screen and (max-width: 989px) { .responsive #top #wrap_all #header_main .container.av-logo-container { height: 40px !important; line-height: 40px; } #header_meta .container { min-height: 12px; } #header_meta .phone-info { line-height: 12px; padding: 0; } #header_meta { min-height: 12px; } #header_main { height: 40px; line-height: 40px; } .responsive #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive #top #wrap_all .main_menu { height: 40px; line-height: 40px; } .responsive .logo img, .responsive .logo svg { max-height: 40px; padding: 0; } .responsive #top .logo, .responsive #top .logo a { height: 40px !important; } .avia-section-huge .content, .avia-section-huge .sidebar { padding-top: 50px; padding-bottom: 50px; } .responsive.html_mobile_menu_tablet #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 40px; line-height: 40px; } .responsive #top #wrap_all #header { position: fixed !important; } .responsive.html_mobile_menu_tablet.html_header_top #top #main { padding-top: 60px !important; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
If you have any trouble disable your WP Rocket plugin and the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files. then check again.
Feel free to adjust to suit.
I also notice that your revolution slider doesn’t show on page load, only after the page is scrolled or clicked, this is due to your WP Rocket plugin lazy load, you should add an exclusion for the slider or disable the WP Rocket lazy load option.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,
MikeHey Andreotti,
Each license of Enfold is valid for one domain and any number of subdomains for that domain, or any number of localhost installs, that is a webhost installed on your local computer.
So if you are adding a subdomain site for a domain that you already have a license for, then you won’t need another license,
If you want to create a new site on a new domain, then you will need to purchase a new license.
To extend or renew your support please see here. You will need to login to your Theme Forest (Envato) and renew there. Or if you are going to purchase a new license anyways, then you can use the special offer to extend support to 12 months for a large discount:
Best regards,
MikeHey Andreotti,
To make a backup of your site, I recommend using your webhost backup tool and not a plugin. To find out about your webhost full backup tool, please ask your webhost.
Many webhosts automatically make a monthly backup with a option to also make one on demand when you request one, but you will need to ask them to know for sure. Note that you will want to make a full backup, the files and the database.
If you have the latest version of Enfold installed (7.1) and have followed these steps to create a Token (Please read the whole page, including drop down accordions) then you can install updates from within the theme panel at Enfold Theme Options ▸ Update If you have a old version of the theme like 5.2.1, then you will need to first manually update the theme following the steps below, and then create a Token for future updates.
To update a old 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,
Mike -
AuthorPosts