Forum Replies Created

Viewing 30 posts - 17,371 through 17,400 (of 35,026 total)
  • Author
    Posts
  • in reply to: 'Latest News' widget – bulleted list? #1203939

    Hi,
    Glad to hear this worked for you, there are different list styles to try, please see this article
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Can't import Enfold 2017 demo #1203938

    Hi,
    Please see below.

    Best regards,
    Mike

    in reply to: Lightbox Title text when image is in a Text Block #1203933

    Hi,

    @ehquionest
    It looks like you posted your login details, but I don’t see the URL to your site, please include.

    Best regards,
    Mike

    in reply to: Customize product page #1203930

    Hi,
    I was able to login this time, to remove the padding & margin from the single product pages around the “Vous aimerez aussi” please try this css:

    .single-product .avia-section-small .content,.single-product .avia-section-small .sidebar {
        padding-top: 0px !important; 
        padding-bottom: 0px !important; 
    }
    .single-product .avia-section-small.container_wrap {
        border-top-style: none !important; 
        border-top-width: 0 !important; 
    }

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

    Best regards,
    Mike

    in reply to: make mega menu open by click. #1203589

    Hi,
    True, it looks like this was re-written and moved to \wp-content\themes\enfold\js\avia-snippet-megamenu.js
    on line 176

    megaItems.each(function(i){
    
    				$(this).hover(

    changing the “hover” to “click” should work, but there is also css that is opening the sub-menu on hover, and for my demo the parent items are also links so clicking them goes to the page instead of the open action. Are your parent items also links? I don’t believe this is going to work if you also want your parent links to work.

    Best regards,
    Mike

    in reply to: Thumbs not showing in archives #1203576

    Hi,
    It looks like your “portfolio” size, 495, is activate so they should regenerate.
    The Regenerate Thumbnails has the option to skip over images that already have correctly-sized thumbnails.
    2020-04-14_074934.png
    This should leave only the missing ones to regenerate.

    Best regards,
    Mike

    in reply to: Enfold Icons Not Appearing Across Site #1203573

    Hi,
    Thanks for the link, you are getting this error: Access to font has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
    because your font is loading from a temp URL https://secureservercdn.net did you just move to this domain, or did you just assign this domain? You will need to correct the url’s so they point to your domain.

    Best regards,
    Mike

    in reply to: Side bar showing on Woocommerce before description #1203570

    Hi,
    Thanks @Victoria, @Cherryadvertising glad this is helping, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Thanks for the link, I see your page is giving the error “jQuery is not defined” this typically means that your jQuery is loading in the footer, please check that the option Enfold Theme Options > Performance > Load jQuery in your footer is disabled. Some caching plugins also have this option so please check that these are also disabled. It also looks like you have the lazyload option enabled in the “wp-rocket”, please disable this, lazyload can lead to issues like you are experiencing.

    Best regards,
    Mike

    in reply to: Blog: Doesn' t show post navigation and related posts #1203562

    Hi,
    Please use the “social share” element:
    2020-04-14_070723.png

    Best regards,
    Mike

    in reply to: open lightbox from an anchor link #1203540

    Hi,
    I was able to make clicking on the “Bildergalerie” button open the lightbox after waiting 500ms, which seems to be just the right amount of time for the page scroll down to the section. I added a custom ID to your button so only this button triggers the action.
    I added this function to your child theme functions.php:

    function custom_adventure_script(){
    	?>
    	  <script>
    (function($){
      $(window).load(function() {
      $('#adventure a.avia-button.avia-icon_select-yes-left-icon').click(function(e){
      e.preventDefault();
      setTimeout(function(){
      window.location.href = "https://your-url/#slideshow-adventurer";
    
    	$('#slideshow-adventurer a').trigger('click');
    	  setTimeout(function(){
    	  $('button.mfp-arrow.mfp-arrow-right.mfp-prevent-close').trigger('click');
    		  }, 200);
    }, 500);
      });
      });
      })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_adventure_script');

    One issue I had was the slideshow always opened the last slide in the lightbox, so I added a second click on a delay to show the first image “Start your Adventure”
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change Woocommerce term for "Cart" #1203522

    Hi,
    You will need to use your webhost’s “file manager” then you can copy the “footer.php” to your child theme.
    2020-03-14_101810.png
    In the file manager go to your parent theme “enfold” and click once on the footer.php to select it, then click on the “copy” button, then a popup will allow you to enter the path to your child theme, I assume it’s “enfold-child”, just enter the correct path.
    2020-04-14_045256.png
    Otherwise, you can use FTP and download the footer.php from your parent theme and then upload to your child theme.

    Best regards,
    Mike

    in reply to: Customize product page #1203513

    Hi,
    Thanks, is the admin login URL and details in the Private Content area correct? The page doesn’t seem to load.

    Best regards,
    Mike

    in reply to: Assign a unique Section ID to the color section element #1203275

    Hi,
    Thank you for the login, but I’m unsure which page has the color section that is not saving the custom ID, please link to this page.
    So I checked a random page and saw your error in the backend Failed to initialize plugin: avia_builder_button, which looks like it is caused by nest-mootools.js which looks like it is related to this MooTools but I’m unsure which plugin is using this javascript. Have you tried to deactivate your plugins?

    Best regards,
    Mike

    in reply to: WooCommerce Shop Page Image Links #1203271

    Hi,
    Thanks for the login, but it seems to be a customer account and not an admin account where we can examine the backend.
    I found that the plugin adds another delay that can be corrected with this css:

    .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-already-on-wishlist.tinvwl-position-after.ftinvwl-animated {
        transition: all .0s ease-out!important;
    }

    Now there is still a slight delay, but I believe it is the javascript waiting for the masonry elements to be created before adding the “wish button”. It looks like your plugin is a premium plugin so I won’t be able to test this on a fresh install on my localhost, but this assumption seems reasonable.
    Please try adding this css and clear your browser cache and check to see if it is any quicker and also watch the masonry items being created and the last half-second as the buttons are created.

    Best regards,
    Mike

    in reply to: Social buttons images not showing #1203268

    Hi,
    It sounds like you have this sorted out now, except the UpdraftPlus error, which I assume is about UpdraftPlus trying to start a cron job and work in the background. Searching Google led to this answer & many others

    Best regards,
    Mike

    in reply to: Customize product page #1203267

    Hi,
    The line height should be similar to the height, you would not want a line height of zero even if the height is overriding it.
    It seems that I may have been logged in via a cookie before, but it must have expired, now I’m just seeing the maintenance page.
    Please include another login so I can see the page and assist.

    Best regards,
    Mike

    Hey CharlieTh,
    If you only want the sidebar wider, we might be able to do this with css.
    Please link to the page and explain what you would like to see.

    Best regards,
    Mike

    in reply to: Footer color #1203196

    Hey SaraMichelle,
    Please check the login details, as they are not working for me.
    It looks like your footer background color needs to be checked, perhaps an invalid value in your css.

    Best regards,
    Mike

    in reply to: Can't import Enfold 2017 demo #1203195

    Hi,
    Please ensure your PHP settings are like this:
    PHP Version: 7.x
    PHP Time Limit: No limit
    PHP Memory Limit: 256M
    PHP Post Max Size: 50M
    PHP Max Upload Size: 24M
    PHP ZipArchive Extension: enabled

    Some “WordPress Managed Hosting” have PHP security settings activated, please ask your webhost to check your PHP settings to see if the secure options are activated.
    “allow_url_fopen”, “allow_url_include” and “register_globals” are “off”
    Try turning these “on”.

    If these don’t help then please open a new thread and include an admin login & FTP access in the Private Content area and we will try a manual import, please note we will have to reset your site so all settings & content will be lost.

    Best regards,
    Mike

    in reply to: Thumbs not showing in archives #1203193

    Hi,
    Each of those images are using the original full-size image and not the 495 image.
    To regenerate the images you could try this plugin, but I recommend checking that the “portfolio” size is being created, try adding this code to the end of your functions.php file in Appearance > Editor:

     function your_thumbnail_sizes() {
    	global $_wp_additional_image_sizes;
    print '<pre>';
    print_r( $_wp_additional_image_sizes );
    print '</pre>';
    }
    add_shortcode('your-sizes', 'your_thumbnail_sizes');

    and then create a new page with this shortcode [your-sizes] to display the sizes.

    Best regards,
    Mike

    in reply to: Problem with image in sitemap with ALB and Yoast #1203188

    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: Anchor Links #1203186

    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: Set no index to portfolio items #1203180

    Hey peterolle,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

      function add_custom_meta(){
    	if (is_singular('portfolio')){
    	?>
    	<meta name='bingbot' content='NOODP NOARCHIVE, NOINDEX'>
        <meta name='ROBOTS' content='NOINDEX, NOARCHIVE, NOODP, NOYDIR'>
        <meta name='GOOGLEBOT' content='NOINDEX, NOARCHIVE, NOODP'>
    	<?php
    	} else {}
    }
      add_action('wp_head', 'add_custom_meta', 1);

    Best regards,
    Mike

    in reply to: Image not showing on website #1203172

    Hi,
    The custom animation for is not being triggered and I don’t see any errors, so I believe it would be a matter of editing the javascript that triggers the wpb_animate_when_almost_visible but this could be a big job. I recommend this css because it targets the one page, you will still not have the animation on this page, but at least it is only one page.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-149 .wpb_single_image.wpb_animate_when_almost_visible {
    	opacity: 1;
    }

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

    Otherwise, you could re-generate the shortcode in the “Visual Composer” builder and ensure you don’t have any animation enabled. This should change the class wpb_animate_when_almost_visible

    Best regards,
    Mike

    in reply to: Custom background color on product category description #1203171

    Hey PT0060,
    I believe that you want to change the background color of the product description tab:
    2020-04-12_164752.png
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single-product .woocommerce-Tabs-panel--description,#top.single-product #tab-title-description {
    	    background-color: #777777;
    }

    please adjust the color to suit.
    2020-04-12_164901.png
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Thumbs not showing in archives #1203169

    Hey peterolle,
    Thanks for the links, I notice that it seems your image size 495px has been removed, your images are leading to a 404
    It looks like only your original image and two sizes are posted with each image, but your category pages only use the size that is removed.
    2020-04-12_161814.png

    Best regards,
    Mike

    in reply to: make mega menu open by click. #1203168

    Hi,
    Sorry for the late reply, the avia.js file is at /enfold/js/avia.js

    Best regards,
    Mike

    in reply to: Strange scroll behavior with iframe #1203163

    Hey Grobi,
    Sorry for the late reply, I’m not sure what is causing this but your iframe looks like it is part of a plugin, is it?
    You can link to your page with #top at the end of your link like the link in the Private Content area and the page won’t scroll down.

    Best regards,
    Mike

    in reply to: Problem with image in sitemap with ALB and Yoast #1203159

    Hey Claudia,
    Sorry for the late reply, please see this thread

    Best regards,
    Mike

Viewing 30 posts - 17,371 through 17,400 (of 35,026 total)