Forum Replies Created

Viewing 30 posts - 12,121 through 12,150 (of 35,189 total)
  • Author
    Posts
  • in reply to: Error Messages #1351878

    Hi,
    Thanks for the login, your WordPress ▸ Appearance ▸ Theme File Editor seems to be disabled, but I believe if you add this function to your child theme functions.php it may help:

    function custom_avf_post_css_create_file( $create ) {
    	return false;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    I see that you already have a few Email Template for your Participants Database Email Expansion Kit plugin, did this error just start?
    I’ve never heard of this plugin so I’m not sure what it is doing, but I believe the Email Templates are saved as a post-type in WordPress because the error:
    get_default_post_to_edit() #6 {main} thrown in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php on line 385
    points to the function handler_wp_save_post.

    Best regards,
    Mike

    in reply to: transparent areas on webside #1351875

    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: Add footer content to all product category pages #1351874

    Hey laboiteapixels12,
    Thank you for your patience and for the login, to add this red area above your footer on all pages I added a “before_footer” widget above your footer with this function in your child theme functions.php:

    add_action('ava_before_footer','avia_above_footer');
    function avia_above_footer(){
    dynamic_sidebar( 'before-footer' );
    }

    and then in your widgets I added a HTML widget with the element shortcode:
    2022-05-15_004.jpg
    Then I added this css in the WordPress ▸ Customize ▸ Additional CSS field:

    #before_footer {
    	background-color: #a25442;
    	border: none;
    }
    #before_footer .container {
    	padding: 20px 50px;
    }
    #custom_html-5 {
    	padding: 0;
    }

    and now it shows on all of your pages including the product pages, but a couple pages like your homepage now shows this red area twice, you just need to remove the element from the page if you like the widget version that I created.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: transparent areas on webside #1351870

    Hi,
    Try this instead:

    #main > .alternate_color.title_container {
    	background-color: rgba(255, 255, 255, 0.5);
    }
    #main > .container_wrap.container_wrap_first {
    	border-top-style: none;
    }

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

    Best regards,
    Mike

    in reply to: Realigning Elements Across Multiple Columns #1351869

    Hey Timothy,
    Thanks for the link to your page, I think I understand, try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_equal_height_script() { ?>
        <script>
    (function($){
      	$('.home .entry-content-wrapper').each(function(){  
         var $columns = $('.flex_column.av_one_fourth>.av-special-heading>.av-special-heading-tag',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
        });
         $('.home .entry-content-wrapper').each(function(){  
         var $columns = $('.flex_column.av_one_fourth>.av-special-heading>.av-subheading_below',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_equal_height_script');

    this will adjust all of the av-special-heading-tag & av-subheading_below to match the height of the tallest one, please see the screenshot in the Private Content area.
    Note that your last column has a different bottom padding, you should correct in the element.

    Best regards,
    Mike

    in reply to: transparent areas on webside #1351865

    Hi,
    Thanks for your patience, to make the title container (TANZ MIT UNS) transparent, please try this css:

    #main > .alternate_color.title_container {
    	background-color: transparent;
    }
    #main > .container_wrap.container_wrap_first {
    	border-top-style: none;
    }

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

    Best regards,
    Mike

    in reply to: import demo files didn't work #1351863

    Hi,
    Thank you for your patience, I see that you are using OVH hosting which has the set_time_limit() disabled by default on the server, please ask OVH hosting to enable this setting, otherwise you will continue to get the cURL error.

    Best regards,
    Mike

    in reply to: iframe video background #1351862

    Hi,
    Thanks for the link to your page but you can not apply css to the inner html of an iframe, this must be done at the source url. It is a web security restriction for the same-origin policy.

    Best regards,
    Mike

    in reply to: How delete LayerSlider? #1351860

    Hi,
    Since the start of this thread in 2015 there are more options to disable or remove the LayerSlider in the theme options at Enfold Theme Options ▸ Layout Builder ▸ Integrated (Bundled) LayerSlider Plugin,
    2022-05-15_002.jpg
    You can also read in our documentation that the bundled version of the LayerSlider is only updated with theme updates due to the license for the bundled LayerSlider. If you wish to purchase and use a standalone version to update more often, please deactivate the bundled version.
    Since this thread is from 2015 and it covers multiple topics, if you have questions about the current version that is not explained in our documentation please open a new thread and describe the issue that you are having so we can assist.

    Best regards,
    Mike

    in reply to: Masonry blog – categories and posts #1351858

    Hi,
    Thanks for your feedback, I see that you have limited the number of items to show to 16, so what happens is that the masonry gets the first 16 items based on date (newest) and shows them, the sort term links above the masonry only sorts based on the 16 items showing, so they are all 2022.
    When you use the “Load More” button below the masonry (Cargar más) then more items are shown with older dates.
    This is the intended behavior, perhaps you would want to show more than 16 items at a time?
    2022-05-15_001.jpg

    Best regards,
    Mike

    in reply to: Deactivate link of Section Title in the menu #1351856

    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: Remove unused Enfold image sizes #1351854

    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: Pictures on home page not loading #1351850

    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: Sticky header covers content of destination anchor #1351845

    Hi,
    Thank you for your patience, perhaps this solution will help in your case, you can try this by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_offset_script() { ?>
        <script>
    (function($) {
      $('a[href*=#]:not([href=#])').click(function() {
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    && location.hostname == this.hostname) {
    
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target.length) {
            $('html,body').animate({
              scrollTop: target.offset().top - 125 //offsets for fixed header
            }, 1000);
            return false;
          }
        }
      });
      //Executed on page load with URL containing an anchor tag.
      if($(location.href.split("#")[1])) {
          var target = $('#'+location.href.split("#")[1]);
          if (target.length) {
            $('html,body').animate({
              scrollTop: target.offset().top - 125 //offset height of header here too.
            }, 1000);
            return false;
          }
        }
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_offset_script');

    I tested this on your page by injecting the code in my browser and it seemed to work well, instead of trying to land on the anchor while the page is still loading and adjusting it’s height, this script waits for the page to load and then scrolls to the anchor.

    Best regards,
    Mike

    in reply to: Double title when using the category widget #1351843

    Hi,
    Thanks for the feedback, please try this css:

    @media only screen and (min-width: 1250px) and (max-width: 1450px) { 
    	#main > .container_wrap > .container.template-single-blog > .av-content-small.units {
    		    width: 73%;
    	}
    }

    After applying the css, please clear your browser cache and check.
    Please note that testing with 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: Remove unused Enfold image sizes #1351842

    Hi,
    You can add these:

    
    remove_image_size('shop_thumbnail');
    remove_image_size('shop_catalog');
    remove_image_size('shop_single');

    but remove_image_size(‘shop_gallery_thumbnail’); is not correct, try:

    remove_image_size('woocommerce_gallery_thumbnail');
    remove_image_size('woocommerce_single');
    remove_image_size('woocommerce_thumbnail');

    Best regards,
    Mike

    in reply to: meta tag robots #1351840

    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: WPML changes font & color #1351825

    Hey MarkvanderVeer,
    Thank you for the link to your site but your homepage header looks the same as the /cijfers-en-trends/ page both have a transparent header and the logo is white before scroll and black after scroll, and after scroll the header menu text is black on both and the font looks the same. I also checked both in English.
    Try clearing your browser cache and if you still see a difference please include screenshots so we can ensure we are looking at the same elements.

    Best regards,
    Mike

    in reply to: Blog Grid Posts with left and right borders #1351824

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

    #main .main_color .avia-content-slider .slide-image {
    	 background: transparent;
    }

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

    Best regards,
    Mike

    in reply to: Masonry Element Image spacing #1351823

    Hi,
    Thanks for sharing your solution, but I note that the masonry title container stretches across the gap:
    2022-05-14_016.jpg
    this css seems to help:

    .av-masonry-entry .av-inner-masonry-content {
        width: calc(100% - 10px);
    }

    2022-05-14_017.jpg

    Best regards,
    Mike

    in reply to: How to Update LayerSlider version #1351822

    Hey spacerocket,
    The bundled LayerSlider is only updated with theme updates, you can purchase and use the standalone version if you wish. Please read more about this in our documentation.

    Best regards,
    Mike

    in reply to: Open lightbox from one single image link #1351821

    Hi,
    Thank you Guenni007 for all of your help for so many years 🙌

    Best regards,
    Mike

    in reply to: Deactivate link of Section Title in the menu #1351820

    Hey Ad-Min747,
    Thank you for your question, to make a menu item with no link use the hashtag instead of the URL in a custom link item:
    2022-05-14_012.jpg
    to make sub items off set the menu items
    2022-05-14_013.jpg
    results
    2022-05-14_175247.jpg

    Best regards,
    Mike

    in reply to: Double title when using the category widget #1351818

    Hi,
    Do you mean this in the sidebar?
    2022-05-14_011.jpg
    What screen resolution do you see this at?

    Best regards,
    Mike

    in reply to: Border on Table of Contents and Latest Posts Box #1351816

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

    #main .avia-widget-container.avia_auto_toc,
    #main .avia-widget-container.newsbox{
    	padding: 5px;
        border: 1px solid #f6971a;
    }

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

    Best regards,
    Mike

    in reply to: Remove unused Enfold image sizes #1351815

    Hi,
    Thank you for your question, your code looks correct and the Regenerate Thumbnails is still recommended, many basic plugins only need to be updated when the WordPress core changes for the specific function, which typically is seldom for this function.
    The last number is the priority that it has.

    Best regards,
    Mike

    in reply to: Add Code block element into tinyMCE #1351814

    Hey StuWeTueHo,
    Thank you for your question, I’m not sure if there is a nesting issue with adding the code block element to the “Text Block” shortcode wand options, as in your screenshot, but I have asked the team for feedback and will reply when I hear back. Thank you for your patience

    Best regards,
    Mike

    in reply to: site flickers – or loads black first then page?? #1351813

    Hi,
    Thank you for the screencast, I would describe this as your page loading rather than a “flicker”, to reduce this I would recommend using a caching plugin, WP Fastest Cache typically works well.
    Another option would be to activate the Enfold Theme Options > Page Preloading option.

    Best regards,
    Mike

    in reply to: Responsive Is Broken #1351812

    Hey interfacemedia,
    Thank you for the link to your site and video, but I looks like the page in question was built with the page builder Elementor, Enfold has it’s own built-in page builder, the Advanced Layout Builder which can not be removed from the theme or replaced by another page builder, we do not support Elementor and do not expect all of it’s features to work correctly.
    We recommend that you remove Elementor and use the Advanced Layout Builder.

    Best regards,
    Mike

    in reply to: Cookies message #1351808

    Hi,
    Thank you for your patience, I found this only occurred when your CSS file merging and compression was enabled, which lead me to look at your Quick CSS and I found that you were missing a bracket, I corrected, please clear your browser cache and check.
    2022-05-14_010.jpg

    Best regards,
    Mike

Viewing 30 posts - 12,121 through 12,150 (of 35,189 total)