Forum Replies Created

Viewing 30 posts - 16,621 through 16,650 (of 35,063 total)
  • Author
    Posts
  • in reply to: Anchor problems with menu highlight #1224881

    Hi,
    Strange, it’s not working for me either today, So for logged in users the menu links don’t flicker, but when logged out they do.
    I see your Comet Cache is set to not cache logged in users, so logged out users are seeing the cache, but we have cleared it many times, so is there anything else that is set to be different for logged out users? Perhaps a script or plugin?
    If it’s not the cache perhaps something else is causing this. Do you have a script or plugin that is watching for a “scroll” event?

    Best regards,
    Mike

    in reply to: Accessibility – Skip Navigation #1224869

    Hi,
    I assume that the solution above worked because we didn’t get any feedback. I tested this again and it seems to work fine.
    Please link to your page so we can see what you have so far.

    Best regards,
    Mike

    in reply to: Advice on accessibility for masonry grid images #1224859

    Hi,
    I tested our masonry gallery demo page on the Wave tool but I only got alerts for “Null or empty alternative text” but no “Empty Link” errors even though they are empty. Yet your page does get this error for the same layout?

    According to this solution, we should be able add an aria-label attribute to the <a> element instead of adding text.

    Best regards,
    Mike

    Hey Jorge,
    Sorry for the late reply, I tested this solution, and it worked on my shop page for the category “uncategorized”.
    This looks like the same solution you tried and when I check your shop page I don’t see any items from the “come2mexicancaribbean” category.
    Which items are you seeing that should not be there?

    Best regards,
    Mike

    in reply to: Demo import problem #1224598

    Hi,
    Glad to hear you have this sorted out, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Tab section content 100% height #1224594

    Hey manjii,
    Sorry for the late reply and thanks for the link, it looks like your tab section height is about 100% high, but I don’t know what you mean by “I would like the title stick to the bottom like a footer.” Please demonstrate with a screenshot so we can understand better.
    You can add screenshots by uploading your images to a service such as https://savvyify.com/img/ and pasting the html code, or link given in your post or Private Content area.

    Best regards,
    Mike

    in reply to: Anchor problems with menu highlight #1224591

    Hi,
    Thanks for the feedback, so I logged into companypartners and cleared your site cache, again, and did a “hard reload” and then logged out cleared your cache again with another “hard reload” and now your menu doesn’t flash on scroll.
    I didn’t do anything different this time but it seems that now the cache is clear, please give this a try and see if you can get the same results.

    Best regards,
    Mike

    in reply to: Advice on accessibility for masonry grid images #1224583

    Hi,
    Your script to remove the title attributes “on hover” is actually just removing the title attributes on page load and thus causing your “Empty Link” error. Please remove this script and test.
    After testing to ensure this error is corrected, if you want to remove the title attributes “on hover” then try this script instead:

      function remove_title_attr_on_hover(){
    	?>
    	 <script>
    	(function($){
    	  $(".av-masonry-image-container").hover(function(){
    		$(this).removeAttr("title");
    	  });
    		$("#wrap_all img").hover(function(){
    		$(this).removeAttr("title");
    	  });  
    	   $("#wrap_all a").hover(function(){
    		$(this).removeAttr("title");
    	  });    
    	})(jQuery);
    	 </script>
    	<?php
    	}
    	add_action('wp_footer', 'remove_title_attr_on_hover');

    Best regards,
    Mike

    in reply to: CSV section dividers #1224576

    Hi,
    We have many features being developed, but we don’t have a time frame for these. Thanks for your patience.

    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

    Hey macmutsaers,
    Sorry for the late reply and thanks for the login and links. I found that the visibility options looks for the class av-no-preview in the document but the class is not being added to your page. Typically this occurs when an out-of-date header.php is used in a child theme. I see you have a child theme but your theme editor is disabled so I can’t see if you are using an old header.php, please check and test by renaming your child theme header.php to header.php.old, this will allow the current parent theme header.php to load.
    After doing this Please clear any cache plugin and your browser cache a couple of times and check.

    Best regards,
    Mike

    in reply to: HIDE Restricted Posts (RCP) #1224462

    Hey Rhodo,
    Sorry for the late reply and thanks for the link, I see that some of your masonry items have the classes rcp-is-restricted rcp-no-access, so with the plugin identifying which items to hide we can use this css:

    .rcp-is-restricted.rcp-no-access {
    	display: none;
    }

    Now you want to show these items to some users, so lets add the user role to the body as a class,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_role_to_body($classes) {
    	global $current_user;
    	$user_role = $current_user->roles;
    	return array_merge( $classes, array( $user_role[0] ) );
      }
      add_filter('body_class','add_role_to_body');

    So now you can choose which user type can see the content via css classes, such as administrator like this:

    .rcp-is-restricted.rcp-no-access {
    	display: none;
    }
    #top.administrator .rcp-is-restricted.rcp-no-access {
    	display: block;
    }

    Please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to show reviews on product page #1224460

    Hey callum18,
    Sorry for the late reply and thanks for the login, I investigated your issue and found that you have disabled the product tabs with a function so the tab for the product reviews is not created and the element is not shown.
    But I found that we have a built-in shortcode to display the product reviews and form: [av_product_review]
    So I added this shortcode to your short description for the product you linked to, now the form shows below the description.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Advice on accessibility for masonry grid images #1224458

    Hey Rob,
    Sorry for the late reply, as I understand your issue, the Masonry Gallery is getting an error notice saying “Empty link: a link contains no text” on each image from an accessibility compliance test.
    In my test I found if you can use “Display neither” for the caption and enter the title for each image and it will show as a “title” attribute on the link and the background image container.

    So to enter the titles, edit your Masonry Gallery element and “edit the gallery” then click on each image to add the titles.
    edit_title_gallery_image.png
    Here you can see the title attributes:
    2020-06-21_192507.png
    Please try this and let us know if it passes your accessibility compliance test.

    Best regards,
    Mike

    in reply to: Wrong portfolio category displaying in breadcrumbs #1224455

    Hi,
    Glad to hear this helped and thanks for the kind words. 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: How to get content to overlap with one another? #1224451

    Hi,
    Sorry for the late reply, thanks for the link to your page but it looks like it was created with the WPBakery plugin so I can’t explain step-by-step, but typically you would try different values until you were satisfied. So 15% is not enough, but 25% is too much, correct?
    Please also note that lower sections are typically on top unless you change their z-index.

    Best regards,
    Mike

    in reply to: Kriesi site blocking locality? #1224446

    Hi,
    Sorry for the late reply, we are not sure why you are experiencing this, I did find that our IP is on an email spam blacklist, so perhaps we are on others and perhaps your ISP is using one of these? I’m guessing, but we have not been able to reproduce this.

    Best regards,
    Mike

    in reply to: Change Shipping to Delivery #1224443

    Hey dinmix,
    Sorry for the late reply, I have tested this function on my localhost and it worked correctly in the Cart and Checkout page. Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter( 'woocommerce_shipping_package_name' , 'woocommerce_replace_text_shipping_to_delivery', 10, 3);
    function woocommerce_replace_text_shipping_to_delivery($package_name, $i, $package){
        return sprintf( _nx( 'Delivery', 'Delivery %d', ( $i + 1 ), 'shipping packages', 'put-here-you-domain-i18n' ), ( $i + 1 ) );
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Wrong portfolio category displaying in breadcrumbs #1224442

    Hi,
    Thank you for the login, so to correct the breadcrumbs for your portfolio items please note this option in the editor sidebar:
    2020-06-21_153841.png
    From your “T” page the second portfolio item is “J & W”, an item from the “T” category and as you said, from your “T” page the breadcrumbs on the portfolio item “J & W” is Home > T > J&W this is correct so far, now from “J & W” if you click the button to the sister page in the “I” category the breadcrumbs still show the “T” because we were in a “T” category item when we clicked the button.
    So what I did for the “I” category item that showed the wrong breadcrumbs was to set the breadcrumbs option above, now no matter how you land on the “I” category item the breadcrumbs will show “I”

    I believe you only need to set this option on the “I” category items because I don’t see any buttons on those items going to “T” items. As for your menu highlighting, this may correct itself if you go back to the standard menu items, otherwise we can change with css.

    Best regards,
    Mike

    in reply to: Mega Menu :: Hamburger :: One at a time #1224436

    Hi,
    To have a different mobile menu, try creating a mobile menu and then go to Enfold Theme Options > Main Menu > Alternate Menu for Mobile and choose your new menu.
    2020-06-21_142247.png
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Hi,
    Glad to hear, you should be all set, shall we close this then?

    Best regards,
    Mike

    in reply to: MFP: second close button / function #1224434

    Hi,
    To add a second close button to the mfp popup, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($) {
      $(window).click(function(){
      $( ".mfp-figure button" ).clone().css({'margin-top': '30px'}).appendTo( ".mfp-bottom-bar .mfp-counter" );
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Unfortunately, this will work site-wide because the mfp container is at the very top of the page after the body tag and doesn’t include any attributes of the element being opened, so while you can define the page it will work on, you can’t define the element it will work on. So for your one-page site with many mfp popups, this might not be what you are looking for.
    Perhaps your application of the mfp as an overlay is adding attributes or classes to the container and the above script could be modified to work only for those.
    Are you using a custom script or adding the mfp-hide class to the elements?
    Please link to your page so we can see what you have so far and how to target only the element you wish in the popup.

    Best regards,
    Mike

    in reply to: Mega Menu :: Hamburger :: One at a time #1224359

    Hey MrPoBoi,
    Sorry for the late reply, I have taken a look at this using the 2017 Demo, and the issue I find is that the siblings and parents do not retain the same structure as the other menu items and is difficult to transverse because what appears to be a sibling is actually the child of a different parent.
    Perhaps if we can see your menu we can find another solution.

    Best regards,
    Mike

    in reply to: Colour Section Background Video #1224334

    Hey lifefitnessnz,
    Sorry for the late reply, so if you leave the YouTube video playing long enough it will eventually play a “up next” video. Unfortunately, this is under the control of YouTube and they have removed the URL options to only play videos from one channel.
    But since this is occurring only after long visits do you believe any of your visitors are experiencing this?

    Another option is to self-host the videos instead of using YouTube.

    Best regards,
    Mike

    in reply to: Knowledge Base icon not provide in the template #1224333

    Hi,
    Unfortunately not.

    Best regards,
    Mike

    in reply to: Change Content When Hovering Over a Grid Cell #1224332

    Hi,
    a) you can use media queries to size the fonts, like this:

    @media only screen and (max-width: 375px) { 
    #main a > h3.av_icongrid_title.icongrid_title {
    	    font-size: 36px !important;
    }  
    }

    b) please see this screenshot that shows adding the link to the advanced tab, then the whole cell is a link.
    2020-06-19_091441.png

    Best regards,
    Mike

    in reply to: Custom Icons #1224329

    Hey havi,
    Sorry for the late reply, when downloading Icon Packs from Flaticon, try extracting the zip and copying the folder “font” to a new location and zipping into an archive and then upload to the “Iconfont manager” in the import option tab.
    Here’s what should be in your new zip file:
    2020-06-20_205751.png
    I tested this with this icon pack.
    Please note that iconfonts can only be in black & white, color will not work.

    Best regards,
    Mike

    in reply to: Portfolio grid last picture falls out of the grid #1224328

    Hey Tobias,
    Sorry for the late reply and thanks for the login and link to page. So for some reason, the last image is the wrong thumbnail, please see the two links in the Private Content area. We can correct with this script, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("#top.page-id-54732 .grid-entry.post-entry-last img").attr("src","https://engelswimpern.de/wp-content/uploads/trainers_evelyn_k-1-300x300.png");
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: CSV section dividers #1224327

    Hi,
    Sorry for the late reply, I believe this was a concept page that was never completed, our color sections do not use SVG and WordPress doesn’t support it by default. Our borders use this css:

    .avia_transform .av-extra-border-element.border-extra-diagonal .av-extra-border-inner {
        top: 250px;
        right: 0;
        width: 110%;
        height: 100%;
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
        position: absolute;
    }

    Unfortunately, the person that started this page is no longer with us, so I’m not sure what the compete solution was.

    The dev team has many exciting things in the works, but it takes some time to work them out.

    Best regards,
    Mike

    in reply to: MFP: second close button / function #1224326

    Hey eee_lala,
    Sorry for the late reply, to move the close button, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    div.avia-popup .mfp-close {
        top: 100% !important;
    }

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

    Best regards,
    Mike

Viewing 30 posts - 16,621 through 16,650 (of 35,063 total)