Forum Replies Created

Viewing 30 posts - 16,921 through 16,950 (of 35,071 total)
  • Author
    Posts
  • in reply to: Image Slider — adapt height #1215607

    Hey alex,
    Sorry for the late reply, have you tried using the layerslider to create this? I don’t think you can do this with the regular sliders.

    Best regards,
    Mike

    Hey tremblayly,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .pricing-table-wrap:nth-child(1) .avia-pricing-row span.currency-symbol {
    	color: #222 !important;
    }
    

    Best regards,
    Mike

    in reply to: Column does not stay at the right side. #1215605

    Hi,
    Sorry for the late reply, It looks like your blue line is a color section element which is full width, any full width element will push the sidebar down when used on a page with a sidebar.

    Best regards,
    Mike

    in reply to: Product Category Titles not showing #1215604

    Hey MichaelSuttonsCellar,
    Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .template-shop .page-title {
        display: block !important; 
    }

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

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, unfortunately, you can not simply ftp images into the uploads folder and use them in WordPress, the images must also be in the database. You will need to upload each image, I have not found a working bulk uploader.

    Best regards,
    Mike

    in reply to: Post Notify check boxes #1215602

    Hey Jagrav,
    Sorry for the late reply, I believe you will need to install a plugin to add this feature, I believe you may have seen this in the “JetPack” plugin.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1215599

    Hi,
    Sorry, no date has been set yet.

    Best regards,
    Mike

    Hi,
    Glad to hear this helped solve it, and thank you for your patience and for using Enfold.

    Best regards,
    Mike

    in reply to: FAQ Schema on Pages #1215594

    Hi,
    Thank you for the suggestion.

    Best regards,
    Mike

    in reply to: Editing search dropdown #1215593

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

    span.av_ajax_search_content {
    	 padding-top: 10px;
    }

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

    Best regards,
    Mike

    Hi,
    Sorry I didn’t mean for you to use that code I was just trying to show the part of the code that checks the page for the two classes which means it’s a woocommerce archive page.
    So I copied the HTML code for your sub-menu and added it via javascript, which works without braking the page or sidebar layout.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Unavailable and variable products #1215582

    Hi,
    1) I believe you mean that on a page like in the Private Content area you want the “Voir les détails” to say something else when a product is out of stock.
    2020-05-23_144118.png
    Unfortunately, the items do not show a stock status on this page so we can’t change what the button says, but I did find this article: Hide loop read more buttons for out of stock items which is a function to hide the button which might also be a good option.
    2) The difference between your screenshot and the page seems to be that the variation drop down is no wider than your purchase button, is this what you meant?
    If so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    div form.cart table.variations {
        width: 50% !important;
    }

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1215572

    Hi,
    The dev team adjusted the /enfold/enfold-functions.php file for the next update to correct this, you can try the file in the Private Content area, but please keep a copy of your original for fall back.

    Best regards,
    Mike

    in reply to: Elements of timeline sometimes missing #1215563

    Hi,
    Glad to hear, this will be in the next update.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Image is not changing after selecting variation #1215562

    Hi,
    Thank you for the feedback, on your page you have an easy slider element where the product would be, so this is not connected to the woocommerce product and thus it is not going the change when you use the color variation button in the “Product Purchase Button” element. Woocommerce doesn’t have a shortcode for the product image and your variation plugin doesn’t have a shortcode a variation gallery, so, unfortunately, this is not going to work for you on an Advanced Layout Builder page.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I found that for your mobile slider the “Allow restarting slides on resize” in the advanced settings was enabled and disabling solves the slider restart issue for my Android device. Please clear your browser cache a few times and check.
    This setting is independent for each slide and is hidden by default so you will need to switch the Advanced Settings button to see it.
    2020-05-23_124625.png
    I checked your homepage slider and this was disabled so that would explain the difference between the two.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I have asked for someone with an iPad on the team to assist with this, thank you for your patience.

    Best regards,
    Mike

    in reply to: Author's Name to Move Under Blog Title #1215432

    Hi,
    Sorry for the late reply, I found that moving the elements the visibility of the featured image changes, I added some css to the element to correct this. I also added the ability to work on the blog & single post, try replacing the above function with this code at the end of your functions.php file in Appearance > Editor:

    function custom_meta_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      $( '#top.blog .post-entry.multi-big' ).each(function() {
      $( this ).find( 'span.post-meta-infos' ).css({ 'margin-top': '0px','padding-top': '0px'}).insertAfter( $(this).find('h2.post-title.entry-title'));
      $( this ).find('span.blog-categories.minor-meta').css({ 'margin-top': '15px','padding-top': '10px'}).insertAfter( $(this).find('div.entry-content'));
      $( this ).find('.big-preview.multi-big a').css({ 'overflow': 'visible'});
      });
      $( '#top.single-post .post-entry.single-big' ).each(function() {
      $( this ).find( 'span.post-meta-infos' ).css({ 'margin-top': '0px','padding-top': '0px'}).insertAfter( $(this).find('h1.post-title.entry-title'));
      $( this ).find('span.blog-categories.minor-meta').css({ 'margin-top': '15px','padding-top': '10px'}).insertAfter( $(this).find('div.entry-content'));
      $( this ).find('.big-preview.single-big a').css({ 'overflow': 'visible'});
      });
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_meta_script');

    Best regards,
    Mike

    in reply to: Mega menu images size #1215425

    Hi,
    Sorry for the late reply, I believe that I understand now, please change your css from:

    #menu-item-2080 .sub-menu img {
        margin-bottom: -2px!important;
        border: solid 1px #cca752;
    }

    to:

    #menu-item-2080 .sub-menu img {
        margin-bottom: -2px!important;
    }
    #menu-item-2080 .sub-menu a {
        border: solid 1px #cca752;
    }

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

    Best regards,
    Mike

    in reply to: Add forward button to default audio player #1215410

    Hi,
    Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #mep_0.mejs-container {
        width: 100% !important;
        height: 100% !important;
    }

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

    Best regards,
    Mike

    Hi,
    The dev team has added a fix to the theme for the animation issue within the tabs, please save a copy of your current shortcodes.js file for fallback and replace with the one linked here.
    The file is found at: \wp-content\themes\enfold\js\shortcodes.js
    Then clear your browser cache a few times and check.

    Best regards,
    Mike

    in reply to: Elements of timeline sometimes missing #1215225

    Hi,
    The dev team has added a fix to the theme for the animation issue within the tabs, please save a copy of your current shortcodes.js file and replace with the one linked in the Private Content area.
    The file is found at: \wp-content\themes\enfold\js\shortcodes.js
    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I was able to target the archive product page with this function:

    add_action('ava_after_main_container', 'custom_submenu');
    function custom_submenu() {
    	$classes = get_body_class();
    if ((in_array('woocommerce-page',$classes)) || (in_array('archive',$classes))) {
    		echo do_shortcode("[shortcode]");
    } else {
        }
    
    }

    but the full-width sub-menu still brakes the sidebar layout, is it important to you to use the sidebar on those pages?

    Best regards,
    Mike

    in reply to: Editing search dropdown #1215203

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

    .ajax_search_response .av_ajax_search_content {
    	    text-align: left !important;
    }

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

    Best regards,
    Mike

    in reply to: Unavailable and variable products #1215202

    Hi,
    To hide the product counter and the “Add to cart” button when the product is “Available on backorder” Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single-product .single-product-summary p.stock.available-on-backorder + form.cart {
    	display: none !important;
    }

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

    Best regards,
    Mike

    in reply to: Mehrere Color-Sections öfnnen und schließen #1215198

    Hi,
    Hope you are feeling better, we will leave this open until we hear back from you.

    Best regards,
    Mike

    in reply to: Column Spacing #1215196

    Hi,
    Sorry for the late reply, if you want to reduce the space between columns, try changing the “margin-left”, for example, the normal “margin-left” of 1/2 columns is 6%, so changing to 1% or any other number should help:

    #main div .av_one_half {
        margin-left: 1% !important; 
    }

    Best regards,
    Mike

    in reply to: sidebar crashes site #1215003

    Hi,
    Thank you, I notice that when the sidebar sticks the contact form button is out of view, so if you add this script it will allow the sidebar to scroll up a little to show the button and then becomes fixed.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function ($) { 
      $(window).scroll(function() {
        var width = $(window).width(), height = $(window).height();    
        var scroll = $(window).scrollTop();
        var $sidebar = $( 'aside.sidebar.sidebar_right' );
          if (scroll >= 30 && width >= 1024) {
        $sidebar.addClass( 'sticky' );
       } else {
        $sidebar.removeClass( 'sticky' );
       }
      });
     })(jQuery);
     </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    and add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 768px) { 
    #main aside.sidebar.sidebar_right.alpha.units.sticky {
    position: fixed !important;
        right: 12% !important;
        top: 10% !important;
    }
    #top #main .sidebar.sticky {
        width: 27% !important; 
    }
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Sorry, I didn’t find any difference between the two pages settings, can we temporarily disable your plugins to see if there is a conflict?

    Best regards,
    Mike

    in reply to: Not getting pagination buttons #1214986

    Hi,
    Thank you, I changed the filter option from Remove element if the user navigated away from page 1 to page 2,3,4 etc to Always display the element now your pagination shows, please check.
    2020-05-21_064928.png

    Best regards,
    Mike

Viewing 30 posts - 16,921 through 16,950 (of 35,071 total)