Forum Replies Created

Viewing 30 posts - 151 through 180 (of 34,566 total)
  • Author
    Posts
  • 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,
    Mike

    in reply to: Uploaded childs theme – problemS #1484832

    Hey 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
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    For your other issue see this post.

    Best regards,
    Mike

    in reply to: before and after images #1484801

    Hey AlpineWeb,
    It is showing on my install:
    Screen Shot 2025 05 28 at 5.07.55 PM
    Try disabling all of your plugins and then reload the page. If that doesn’t help, include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Fixed Header /// mobile #1484800

    Hi,
    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,
    Mike

    in reply to: Make Portfolio Entry pages thinner #1484797

    Hi,
    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,
    Mike

    in reply to: Burger menu #1484796

    Hi,
    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,
    Mike

    in reply to: Scroll to Top Button /// mobile #1484795

    Hi,
    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,
    Mike

    in reply to: Photo on single author page? #1484794

    Hey 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:
    Screen Shot 2025 05 28 at 4.14.16 PM
    and it will then show:
    Screen Shot 2025 05 28 at 4.16.30 PM

    Best regards,
    Mike

    in reply to: Display of Header Social Icons #1484792

    Hi,
    Your icon issue seems solved now, shall we close this thread?

    Best regards,
    Mike

    in reply to: Double h1 on category pages #1484788

    Hi,
    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’s

    Best regards,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484787

    Hi,
    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,
    Mike

    in reply to: Backup and Update – thank you #1484786

    Hi,
    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,
    Mike

    in reply to: Just one color on blog post on mobile #1484708

    Hi,
    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,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484707

    Hi,
    It’s not showing as closed: https://wordpress.org/plugins/insert-headers-and-footers/
    Screen Shot 2025 05 26 at 1.50.12 PM

    Best regards,
    Mike

    in reply to: Double h1 on category pages #1484706

    Hi,
    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,
    Mike

    in reply to: Magazine type size is way too big. #1484703

    Hi,
    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,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484702

    Hi,
    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:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code and save.

    Best regards,
    Mike

    in reply to: Just one color on blog post on mobile #1484695

    Hey 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,
    Mike

    in reply to: CHANGE WOO COMMERCE TYPE SIZE #1484693

    Hey extraeyes,
    To make this font-size 20px
    Screen Shot 2025 05 26 at 9.30.42 AM
    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,
    Mike

    in reply to: Magazine type size is way too big. #1484690

    Hi,
    I did not find the css in your Quick CSS, so I added it for you:
    Screen Shot 2025 05 26 at 9.21.29 AM
    and it is working now:
    Screen Shot 2025 05 26 at 9.23.13 AM
    I don’t know what you want to do with the date, I don’t see this in your previous request. Hide it?

    Best regards,
    Mike

    in reply to: Fehlermeldung auf Seite “Kritischer Fehler” #1484681

    Hi,
    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,
    Mike

    in reply to: I purchased a new Enfold license from Envato… #1484680

    Hi,
    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,
    Mike

    in reply to: Grid row stacking order on mobile #1484679

    Hi,
    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,
    Mike

    in reply to: i can’t see my Favion #1484676

    Hi,
    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,
    Mike

    in reply to: i can’t see my Favion #1484662

    Hey 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,
    Mike

    in reply to: Fixed Header /// mobile #1484661

    Hey 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,
    Mike

    in reply to: difference on 2 pages #1484660

    Hi,
    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,
    Mike

    in reply to: License #1484659

    Hey 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:
    Screen Shot 2025 05 25 at 1.28.37 PM

    Best regards,
    Mike

    in reply to: Backup and Update – thank you #1484656

    Hey 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
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    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
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: difference on 2 pages #1484650

    Hi,
    Try disabling all of your plugins and then reload the page. If that resolves the issue, reactivate each one individually and reload the page until you find the conflict.

    Best regards,
    Mike

Viewing 30 posts - 151 through 180 (of 34,566 total)