Forum Replies Created

Viewing 30 posts - 14,941 through 14,970 (of 34,655 total)
  • Author
    Posts
  • 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: MODIFICATIONS NOT POSSIBLE ON PAGE #1276318

    Hi,
    Sorry for the late reply, you can make templates of your page to reuse on other pages:
    2021-01-29_081131.jpg
    But please note that if you make a template that contains an html error, like the one you have with the strong tags above, the template will also reproduce the error.
    So while you are trying to correct your errors I recommend rebuilding your pages from scratch.

    Best regards,
    Mike

    in reply to: Grid row + Diagonal border? #1276312

    Hi,
    Sorry for the very late reply, I believe that you can add a diagonal border between grid rows with this solution.
    The border that this creates is an “arrow”, but give this a try and if it works for your design we can try to change it to a diagonal border, if you wish.

    Best regards,
    Mike

    in reply to: Gallery with a menu for a category #1276283

    Hi,
    Glad to hear, 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: Help with Product H-Tags #1276281

    Hi,
    Yes, correct, this is what you did.
    For the font, please include an admin login in the Private Content area so we can take a look.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I found a function to allow file:/// , I tested it on my localhost with a text link and it was showing on the front end.
    I also found that you need five slashes at the front. The protocol is “file:///” … with three(not two)slashes. The next two slashes are the beginning of the UNC path.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function rh_allow_file_protocol( $protocols ) {
        $protocols[] = 'file';
        return $protocols;
    }
    
    add_filter( 'kses_allowed_protocols', 'rh_allow_file_protocol' );

    Best regards,
    Mike

    in reply to: Help with Product H-Tags #1276061

    Hi,
    For the font 404 errors, it looks like this code is added to your header: @font-face { font-family:helveticabold;src:;font-display: swap;}
    are you using the theme version of helvetica or are you adding it in your css or functions.php?
    As for the H6 & SEO, Google does recognize the change in the DOM to the tags, so this would work. Making the change manually would be best, but since it is on 500+ products, making the change with jQuery is what I would recommend.

    Best regards,
    Mike

    *It looks like Guenni007 and I were posting the same code at the same time 😂, thanks to Guenni007 for this code posted a while back 👍

    Hi,
    Very good, we will leave this open to hear back from you when you get a chance to check this.

    Best regards and have a great day,
    Mike

    in reply to: Mailchimp stuck at sending #1276053

    Hi,
    Thank you for the feedback, that is nice of the plugin author to offer to make changes for your site. We are expecting to release the next update by the end of Jan, I would recommend testing this version and WP 5.6 with the Mailchimp features and the Html5 Audio Player PRO plugin and all of the other plugins deactivated on your testing clone to see if this continues.

    Best regards,
    Mike

    in reply to: Masonry Grid Issues #1276046

    Hi,
    I see, if you can make a staging copy please do, it would be better than testing on your live site.

    Best regards,
    Mike

    in reply to: Gallery with a menu for a category #1275800

    Hi,
    Sorry for the very late reply, I would recommend trying the Portfolio Grid element, you would need to create a portfolio item for each image, the Portfolio Grid allows sorting and lightbox viewing of the image. You can also have the images link externally if you use the override link option in the portfolio items. The title that shows below the items can be hidden with css, if you wish.
    I recently assisted with a similar thread were a plugin Portfolio Gallery was the solution because WordPress doesn’t assign categories or tags to media items to allowing sorting. I understand that you don’t want to use another plugin, but I thought I would point this out.

    Best regards,
    Mike

    in reply to: Add/edit links using WPML #1275794

    Hi,
    Your welcome, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Help with Product H-Tags #1275790

    Hi,
    Thank you for the link, try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_h6_tabcontainer_script() { ?>
        <script>
    (function($) {
      $(document).ready(function(){
        function replaceElementTag(targetSelector, newTagString) {
          $(targetSelector).each(function(){
            var newElem = $(newTagString, {html: $(this).html()});
            $.each(this.attributes, function() {
              newElem.attr(this.name, this.value);
            });
            $(this).replaceWith(newElem);
          });
        }
        replaceElementTag('#top.single-product .tabcontainer.sidebar_tab_left .tab_inner_content > h6', '<p></p>');
      });
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_h6_tabcontainer_script');

    This should only work if your single products have a tab container with a left sidebar and the inner container has an H6, this should be specific enough to not conflict with any other H6’s on your site, but please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add/edit links using WPML #1275763

    Hi,
    Sorry for the very late reply and thanks for the screenshot. To edit the links for your translation or to add more links that is not in the original text, you will need to edit the “translation” post manually. Please see this documentation.

    Best regards,
    Mike

    in reply to: Image sizes in masonry gallery #1275757

    Hi,
    Glad to hear this is helping for the new uploads, to correct the other ones you will need to re-upload the images, I recommend uploading them with a slightly different file name.

    Best regards,
    Mike

    Hi,
    Thank you for the video, please see below.

    Best regards,
    Mike

    in reply to: Blog pagination – doesn't open page 1 #1275500

    Hi,
    Thank you for the feedback and the login, I see that you are using the Blog element with pagination, I tested this situation with our beta version of our next update and the pagination links back to the first page. We expect the next update to be by the end of the month, so I recommend waiting until then, thank you for your patience.

    Best regards,
    Mike

    Hey DeMamp,
    Thank you for the mockups, this looks like a background-position issue, try checking that the background image “background-position” is centered.
    If your background image is too small for desktop then this would not help, you would need to try a larger background image for all screen sizes or display a different larger background image for desktop size via css media queries.

    Best regards,
    Mike

    in reply to: Help with Product H-Tags #1275475

    Hey Mohamad,
    We could change the H6 to “p” with jQuery, this would change the tag in the DOM (on page load), Google will recognize this but some SEO tools that only check the source code might not recognize this. If you want to change the H6 in the source code you will have to manually change the tags.
    Please link to one of your product pages with the H6’s to change so I can examine the elements and write a script.

    Best regards,
    Mike

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

    Hi,
    Not exactly, in my tests with the beta, by the time the text is in the filter the é has already been removed, so using regex to replace the é , or any non ASCII character won’t work, thus the searching for the word missing the character prparation in the filter above.
    But the I am encouraged by the update notes, posted above, because the beta I’m testing with is not the final version.

    Best regards,
    Mike

    in reply to: Masonry Grid Issues #1275266

    Hi,
    Thank you, as I understand the blurry issue, this only occurs on the two posts you linked to above? I compared these to /best-restaurants-in-lahore/ and I’m not sure that I see the blurry, /backpacking-pakistan/ looks like it has an overlay so it looks darker than /best-restaurants-in-lahore/, but I would not say blurry.
    /what-to-wear-in-pakistan/ does look grainy, but it’s a smaller image stretched to fit, which would be sorted out once the different images sizes are restored.

    Best regards,
    Mike

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

    Hi,
    Very good, the dev team has also added two new filters in the next update:

    added: filter ‘avf_tab_section_link_hash’: filter hash value for ALB tab section (e.g. replace non ASCII with custom value instead of removing)
    added: filter ‘avf_valid_href’: allows to replace invalid removed characters

    The filter above should continue to work, or you could use this filter with v4.8:

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

    We believe the next update will be around the end of Jan.

    Best regards,
    Mike

    in reply to: Woo Commerce Description NOT showing up #1275245

    Hi,
    Thank you, I checked the /grocery-delivery/ page and a single product page /the-butcher-special/ and adjusted the css for ul & li in the excerpt, that would not normally show. The excerpt also wanted to show a “read-more” link that I didn’t think you wanted to show.

    .avia-product-slider1 > .avia-content-slider-inner > .products .inner_product_header_cell ul li,
    .related.products > .products > .product .inner_product_header_cell ul li {
        width: 100% !important;
        margin: 0 0 0 17px !important;
        list-style: disc outside !important;
    }
    .avia-product-slider1 > .avia-content-slider-inner > .products .inner_product_header_cell > p,
    .related.products .inner_product_header_cell > p{
    	display: none !important;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Woo Commerce Description NOT showing up #1275142

    Hi,
    Sorry for the very late reply and thanks for the login, I see that your descriptions in include html and the the_excerpt strips html.
    I believe this function works: Allow HTML Tags in WordPress Excerpts please try adding this to your child theme functions.php

    Best regards,
    Mike

    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

Viewing 30 posts - 14,941 through 14,970 (of 34,655 total)