Forum Replies Created

Viewing 30 posts - 7,981 through 8,010 (of 35,071 total)
  • Author
    Posts
  • in reply to: Woocommerce v3 Lightbox image size #1405240

    Hi,
    Glad Günter was 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: how to change the style and font of the siderbar #1405239

    Hi,
    To change the capitalizion of your special heading elements and the footer widget titles try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top h2.av-special-heading-tag,
    #top h3.widgettitle {
    	text-transform: capitalize;
    }

    After applying the css, please clear your browser cache and check.
    To remove the H1 tag from the post title bar try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
      $('.main-title.entry-title').contents().unwrap();
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Hamburger menu – Change the dashes to icons #1405237

    Hi,

    @engage24
    please try @Guenni007 suggestion, thanks Guenni007.

    Best regards,
    Mike

    in reply to: Partner/Logo Element: No follow vs. follow links #1405236

    Hey mrqslmk,
    Thanks for your question, I assume that you are not using any plugins like Yoast to set the nofollow on your links, in my test site the Partner/Logo Element doesn’t have the “rel” attribute set so I recommend this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
    $('.avia-logo-grid .slide-entry').each(function() {
      $(this).find('a[href *="google.com"]').attr("rel", "nofollow");
      $(this).find('a[href *="kriesi.at"]').attr("rel", "follow");
     });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    and adjust the links to suit and add as many as you like. This sets the nofollow or follow based on the link URL

    Best regards,
    Mike

    in reply to: icons bigger and colored #1405234

    Hey schweg33,
    To make the social icons larger try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #wrap_all .social_bookmarks li a {
      width: 40px!important; 
      line-height: 40px!important; 
      min-height: 40px!important; 
      font-size: 30px!important; 
    }
    #top #wrap_all .social_bookmarks li {
    height: 30px!important; 
    width: 40px!important; 
    }
    #top #wrap_all .social_bookmarks {
      height: 60px!important;
    }
    #top nav .social_bookmarks {
    margin-top: -20px;
    }

    To invert the social icons colors try this css:

    #top #wrap_all .av-social-link-youtube a {
        color: #a72b1d;
    }
    
    #top #wrap_all .av-social-link-instagram a {
        color: #a67658;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Shortcode Contact Form in Mega Menu #1405232

    Hi,
    Thanks for the feedback, I found that the form is wrapped in the menu element link attribute, even though you have no link set the “a” still has “#”
    Enfold_Support_1837.jpeg
    while I can unwrap the link from the menu item with this:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    $('#avia-menu').one('click', function(){
      $('#av-burger-menu-ul .menu-item-3979 a').contents().unwrap();
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');
    

    This didn’t help, so I then tried on my test site to append the contact form to the menu and while this worked the form action always reloaded the page so you don’t see the ajax response. So I don’t think this is going to work.
    But I believe that I have found a workaround, on my test page linked below I have the desktop menu set to icon and full width like your site, but I have no menu items, instead on the homepage I have a full-width contact form with the font set to light and transparent, and I use this css to hide the contact form until the menu overlay is shown and then the menu overlay is hidden, giving the effect that the contact form is inside the menu:
    Enfold_Support_1841.jpeg
    and it shows the ajax response.
    Enfold_Support_1839.jpeg

    #top.home form.avia_ajax_form {
    	display: none;
    }
    .av-burger-overlay-active #top.home form.avia_ajax_form {
    	display: block;
    }
    .av-burger-overlay-active #top.home #header_main .av-burger-overlay {
    	display: none !important;
    }
    .av-burger-overlay-active #top.home #wrap_all #av_section_1 {
    	 background-color: #000;
    }
    .av-burger-overlay-active #top.home .av_header_transparency.av_alternate_logo_active .logo a > img {
        opacity: 1;
    }
    
    .av-burger-overlay-active #top.home .av_header_transparency .logo img.alternate {
        opacity: 0;
    }
    

    Try my test page and see if this might be something that would work for you.

    Best regards,
    Mike

    in reply to: size differences in the images on the search page #1405229

    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: Cells background images on mobile #1405228

    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: Move Date and Author on blog posts #1405227

    Hi,
    Thanks for the link to your page, typically the author, date, & categories are wrapped in the post-meta-infos span:
    Enfold_Support_1828.jpeg
    Enfold_Support_1830.jpeg
    but yours is not wrapped in any element:
    Enfold_Support_1833.jpeg
    Enfold_Support_1835.jpeg
    So I recommend removing your PHP customization and allow the theme to show the post-meta-infos span and then I can give you some javascript to move it below the image.
    Or if you want to use your PHP customization please change it so the author, date, & categories are wrapped in a span or div with a custom class, and then I can give you some javascript to move it below the image.

    Best regards,
    Mike

    in reply to: Cells background images on mobile #1405192

    Hi,
    Thanks for the login, on the /what-is-bodystress/ page I set each of your Grid row cells to Individually select position for each column
    Enfold_Support_1824.jpeg
    and then each cell I assigned either position one or two to set the page as text, image, text, and so on:
    Enfold_Support_1826.jpeg
    This seems to work now, please clear your browser cache and check and then try this on your other page.

    Best regards,
    Mike

    in reply to: Post Grid not working #1405188

    Hi,
    Thanks for the login, I see that you are using PHP v8.0.28 and Enfold v5.5 now and your homepage loads but not the page you pasted above /new-home/
    I see that your child theme has many custom files which probably need to be updated as the core files have most likely changed.
    I recommend testing by activating the parent theme and see if this solves. If not also try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: When updatign emoji's get lost #1405186

    Hi,
    Thank you for your feedback, I have asked the Dev Team for advice about this and will reply when I hear back from them. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Logo Centered Alignment Problem #1405183

    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: Animated numbers display issues #1405159

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Masonry navigation and letter “g” #1405158

    Hi,

    @flipstar99
    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.

    @Guenni007
    Thank you for sharing your tip.

    Best regards,
    Mike

    in reply to: Can this be done? #1405157

    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: Cells background images on mobile #1405156

    Hi,
    I see that you are using v5.1.2, please try updating to v5.5 and see if that corrects, if not then please include an admin login in the Private Content area so we can be of more assistance.
    If you have trouble updating in the theme settings with the Token, try downloading 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: Unterkategoriebild ausblenden #1405155

    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: How do I get a table like this? #1405115

    Hi,
    Thanks for sharing Guenni007

    Best regards,
    Mike

    in reply to: modal window for cookie notice on www.agritenca.it #1405114

    Hi,
    I see that you are using Enfold v4.5.2, this version is not compatible with PHP v8, you will need to update to Enfold v5.5
    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

    Best regards,
    Mike

    in reply to: JS that updates the mini cart counter #1405113

    Hey El,
    Thanks for your patience the file is \enfold\config-woocommerce\woocommerce-mod.min.js
    I recommend that you also see the WP Rocket javascript exclusions for Enfold.
    Also note that may need to disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression so the file is not merged.

    Best regards,
    Mike

    in reply to: Animated numbers display issues #1405111

    Hi,

    @GoodfishGroup_Marketing
    please try @Guenni007’s recommendations, thanks Guenni007.

    Best regards,
    Mike

    in reply to: Navigation in two rows + mega menu #1405110

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Move sublevel links up before scrolling #1405109

    Hi,
    To move the menu sub-menu box up only before scrolling try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .av_header_transparency .av-main-nav .sub-menu {
        margin-top: -50px;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can this be done? #1405108

    Hi,
    Try adding the rbga color code into the background color option of the column.
    For example, the hex color code for your green column is #4d6e6b so use a Hex to RGBA Converter and remove the spaces and change the last number to a decimal and then format like this: rgba(77,110,107,0.5)
    Enfold_Support_1822.jpeg

    Best regards,
    Mike

    in reply to: Cells background images on mobile #1405106

    Hi,
    Thank you for your patience, it looks like you are using empty grid cells with a background image, the background image doesn’t give the cell a height when the cells are stacked in mobile, so to correct please add a white-space element with a height you would like to see on mobile, such as 300px.

    Best regards,
    Mike

    in reply to: Unterkategoriebild ausblenden #1405105

    Hey flexi_floxi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.archive .template-shop .page-thumb {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: site logo is stretched and resized #1405104

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. 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: Masonry navigation and letter “g” #1405103

    Hi,
    For Safari try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main div.container .av-masonry .av-masonry-sort {
    line-height: 35px;
    }

    After applying the css, please clear your browser cache and check.
    Please note that Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Logo Centered Alignment Problem #1405102

    Hi,
    Thanks for the login, I checked on my Mac v12.6.5 with Safari v16.4.1 and the logo is centered vertically and horizontally, please see the screenshot in the Private Content area.
    What versions are you using?
    Please note that Safari can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

Viewing 30 posts - 7,981 through 8,010 (of 35,071 total)