Forum Replies Created

Viewing 30 posts - 11,731 through 11,760 (of 34,988 total)
  • Author
    Posts
  • in reply to: Alter Sub Categories Menu #1354223

    Hi,
    Glad to hear that you have this sorted out, the child theme doesn’t update, only the parent theme.
    A notice will display in Enfold > Theme Update when an update is available.
    You can also use the Envato Market Plugin to receive alerts about updates, but it is not nessery.
    The child theme should be your activate theme, you should add your customizations to the child theme, the child theme uses the parent theme for the core files and functions in the background and applies it’s customizations over the parent theme. When the parent theme is updated, the updated core files and functions are available for the child theme to use with preference to the customizations.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Thank you for the link to your footer but I don’t think I understand correctly because the transparent buttons are side by side when I check, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1354203

    Hi,
    Unfortunately, not with your current image size you would need to change it to 2560 × 1440 (16:9 aspect ratio), you are currently using 2400 × 1600 (3:2 aspect ratio)

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1354196

    Hey HulaSlim,
    Thank you for the link to your site, your slider image is using “center center”
    2022-06-04_013.jpg
    try using “top center”
    2022-06-04_014.jpg
    please check
    2022-06-04_015.jpg

    Best regards,
    Mike

    in reply to: Header Logo issues – won't resize, fuzzy #1354194

    Hey michaelmiller68,
    Thank you for the link to your site, your desktop menu seems to start covering your logo at 1160px, so if you are not able to remove some items to make it shorter you can have the mobile burger menu show instead. 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: 1160px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }

    After applying the css, please clear your browser cache and check.
    Below I have linked your current logo (300×34) and your full size logo, try using your full size logo in the Enfold Theme Options ▸ Logo, paste the link directly and save the theme options, don’t use the logo “upload” button.
    If you like the display of the larger logo then you might want to change the max-width of the above css to 1440px.

    Best regards,
    Mike

    in reply to: Heading setup #1354192

    Hey edwindepianist,
    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: Customize Hospot-Tooltip #1354191

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-tooltip .inner_tooltip {
      font-size: 1.5em;
      line-height: 1.65em;
      color: #fff;
    }
    #top .av-tt-large-width {
        width: 350px;
    }
    .main_color .avia-tt, .main_color .avia-tt .avia-arrow, .main_color .avia-tt .avia-arrow {
        background-color: #add4ef;
    }

    2022-06-04_012.jpg
    Feel free to adjust to suit.
    After applying the css, please clear your browser cache and check.
    If this still doesn’t work for you then we will need to see your example so we can examine, so please create a test site online.

    Best regards,
    Mike

    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: CTA Color on Mobile #1354183

    Hi,
    Unfortunately I can not reproduce this, if you are seeing this on an iPhone try adding the css:

    .avia-button.avia-size-large {
        -webkit-appearance: none;
    	}

    or this:

    .avia-button.avia-size-large:focus {
        -webkit-appearance: none;
    	}

    Best regards,
    Mike

    in reply to: Reduce frequency of Privacy Message / Cookie Consent #1354180

    Hi,
    Unfortunately not, if the user doesn’t accept the use of cookies then they are not recognized when the site is reloaded, it is as if it is their first visit, otherwise the site has tracked them without their consent.

    Best regards,
    Mike

    in reply to: Change the URL portolio-item #1354178

    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: Skype Social Profile Link Format #1354177

    Hey davidfourieza,
    Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function ss_allow_skype_protocol( $protocols ){
        $protocols[] = 'skype';
        return $protocols;
    }
    add_filter( 'kses_allowed_protocols' , 'ss_allow_skype_protocol' );
    

    then skype:username?call should work
    2022-06-04_011.jpg

    Best regards,
    Mike

    in reply to: Change the URL portolio-item #1354174

    Hey Loveronika,
    Thanks for your question, you would need to use a plugin like Permalink Manager Lite, and remove “portfolio-item/” rome the Portfolio Items post type:
    2022-06-04_009.jpg
    and then remove it from the portfolio items that you have already created:
    2022-06-04_010.jpg

    Best regards,
    Mike

    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: Mailchimp widget fields the wrong way round #1354167

    Hey engage24,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

      #footer .avia-mailchimp-form fieldset {
      display: flex; 
      flex-wrap: wrap; 
      }
      #footer .avia-mailchimp-form #element_avia_1_1 {
          order: 1; 
      }
      #footer .avia-mailchimp-form #element_avia_2_1 {
          order: 2; 
      }
      #footer .avia-mailchimp-form #element_avia_0_1 {
          order: 3; 
      }
      #footer .avia-mailchimp-form .form_element:not([id*='element_avia_'])  {
          order: 4; 
      }

    After applying the css, please clear your browser cache and check.
    The expected results:
    2022-06-04_008.jpg

    Best regards,
    Mike

    in reply to: Play a video on the Blog #1354166

    Hey colorlike,
    Thank you for your patience, in a post you would choose the format “video” and then enter the video link as the top line the content:
    2022-06-04_007.jpg

    Best regards,
    Mike

    Hi,
    It seems to be working when I check:
    2022-06-04_121956.jpg

    Best regards,
    Mike

    Hey laboiteapixels12,
    Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function check_for_free_shipping() { ?>
        <script>
    (function($){
    	function check_shipping() {
    	setTimeout(function () {
      $('#shipping_method').each(function() {
      $(this).find('li input.shipping_method').each(function(){
      	var shipping = $(this).attr('id');
        $(this).closest('li').addClass(shipping);
      });
      });
       $('#shipping_method .shipping_method_0_free_shipping1 + .shipping_method_0_flat_rate2').css({ 'display': 'none'});
    	}, 1000);
    	}
    	check_shipping();
      $('#top.woocommerce-cart button[name="update_cart"]').click(function(){
      	setTimeout(function () {
       location.reload(true);
      	}, 1000);
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'check_for_free_shipping');

    This gets each input ID and adds it as parent class (li) and hides the sibling li with css if the free shipping option is available and checks for update cart button click should user change quantity.
    Please note that I had to add a 1s delay because woocommerce is slow to add the free shipping element, there is nothing I can do about that.

    Best regards,
    Mike

    in reply to: problème d'actualisation suite modification du CSS #1354151

    Hi,
    Thank you for your patience, as I understand your issue, on your History portfolio page: /portofolio-histoire/ you want to increase the masonry mouse-over title with this css:

    .masonry-portofolio {
    font-size: 22px !important;
    }

    I didn’t find this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field or in your child theme ▸ style.css
    So I tested this in your child theme ▸ style.css:
    2022-06-04_003.jpg
    and checked with Chrome, Firefox, Edge in Windows and it worked correctly:
    2022-06-04_002.jpg
    I also had the same results in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field
    2022-06-04_004.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Display post tags as small buttons #1354144

    Hi,
    Glad Nikko 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: Non-working feature #1354143

    Hey Jimmy Plenderleith,
    The Health demo is using the Fullscreen Slider with the Display a scroll down arrow option checked:
    2022-06-04_001.jpg
    You seem to be using the Fullwidth Easy Slider which doesn’t have this option, please try using the Fullscreen Slider instead.
    If you have any further questions please create a new thread in the Enfold support fourm and we will gladly try to help you. Please do not use the Pre Sale Questions section for support questions. Thank you for your understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: Alter Sub Categories Menu #1354141

    Hi,
    I assume that you are not using a child theme, if you use a child theme then your child theme functions.php customizations will not be overwritten with each update. Read about using a Child Theme

    For your blog page 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: 885px) {
        .responsive #top .av-switch-990 .av-menu-mobile-active .mobile_menu_toggle {
            display: block;
            float: left;
        }
    
        .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu {
            display: none;
        }
    }

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

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, to remove the image title on mouse-over try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_title_from_all_elements_on_hover() { ?>
        <script>
    (function($){
      $("*").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'remove_title_from_all_elements_on_hover');

    The only two images that I see that are blurry is the top two images, both are very small images (300px) and you are displaying them very large, for example, the top image is 300×150 and it is shown as a full width image, please use larger images to correct.
    Below are direct links to the images please review.

    Best regards,
    Mike

    in reply to: To Mike. Problem after update on www.twinloc-ld.fr #1354138

    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: masonry gallery sort option #1354018

    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: Product Grid / Product Slider Customization #1354017

    Hi,

    @thijmens
    thank you for your patience and the link to your site, the script in this thread is for the product slider element, your page is not using this element it is a Shop page.
    On your page the first 3 columns are equal height but the last one has double the product excerpt, so making all four equal height to the last one will make the first 3 look strange with a lot of white space, my recommendation is that you would be better to remove half of the product excerpt from the last one.
    If you would like further help with this please open a new thread and include an admin login in the Private Content area.
    We try to keep the threads focused on a single topic to help future searches, thank you for your understanding.

    Best regards,
    Mike

    in reply to: Multiple Footers #1354014

    Hi,
    Thanks you, I moved the video from VideoFooter – column2 to Footer – column2, below the image, and checked that your show/hide options were correct:
    2022-06-03_001.jpg
    and now it is working correctly, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: spacing footer #1353913

    Hi,
    Perhaps try this css:

    @media only screen and (min-width: 768px) { 
    	#footer > .container,
    	#socket > .container {
    		 padding-left: 100px;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Multiple Footers #1353912

    Hi,
    Thank you for your patience and for the login, but I don’t see the domain to your client’s site in the thread, please include so we can login and look at your footer widgets.

    Best regards,
    Mike

    in reply to: H2 Stuck in all caps. #1353910

    Hi,
    Thank you for your patience, The Div Team provided a patch for this issue and I have applied it to your site, see the links below, it seems to be working correctly please check.
    This will be in the next update.

    Best regards,
    Mike

Viewing 30 posts - 11,731 through 11,760 (of 34,988 total)