Forum Replies Created

Viewing 30 posts - 16,891 through 16,920 (of 35,024 total)
  • Author
    Posts
  • 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

    in reply to: Woocommerce Category Archive Sidebar not visible #1214980

    Hi,
    Sorry for the late reply and thanks for the FTP access, I updated your theme but this didn’t help, I have asked the rest of the team for their thoughts, thank you for your patience.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I have tested several woocommerce hooks to add the sub-menu shortcode which works for the product archive pages but it brakes the layout, so I’m looking into why this is and if there is another way to do this. I appreciate your patience, thank you.

    Best regards,
    Mike

    in reply to: Align last element in equal height columns to bottom #1214337

    Hi,
    Ok, seems like it should be simple but I’m missing something or the equal height javascript is doing something.
    So please remove the css above and add this script, it gets the height of each text section in each row and sets them the same, thus moving the button to the same place in each cell.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_height_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      	$('.flex_column_table.av-equal-height-column-flextable').each(function(){  
         var $columns = $('section.av_textblock_section ',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_height_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: sidebar crashes site #1214327

    Hi,
    If you want to go back to the css solution please disable the plugin so we can try again.

    Best regards,
    Mike

    in reply to: 2 Problems with ALB code for LearnDash, please help? #1214317

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thanks for the link, I do see that the icons in the tab are not animating, I have submitted an issue report to the dev team about this using a similar example from a different thread.
    I will report here when I hear back from them.

    Best regards,
    Mike

    in reply to: Column Spacing #1214312

    Hi,
    I’m not sure what you mean by “indipendentely of their number”
    Perhaps if you linked to a test page that we can see what you want to do.

    Best regards,
    Mike

    in reply to: Link to a tab in a Tab Section #1214306

    Hi,
    Thanks for the login, I disabled your custom function and added this one to your child theme functions.php

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $("a.av-section-tab-title").each(function() {
       var $this = $(this);       
       var _href = $this.attr("href"); 
       var itemId = _href.substring(1, _href.length);
       $this.attr("id", itemId);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Now directly going to /kundcase/#foersaekring opens the tab and scrolls to it.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Post Category Icon #1214298

    Hi,
    Thanks for the login, I adjusted your css to this and now it works:

    .category-elementary-school span.iconfont:before {
      content: "\e800"; 
      font-family: yf-categories;
      color: #fff;
      position: relative;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header-Titel und Linkstruktur (Breadcrumb) #1214287

    Hi,
    At Enfold Theme Options > Select Your Editor
    2020-05-19_051551.png

    Best regards,
    Mike

    in reply to: 2 Problems with ALB code for LearnDash, please help? #1214038

    Hi,
    Glad to hear this is helping, unfortunately we can’t move the css to your child theme. Typically, we would override css with the !important; but there is no solution for removing the !important; without another one.
    So I followed @jacqueschoquette’s suggestion and installed the Admin CSS MU plugin and copied all of the modified /avia-builder.css css to it, and then added this script to remove the original css

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $("link[href*='/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css']").remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    I tested this on your site and it is working and you should not have to update this file after the next update.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Icon box icon #1214023

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1214022

    Hi,
    Please include FTP access in the Private Content area.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, try changing is_archive() to is_product_category() in the code.

    Best regards,
    Mike

    in reply to: Image wirh link jumps onmouseover #1214018

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Align last element in equal height columns to bottom #1214012

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

    .flex_column_table_cell.av-equal-height-column .avia-button-left {
    	position: absolute !important;
        left: 0 !important;
        bottom: 0 !important;
    }

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

    Best regards,
    Mike

    Hi,
    Thank you, for the Product gallery were you using the “Default enfold product gallery” or the “WooCommerce 3.0 product gallery” or did it not matter?

    Best regards,
    Mike

Viewing 30 posts - 16,891 through 16,920 (of 35,024 total)