Forum Replies Created

Viewing 30 posts - 14,971 through 15,000 (of 34,661 total)
  • Author
    Posts
  • in reply to: Masonry Blog Feed Question #1275138

    Hey schwabino,
    Sorry for the very late reply, I see this is a duplicate of this thread that is active, let’s continue there and close this one. 🙂👍

    Best regards,
    Mike

    in reply to: testimonials Arrows showing up strange on all pages #1275137

    Hey asapevictions,
    Sorry for the very late reply and thanks for the link, this is due to this custom css in your Quick CSS or child theme stylesheet:

    #top .avia-slideshow-arrows a {
        font-size: 100px !important;
    }

    Please remove this and clear your browser cache, and check again.
    If you want the arrows larger please try this css instead:

    #top .avia-slideshow-arrows a:before {
        font-size: 100px !important;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, as I understand your situation you want to use a different prefix in the image Link Settings, the theme automatically adds the domain and changes unknown prefixes to HTTP.
    While I’m not certain of your exact planned use of file:///x:/xxx/.., or even a blank test in the image Link Settings, I imagine you are trying to use mobilepay:// or magnet: or something similar, either way I believe that I can help with a script like this:

    //example only  
    (function($) {
      $(".example").each(function() {
        var link = $(this).attr('href');
        $(this).attr('href', 'mobilepay:' + link);
      });  
    })(jQuery);

    But I will need a bit more info, please link to your page with an exact use and explain what you want the link to point to, and how often this will occur, such as on one page only, or in one section only in every post, etc. The goal is to identify an exact class used and the situation, such as which pages, posts, etc. You would not want this running wild on your site.

    Best regards,
    Mike

    in reply to: Menu error #1275127

    Hi,
    Sorry for the very late reply, I see that you are still using v4.5.7, your login token is no longer active so I can’t check that you have created an Envato Token and are able to update the theme via the built-in updater, please try to update this way.
    Otherwise, we can help you update via FTP, if you include FTP access in the Private Content area and update the login token and link to your copy of the theme that you download from Theme Forest, just upload to DropBox or similar.

    Best regards,
    Mike

    in reply to: Image sizes in masonry gallery #1275126

    Hi,
    Sorry for the very late reply and thanks for the login, it looks like the masonry element is set to “Perfect Automatic Masonry”, this option uses the cropped images for the images that are extra high or wide, thus the images that are cropped to 1k. Please try the “Flexible Masonry” as All images get the same width but are displayed with their original height and width ratio
    I also note that your WordPress > Dashboard > Settings > Media > Media Settings > Image sizes > Large size is set to 9999px, which is ok to try to get the full size, but I believe that leaving the fields empty also allows for full size and doesn’t push the images though the cropping process which could change the quantity.

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply @ifranl, I don’t use Toolset myself but I recognize this issue and it seems to be related to the use of the_content() and get_the_content() and how Toolset & Enfold use them.
    The issue identified through collaboration with Toolset:

    To allow users design their content with Toolset Views, The Enfold Theme would have to provide a single function that gets the content, passes it over the the_content filter, and returns it or prints it on screen.
    Currently, all this things are happening directly inside the WordPress loop, not thru a function, which means that Enfold does not have a content “provider” as required by Toolset Views to detect and whitelist the source of content that a Content Template should replace.

    For v4.6 the filter avf_the_content was added:

    The filter itself would work, I am able to for example pass the_content() to it, which will allow people to design it in Content Templates.
    So yes, people could work with this by adding a custom code like the below to the theme when working with Toolset:

    function example_callback() {
    return the_content();
    }
    add_filter( 'avf_the_content', 'example_callback' );

    Apparently Toolset at one time had posted a “child theme” for their Enfold users on their support fourm with the correct filter ready to use. I didn’t find it, but I’m not a member, please check yourself.

    Best regards,
    Mike

    in reply to: Masonry Grid Issues #1275121

    Hi,
    Unfortunately, I believe the underlining issue is that your new posts don’t include the different images sizes that it should, as I pointed out above.
    This affects the different featured image heights and the “blurry” look of them, which is due to a small image is stretched to a larger size, because the larger size is not available.
    Did you get a chance to try disabling your plugins to find the one blocking the different image sizes from being included?
    You will need to upload a new featured image with each test to see which plugin is causing this issue, simply reloading the post won’t show the correction when it occurs. I hope that makes sense.

    Best regards,
    Mike

    in reply to: Masonry Blog Feed Question #1275074

    Hi,
    Thank you for the login, I added the first block of code above [css] to the WordPress > Customize > Additional CSS
    this is what changes the sort on the right, and I updated and added the second block of code to your WordPress > Appearance > Editor > Enfold > functions.php this is what changes the “All” on the left.
    This is the updated code:

    function custom_script() { ?>
        <script>
    (function($){
      $(document).ready(function(){
      	savvy = {
    UFCW5: function() {
      	$("#top.home #av-masonry-1 .av-masonry-sort").each(function(){
      		if ($('.av-sort-by-term .all_sort_button').hasClass('active_sort')) {
     $('.av-current-sort-title > span > span').text(function(index, text) {
        	return text.replace('All', 'UFCW5');
     });
     } else {
       
     }
      	});
    }
    };
    savvy.UFCW5();
    });
    $('.all_sort_button').on('click', function(){
    	setTimeout(function(){
    	savvy.UFCW5();
    	},5);
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    This seems to be working correctly, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Edit tab links to avoid accent issue #1275004

    Hi,
    Thank you for your patience, the dev team writes that this would not be able to be added to the core, but you can use a filter to adjust the tab section link, so for the example Préparation , the filter to add to your functions.php is:

    add_filter('avf_save_string_translated','avf_save_string_translated_mod');
    function avf_save_string_translated_mod($link){ 
    	if (strpos($link, 'prparation') !== false) {
    		return 'preparation';
    	}
    	else {return $link;}
    }

    you will note in the example the filter is looking for the text prparation , this is because at this point WordPress has already striped the é away. I tried to add a character conversion to the filter but I was not successful.

    Best regards,
    Mike

    in reply to: Masonry Blog Feed Question #1274768

    Hi,
    Sorry for the very late reply, first I would point out that you don’t have to have the current sort title showing on the left, changing to Yes, display sort options will remove this and only show the sort breadcrumbs on the right, but centered.
    2021-01-22_063338.jpg
    So assuming that you do want to keep the current sort title on the left, and change the “All” to “UFCW5” on the right, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home #av-masonry-1 .ufcw5_sort_sep,
    #top.home #av-masonry-1 .ufcw5_sort_button {
    	display: none !important;
    }
    a.all_sort_button > span > span {
    	font-size: 0 !important;
    }
    a.all_sort_button > span:before {
    	content: "UFCW5" !important; 
    }

    To change the “All” on the left when “UFCW5” is active we will need to add this custom script. Please try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $(document).ready(function(){
      	$("#top.home #av-masonry-1 .av-masonry-sort").each(function(){
      		if ($('.av-sort-by-term .all_sort_button').hasClass('active_sort')) {
     $('.av-current-sort-title > span > span').text(function(index, text) {
        	return text.replace('All', 'UFCW5');
     });
     } else {
       
     }
    });
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: SEO Tool Pagerangers shows dead links _wp_link_placeholder #1274673

    Hi,
    Unfortunately, we were not able to reproduce this error back in 2019, if you are experiencing something similar now please open a new thread and include an admin login in the Private Content area so we can investigate. Typically a good starting point is to disable all of your plugins and enable one at a time until the error occurs. Please also include the results of this test in your new thread.

    Best regards,
    Mike

    in reply to: Edit tab links to avoid accent issue #1274667

    Hi,
    Sorry for the late reply and good point, sorry I misunderstood. I have submitted this issue to the dev team for review and will reply when we hear back from the dev team. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Mailchimp stuck at sending #1274379

    Hi,
    Very good, we will keep this open until we hear back from you.

    Best regards,
    Mike

    in reply to: Custom Shop Page – Slide Show and White Space #1274377

    Hi,
    Very good, we will close this then. 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: Masonry Grid Issues #1274376

    Hi,
    Thank you for the feedback, I checked your new post and found that it doesn’t include the different images sizes that it should, as your older post does. Please see the screenshots in the Private Content area.
    I believe that a plugin is preventing the media upload from creating all of the “thumbnail” [image] sizes, I tried disabling some options in some of your plugins and tried uploading the featured image again but the new sizes don’t seem to have been created.
    I restored all of my changes from today’s test, please try disabling your plugins and reupload a test image until the images sizes are created.
    I suspect these plugins, based on their image settings:
    Autoptimize
    JetPack
    Compress JPEG & PNG images
    Lazy Load – Optimize Images
    Smash Balloon
    WP Rocket
    WPGeared Speed Optimization

    *If this setting is your intention and you would like to force the single post featured image to full view on desktop you could use this css:

    @media only screen and (min-width: 1440px) { 
    #top.single-post .fullsize .template-blog .big-preview img {
        height: 95vh !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Display Categories on Blog Post Overview Page #1274225

    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: Custom Shop Page – Slide Show and White Space #1274219

    Hi,
    Thank you for the feedback and the login, for this example please see the page in the Private Content area.
    I copied your shop page slider & widgets shortcode and added to this function in your functions.php file:

    add_action('ava_after_main_container', 'ava_after_main_title_mod');
      function ava_after_main_title_mod() {
    	  $cs_slider = do_shortcode("[av_slideshow_full size='no scaling' min_height='0px' stretch='' control_layout='av-control-default' src='' attachment='' attachment_size='' position='top left' repeat='no-repeat' attach='scroll' conditional_play='' animation='slide' transition_speed='' autoplay='true' interval='5' lazy_loading='disabled' id='' custom_class='' av_uid='av-jnzjz'][av_slide_full id='1017' slide_type='' video='https://' mobile_image='' fallback_link='https://' title='' video_format='' video_ratio='16:9' video_autoplay='' video_controls='' video_mute='' video_loop='' caption_pos='caption_bottom' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' custom_title='' custom_content='' heading_tag='' heading_class='' link_apply='' link='' link_target='' button_label='Click me' button_color='light' link1='' link_target1='' button_label2='Click me' button_color2='light' link2='' link_target2='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_uid='av-l2nmn'][/av_slide_full][av_slide_full id='1013' slide_type='' video='https://' mobile_image='' fallback_link='https://' title='' video_format='' video_ratio='16:9' video_autoplay='' video_controls='' video_mute='' video_loop='' caption_pos='caption_bottom' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' custom_title='' custom_content='' heading_tag='' heading_class='' link_apply='' link='' link_target='' button_label='Click me' button_color='light' link1='' link_target1='' button_label2='Click me' button_color2='light' link2='' link_target2='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_uid='av-1f81b'][/av_slide_full][av_slide_full id='1005' slide_type='' video='https://' mobile_image='' fallback_link='https://' title='' video_format='' video_ratio='16:9' video_autoplay='' video_controls='' video_mute='' video_loop='' caption_pos='caption_bottom' custom_title_size='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' custom_content_size='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' font_color='' custom_title='' custom_content='' heading_tag='' heading_class='' link_apply='' link='' link_target='' button_label='Click me' button_color='light' link1='' link_target1='' button_label2='Click me' button_color2='light' link2='' link_target2='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_uid='av-blh7z'][/av_slide_full][/av_slideshow_full]");
    	$cs_widgets = '<div class="customsection">' . do_shortcode("[av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='0px,10px,0px,0px' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='onethird' aria_label='' av_uid='av-wlvxj'][av_sidebar widget_area='Product Category' av_uid='av-avo7j'][/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' row_boxshadow_color='' row_boxshadow_width='10' margin='0px' margin_sync='true' mobile_breaking='' border='' border_color='' radius='0px' radius_sync='true' padding='0px,0px,0px,0px' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' highlight_size='1.1' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='onethird' aria_label='' av_uid='av-s9m5r'][av_sidebar widget_area='Price' av_uid='av-eio9b'][/av_one_third][av_one_third min_height='' vertical_alignment='' space='' row_boxshadow='' row_boxshadow_color='' row_boxshadow_width='10' custom_margin='' margin='0px' mobile_breaking='' border='' border_color='' radius='0px' padding='0px' column_boxshadow='' column_boxshadow_color='' column_boxshadow_width='10' background='bg_color' background_color='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' background_position='top left' background_repeat='no-repeat' highlight='' highlight_size='' animation='' link='' linktarget='' link_hover='' title_attr='' alt_attr='' mobile_display='' id='' custom_class='onethird' aria_label='' av_uid='av-s9m5r'][av_sidebar widget_area='Product Search' av_uid='av-ozlb'][/av_one_third]"). '</div>';
    	  if(is_product_category( )) {
    		  echo $cs_slider . $cs_widgets;
    	  }
      }

    In the shortcode I included custom classes and then added this css:

    #top .customsection {
    	width: 80%;
    	margin: auto;
    }
    #top .customsection > .flex_column_table:nth-child(1) {
    	margin-top: 50px;
    }
    #top .customsection > .flex_column_table {
    	width: 33% !important;
    }
    html {
    	background-color: #fff;
    }

    So this was meant to only show the slider and widgets on product category pages, which works, except it is also showing on your “shop” page and causing a conflict. Try removing changing your shop page back to the default to see if either this shows correctly or doesn’t show at all on the “shop” page, but does on the category pages. If it does we can adjust it further.

    Best regards,
    Mike

    in reply to: Mailchimp stuck at sending #1274054

    Hi,
    Thank you, in my tests, when the MailChimp form is summitted an error occurs: jquery.js?ver=1.12.4-wp:formatted:4206 POST https://www.your-domain.info/audioplayer/6064/
    so for some reason the audio plugin is firing when the mailchimp form is summitted, perhaps this is an issue that the audio plugin has a solution for, please try asking them if they have seen this before.
    2021-01-20_063742a.jpg
    when I follow the browser console error, it seems to point to a CORS related function:
    2021-01-20_071225.jpg

    Best regards,
    Mike

    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: Mailchimp stuck at sending #1273697

    Hi,
    Thank you, can you please try installing the jQuery Migrate Helper plugin and then test your Html5 Audio Player PRO plugin.
    If it still doesn’t work correctly I’ll test further.

    Best regards,
    Mike

    in reply to: Different font – full-width slider element #1273694

    Hi,
    Thank you for adding the screenshots, I see that in your screenshot the mega-menu is showing, but it is not for me:
    2021-01-16_044746.jpg
    which is strange, does your sandbox site use server caching, or any caching plugins? Could you try clearing them?

    Best regards,
    Mike

    in reply to: language flags mobile menu #1273340

    Hey melanie_erfrischt,
    Sorry for the very late reply and thanks for the link, please try this css to adjust the header items away from your logo on mobile.
    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: 430px) { 
    	#menu-item-shop .cart_dropdown_link {
        padding: 0 0 0 20px !important;
    	}
    	.responsive #top #wrap_all .container.av-logo-container {
        width: 100% !important;
        max-width: 100% !important;
    	}
    	.responsive #top #header_main > .container .main_menu .av-main-nav > li > a {
        padding: 0 0 0 10px !important;
    	}
    }

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

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I do not know if this worked before, but this does follow the long-standing WordPress image issue for images that are not “installed” will not show, such as images that are FTP into the file system and not uploaded though the “media library”. Perhaps you are aware of this issue and how it relates to your issue?
    So with this in mind, I asked if you were trying to “not” import the images with WP All Import and are relying on the URL to include the image, which would not work because you will also need the correct attachment ID, which means the image needs to be imported.
    Please review this WP All Import documentation on how to also import the images with WP All Import.
    I also note that your site is running WordPress 5.6, which has been reported to have 197 bugs, you could try to downgrade to WP v5.5 to see if this issue conteues, but I believe the correct solution is to include the images with your WP All Import.

    Best regards,
    Mike

    in reply to: Sidebar will not be shown #1273296

    Hi,
    Glad to hear that you have sorted this out, 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: Mailchimp stuck at sending #1273292

    Hi,
    Thank you for the feedback and for the clone login, I first tried to disable the WordPress Book List plugin but the Mailchimp form still didn’t work, I then disabled all of your plugins except the WP Mail SMTP which is used for sending the emails, then the form worked.
    I then tried enabling the Html5 Audio Player PRO plugin, based on the errors I saw earlier, and the form failed again.
    So it seems that it was the Html5 Audio Player PRO plugin, or one of the other plugins or a combination of plugins, please try activating the plugins one at a time and test the form between each one until the form breaks.
    Try saving the Html5 Audio Player PRO & WordPress Book List plugins for last in your tests, as I believe it’s one or both of these.

    Best regards,
    Mike

    Hey webWahine,
    Sorry for the very late reply and thanks for the login, the class header-scrolled is only added with some header setups, in your case the class av_header_transparency is removed on scroll, so I changed your css to this:

    .page-id-11 #header.av_header_transparency .logo,
    .page-id-44 #header.av_header_transparency .logo {
        display: none!important;
    }
    
    .page-id-11 #header:not(.av_header_transparency) .logo,
    .page-id-44 #header:not(.av_header_transparency) .logo {
        display: block!important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Edit tab links to avoid accent issue #1273163

    Hey albertgarduno,
    Sorry for the very late reply, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $(document).ready(function(){
      $('html[lang="fr-FR"] #av-tab-section-1 > div > div.av-tab-section-tab-title-container a:first').each(function(){
        var tabtitle = 'preparation';
        $(this).attr('href', '#' + tabtitle);
    
    });
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Shop Page – Slide Show and White Space #1273158

    Hi,
    Glad to hear this helped, for your white space try this css:

    #top.archive #after_full_slider_1 > div > div {
    	padding-bottom: 0 !important;
    }

    For adding your widget section above your product grid on archive pages, we could try to inject the element shortcode in the functions.php like this example:

      add_action('ava_after_main_container', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_woocommerce()) {
    		echo do_shortcode("[av_sidebar widget_area='Shop Overview Page']");
    	}
    }

    If you include your admin login in the Private Content area we could try to customize this for you.

    Best regards,
    Mike

    in reply to: Hotel demo #1272987

    Hey jakobl1976,
    Sorry for the very late reply, the Hotel demo demonstrates the WooCommerce Bookings plugin, which needs to be active to allow date based bookings.
    2021-01-16_183226.jpg

    Best regards,
    Mike

    Hey webWahine,
    Sorry for the very late reply, thanks for sharing your css but a link can not be added through css, I believe the link you are referring to is the burger menu hash link to open the menu, and not an additional link next to the menu.
    This script is an example that would create a link next to the burger menu

    function custom_script() { ?>
        <script>
        (function($){
      $(document).ready(function(){
    $('.av-burger-menu-main').append('<a href="/register/" class="register-link">Register</a>');
    $('a.register-link').css({ 'padding-left': '10px','font-size':'16px','display':'inline'})
    $('.av-burger-menu-main a').css({'display':'inline'})
    });
    })(jQuery);
    
        </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Try adding this code to the end of your functions.php file in Appearance > Editor and adjust the link to suit.

    Best regards,
    Mike

Viewing 30 posts - 14,971 through 15,000 (of 34,661 total)