Forum Replies Created

Viewing 30 posts - 12,181 through 12,210 (of 35,056 total)
  • Author
    Posts
  • in reply to: Masonry Distance Between images #1349243

    Hey delmonte,
    Thank you for your patience, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .av-1px-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
        position: relative;
        margin-right: 4px;
        margin-bottom: 4px;
    }

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

    Best regards,
    Mike

    in reply to: Gallery bottom align thumbnail and title align bottom #1349242

    Hi,
    Thanks for the screenshot, to align the images to the bottom try this css:

    #top #wrap_all .avia-gallery .avia-gallery-thumb a {
        display: flex;
        flex-direction: column;
    }
    #top #wrap_all .avia-gallery .avia-gallery-thumb a img {
    	margin-top: auto;
    	
    }

    To have the tooltips show below the items edit \enfold\js\avia.js on line 1243 you will find position: 'top', //top or bottom change it to: position: 'bottom', //top or bottom and add this css:

    .avia-tooltip .avia-arrow-wrap {
        bottom: 45px !important;
    }
    .avia-tooltip .avia-arrow {
        top: 15px !important;
    }

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Button to Mail Client #1349239

    Hey Stefan,
    Thanks for your question, I believe that you mean that you want to add a Mailto Link to a button that will send to two addresses and add the subject line, you can do this like this:

    mailto: (Email address hidden if logged out)  (Email address hidden if logged out) &subject=Big%20News

    2022-04-23_004.jpg
    which results this in your mail client
    2022-04-23_005.jpg

    Best regards,
    Mike

    Hey jim-cp,
    Thank you for your patience, in some cases javascript in code block elements will try to execute in the backend when external scripts are called or iframes are loaded in the script, it’s not common but I believe that I recall a situation like you are describing.
    Try creating a shortcode for the form’s script in your functions.php and then add the shortcode to your code block, this should solve.

    Best regards,
    Mike

    in reply to: Cant get rid of Google Fonts. How? #1349236

    Hi,
    I tested Guenni007‘s function on my test site:

    
    function my_output_google_webfonts_script( $activate ){
      return false;
    }
    add_filter( 'avf_output_google_webfonts_script', 'my_output_google_webfonts_script', 10, 1 );

    and it removed fonts.googleapis.com even with H tags set to use google fonts in the Advanced Layout Builder.
    When I tested the layerslider adding a google font to a specific layer and then disabled the google fonts in the settings it removed fonts.googleapis.com
    2022-04-23_003.jpg
    So using Guenni007‘s function and disabling the google fonts in the layerslider settings worked for my test site.
    If you have tried this and it is not working please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    Hi,
    Glad Rikard 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: Changing Dot Color Easy Slider #1349226

    Hey Monika,
    Thank you for your question, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .avia-slideshow-dots a.goto-slide.active, .avia-slideshow-dots a.goto-slide:hover {
        background: #676e44;
    }
    .avia-slideshow-dots a.goto-slide {
        background: #F0E6DE;
    }

    and adjust the color to suit

    Best regards,
    Mike

    in reply to: Logo on hover with Masonry #1349224

    Hey JKnoblach,
    Thank you for your patience and for the link to your page, it looks like you are using the masonry element and showing portfolio items. We don’t have a default way to add logo images over the masonry item on hover but I was able to find a way to do this for this situation using images, but it may not work with SVG’s because you will need to use image element shortcodes. I imagine you could create custom SVG shortcodes ad use them, but you can’t use html in the excerpts.
    For this example we will create an image shortcode using the shortcode wand and paste that shortcode in to the portfolio item manual excerpt field.
    Then in the masonry element we will choose to show the excerpt only instead of the title that you are now showing and add this css into the WordPress ▸ Customize ▸ Additional CSS field:

    .av-masonry-entry-content .avia-image-container img {
    height: 100px;
    width: 100px;
    }

    this css assumes that your logo image is 100px square, feel free to adjust to the size you wish to show.
    Then in order to show the shortcode from the excerpt you will need to install the plugin Shortcodes Anywhere or Everywhere and choose the setting In Post/Page Custom Fields
    2022-04-23_002.jpg
    The expected result:
    2022-04-23_001.jpg
    I linked to my example page below, please give this a try.

    Best regards,
    Mike

    in reply to: Blog Sidebar Widget Not Showing on Mobile #1349217

    Hi,
    Thank you for your patience, I removed the above function and added this script to move the search above the blog content on mobile:

    function custom_move_search_script() { ?>
        <script>
    (function($) {
    	var width = $(window).width();
    	if ( width <= 767) {
        $('#top.blog #search-3').css({ 'padding-bottom': '0'}).detach().insertBefore('.template-blog>main.content');
    	} else {}
     })(jQuery);
     </script>
        <?php
    }
    add_action('wp_footer', 'custom_move_search_script');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Edit Contact Form Autoresponder Fields #1349211

    Hi,
    Glad Ismael could help, since you are not using a child theme the above function will be lost with future theme updates Read about installing a child theme & Get it here

    Best regards,
    Mike

    in reply to: Make button animation flip #1349210

    Hi,
    Guenni007 thank you for sharing this solution. Navindesigns were you able to implement this?

    Best regards,
    Mike

    in reply to: block collant en dessous du menu collant #1349166

    Hi,
    Thank you for the feedback, I adjusted it so it will wait for the page to fully load before the calculations, I think the lazy load images were affecting the calculations.
    Please clear your browser cache and check, and note that it won’t work on screens below 990px, as above you asked for it to not work on mobile.
    Please note that if you are testing with Safari it 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: Transparent background #1349161

    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

    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: Transparent background #1349137

    Hi,
    Thanks for the link to your site, I see that you already have the background image applied, so please try this css to make the foreground transparent:

    html,#main,.main_color,.footer_color,.socket_color,.header_color .header_bg {
        background-color: transparent;
    }

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

    Best regards,
    Mike

    in reply to: Informations supplémentaire survole image masonry #1349136

    Hi,
    Lorsque vous affichez des produits dans l’élément de maçonnerie, vous ne pourrez pas ajouter d’éléments à la Description courte du produit car elle ne rend pas les codes courts.

    — Translated with Google —

    When showing products in the masonry element you will not be able to add elements to the Product short description because it doesn’t render shortcodes.

    Best regards,
    Mike

    in reply to: Transparent background #1349077

    Hey xela,
    To have a background image and a transparent #wrap_all & #main please set your header to transparent and use this css, note that for this example it is set to apply on page-id-3304 because that is the test page linked below, you will want to set this to your page id.
    The only element I have on the test page is a color section with a transparent background in the settings and a special heading, so depending on the elements you choose for your page you may need to add transparency to those elements.

    .html_stretched body.page-id-3304 {
    background-image: url(//enfold/wp-content/uploads/2022/03/PhotoRag_Metallic_Mood-1-scaled.jpg);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    }
    .html_stretched #top.page-id-3304 #wrap_all,
    .html_stretched #top.page-id-3304 #main {
        background-color: transparent;
    }

    If you would like further help please link to your page so we can assist, there are too many elements to account for all of them blindly.

    Best regards,
    Mike

    in reply to: disable fade in for overlay menu #1349052

    Hi,
    Thank you for the screencast, but this is the DOM as I have been trying to explain to you.
    Nonetheless, I have asked the Dev Team for advice on this and they said that this is the correct behavior and changing the menu would not be easy, but they have opened a request to review the menu function at a later date when they have more time.
    In the meanwhile please use the css solution:

    #top.home #wrap_all #av-burger-menu-ul > li {
    	top:0 !important;
    	opacity:1 !important;
    }

    Thank you for your patience and as always if you have any other questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    The Dev Team has checked your error logs and found that it seems to be a problem with the post status beeing duplicated in query in an endless loop, but our query parameters do not have a post_status set (see postslider.php:1196) and testing with print_r( $query ); gives:

    query :Array ( 
    [orderby] => date 
    [order] => DESC 
    [paged] => 1 
    [post_type] => Array ( 
              [post] => post 
              [page] => page 
              [attachment] => attachment 
              [revision] => revision 
              [nav_menu_item] => nav_menu_item 
              [custom_css] => custom_css 
              [customize_changeset] => customize_changeset 
              [oembed_cache] => oembed_cache 
              [user_request] => user_request 
              [wp_block] => wp_block 
              [wp_template] => wp_template 
              [wp_template_part] => wp_template_part 
              [wp_global_styles] => wp_global_styles 
              [wp_navigation] => wp_navigation 
              [give_forms] => give_forms 
              [give_payment] => give_payment 
              [product] => product 
              [product_variation] => product_variation 
              [shop_order] => shop_order 
              [shop_order_refund] => shop_order_refund 
              [shop_coupon] => shop_coupon 
              [tribe_venue] => tribe_venue 
              [tribe_organizer] => tribe_organizer 
              [tribe_events] => tribe_events 
              [tribe-ea-record] => tribe-ea-record 
              [deleted_event] => deleted_event 
              [portfolio] => portfolio 
              [avia_framework_post] => avia_framework_post 
          ) 
    [offset] => 
    [posts_per_page] => 9 
    [post__not_in] => Array ( ) 
    [meta_query] => Array ( ) 
    [tax_query] => Array ( [0] => Array ( [taxonomy] => category [field] => id [terms] => Array ( [0] => 43 ) [operator] => IN ) ) 
    [date_query] => Array ( ) 
    ) 
    
    
    $params:Array ( [type] => slider [style] => [columns] => 3 [items] => 9 [taxonomy] => category [wc_prod_visible] => [wc_prod_hidden] => hide [wc_prod_featured] => [prod_order_by] => [prod_order] => [show_meta_data] => [post_type] => Array ( [post] => post [page] => page [attachment] => attachment [revision] => revision [nav_menu_item] => nav_menu_item [custom_css] => custom_css [customize_changeset] => customize_changeset [oembed_cache] => oembed_cache [user_request] => user_request [wp_block] => wp_block [wp_template] => wp_template [wp_template_part] => wp_template_part [wp_global_styles] => wp_global_styles [wp_navigation] => wp_navigation [give_forms] => give_forms [give_payment] => give_payment [product] => product [product_variation] => product_variation [shop_order] => shop_order [shop_order_refund] => shop_order_refund [shop_coupon] => shop_coupon [tribe_venue] => tribe_venue [tribe_organizer] => tribe_organizer [tribe_events] => tribe_events [tribe-ea-record] => tribe-ea-record [deleted_event] => deleted_event [portfolio] => portfolio [avia_framework_post] => avia_framework_post ) [contents] => excerpt [preview_mode] => auto [image_size] => portfolio [autoplay] => no [animation] => fade [paginate] => no [use_main_query_pagination] => no [interval] => 5 [class] => avia-builder-el-15 el_after_av_textblock el_before_av_hr [el_id] => [categories] => 43 [custom_query] => Array ( ) [offset] => [custom_markup] => [av_display_classes] => [date_filter] => [date_filter_start] => [date_filter_end] => [date_filter_format] => yy/mm/dd [period_filter_unit_1] => 1 [period_filter_unit_2] => year [lazy_loading] => disabled [img_scrset] => ) 
    
    
    query :Array ( [orderby] => date [order] => DESC [paged] => 1 [post_type] => Array ( [post] => post [page] => page [attachment] => attachment [revision] => revision [nav_menu_item] => nav_menu_item [custom_css] => custom_css [customize_changeset] => customize_changeset [oembed_cache] => oembed_cache [user_request] => user_request [wp_block] => wp_block [wp_template] => wp_template [wp_template_part] => wp_template_part [wp_global_styles] => wp_global_styles [wp_navigation] => wp_navigation [give_forms] => give_forms [give_payment] => give_payment [product] => product [product_variation] => product_variation [shop_order] => shop_order [shop_order_refund] => shop_order_refund [shop_coupon] => shop_coupon [tribe_venue] => tribe_venue [tribe_organizer] => tribe_organizer [tribe_events] => tribe_events [tribe-ea-record] => tribe-ea-record [deleted_event] => deleted_event [portfolio] => portfolio [avia_framework_post] => avia_framework_post ) [offset] => [posts_per_page] => 9 [post__not_in] => Array ( ) [meta_query] => Array ( ) [tax_query] => Array ( [0] => Array ( [taxonomy] .......

    As you see above there is no post status in the query parameters.
    Seems, that because this is a secondary query one of the plugins has a problem handling this (most likely the GiveWP). But we cannot fix this.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I tested the GiveWP + Events Calendar + WooCommerce pluins on my test server with the same Enfold and WordPress versions as your site (the latest),
    2022-04-21_003.jpg
    but the post slider and magazine elements showed correctly, so I thought that perhaps I had a different settings than you in one or all of the plugins so I exported your staging site settings (WordPress XML file) to my test server, linked below, and now it is a mirror of your staging sitewith very similar server settings,
    2022-04-21_015307.jpg
    but the post slider and magazine elements are showing correctly.
    I tested your site with the child theme disabled, which didn’t help, I also tested your site with your child theme functions.php disabled:

    /* Disable JetPack Just in Time Messages */
    add_filter( 'jetpack_just_in_time_msgs', '__return_false', 99 );
    
    // Fix events calendar dropdown and just shows the old download links.
    add_filter( 'tec_views_v2_use_subscribe_links', '__return_false' );

    which didn’t help, I checked your child theme header.php, but it is up-to-date with only a Google Analytics modification, which I tested without, with no success.
    The only difference I can find is that you are using WPEngine caching and the Site Health says Custom rules have been added to your .htaccess file, see the screenshot above.
    So I’m not sure what the issue could be, but I will forward this to the Dev Team for their review.

    Best regards,
    Mike

    in reply to: disable fade in for overlay menu #1348965

    Hi,
    I don’t believe that the DOM creation would cause any visual effects on the front end, have you been able to create this effect while using the css solution above?

    Best regards,
    Mike

    in reply to: disable fade in for overlay menu #1348957

    Hi,
    The av-burger-overlay div doesn’t exist until the burger menu is clicked, then the menu items are created and added, in less than half a second, they can’t be all added at the same time in the DOM as each one needs to be created.
    The animation that you originally saw is from css not the creation of the DOM elements.

    Best regards,
    Mike

    in reply to: disable fade in for overlay menu #1348950

    Hi,
    Sorry, I do not see this in the Dev Tools, I believe that what you are seeing is the structure created in the DOM, because the mobile menu structure is only created after the burger menu is clicked, not on the original page load.
    Can you demonstrate an example where this solution is not working?

    Best regards,
    Mike

    Hi,
    The Dev Team will add a filter to the next release, you can apply this now to your version by first removing the child theme file above and the function for it in the child theme functions.php and adding this line to parent theme /enfold/includes/helper-markup.php
    on line 348 $exclude = apply_filters( 'avf_blog_entry_markup_helper_exclude', $exclude, $id );
    and then add this filter to your child theme:

    function custom_avf_blog_entry_markup_helper_exclude( array $exclude = array(), $id = 0 ) {
    	$exclude = array_merge( $exclude, array( 'date', 'date_modified' ) );
    	return $exclude;
    }
    add_filter( 'avf_blog_entry_markup_helper_exclude', 'custom_avf_blog_entry_markup_helper_exclude', 10, 2 );

    Best regards,
    Mike

    in reply to: Text disappears in the background #1348931

    Hi,
    Thanks for the screenshot changing the negative bottom margin to a positive number corrects:
    2022-04-20_001.jpg
    this is now the result:
    2022-04-20_002.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that this solution works for you, I will ask the rest of the team if they know of a filter solution, thank you for your patience.

    Best regards,
    Mike

    in reply to: disable fade in for overlay menu #1348924

    Hi,
    The css from 2020 did do this because it didn’t include the top:0 that I added above.
    I tested this on your site that you linked to and it works correctly, shows the mobile menu items without animation, please try this and clear your browser cache and any caching plugins.

    Best regards,
    Mike

    in reply to: Search and close button overlaps when scrolling on menu #1348922

    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: Product Masonry – sustainable price displaying edition #1348921

    Hi,
    Thanks for the feedback, please try the plugin and hopefully it will replace the variation price with the variation weight as use wish because the masonry element can only show the information and not “calculate” it, this would need to be done with a plugin.
    If this plugin doesn’t help then try to see if there are other plugins available.

    Best regards,
    Mike

    in reply to: Banners placed in forum section of bbpress? #1348791

    Hi,
    Thank you for the login, I see that your banners are added as custom widgets, but I notice that your child theme is not activated
    2022-04-19_003.jpg
    please activate the child theme and import the parent theme settings.
    Also note that any customizations in the parent theme functions.php will need to be moved to the child theme functions.php so they will not be lost on updates.

    Sometimes, after importing the parent theme settings into the child theme and clearing your caching plugins, the site doesn’t show the style correctly, in this case go to the theme settings and see if the “save all settings” button is blue:
    2022-04-19_004.jpg
    If so click it to save again and clear your caching plugins and check again.
    If the button is not Blue, try adding a space in the Quick CSS, this will make the button blue so you can click to save again.
    Otherwise, try disabling your caching plugin and clear your browser cache and check again.

    Best regards,
    Mike

Viewing 30 posts - 12,181 through 12,210 (of 35,056 total)