Forum Replies Created

Viewing 30 posts - 11,311 through 11,340 (of 34,910 total)
  • Author
    Posts
  • in reply to: Enfold 5.x new features documentation #1357481

    Hey blaircomm1,
    Thanks for your question, unfortunately, we have not finished the specific documentation about the new features yet, to test the new demo I recommend setting up a localhost test site or a sub-domain test site and importing the demo to evaluate. We don’t recommend trying to import a demo to your live site as it will overwrite some of your settings.
    In this thread we helped explain that in the new parallax demo many of the elements are using padding and margin to achieve some of the effects, perhaps this will help.

    Best regards,
    Mike

    in reply to: can't update post #1357478

    Hi,
    Glad Yigit 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: Widget editor looks differernt #1357474

    Hi,
    Glad Ismael 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

    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: Unfix iframe aspect ratio #1357469

    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: Picture Tag with plugin imagify #1357468

    Hi,
    Thanks for sharing this Guenni007, it will be helpful with future questions where the user is using an older device and Safari.

    Best regards,
    Mike

    in reply to: Change post layout #1357443

    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: ajouter un bouton "lire plus" #1357438

    Hi,
    As I understand your question, you would like to use a text element and show only part of a paragraph with an option to expand it to show the rest, unfortunately we don’t have a built-in option for this, as Nikko pointed out you could try the accordion element.
    Another option would be to try the WP-ShowHide plugin and use it’s shortcode in your text element to wrap the part of the paragraph you wish to expand.
    Please give this a try.

    Best regards,
    Mike

    in reply to: Change post layout #1357434

    Hi,
    Thanks for the feedback, I see that you are getting this error: Uncaught ReferenceError: jQuery is not defined typically this means that you are loading jQuery in your footer, try this script instead in your child theme functions.php

    function article_categories_before_read_more() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    $('article.post-entry').each(function() {
    $( this ).find('.blog-categories.minor-meta').insertBefore($(this).find('.read-more-link'));
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'article_categories_before_read_more');

    Best regards,
    Mike

    in reply to: Change post layout #1357393

    Hey Antonio,
    Thank you for the link to your site and the screenshot, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function article_categories_before_read_more() { ?>
      <script>
    (function($){
    $('article.post-entry').each(function() {
    $( this ).find('.blog-categories.minor-meta').insertBefore($(this).find('.read-more-link'));
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'article_categories_before_read_more');

    Best regards,
    Mike

    in reply to: iframe full height #1357392

    Hi,
    You have two errors, first your origin url is not wrapped in commas like the code I corrected above,
    you have: if(evt.origin !== https://www.your.site) return ;
    it should be: if(evt.origin !== 'https://www.your.site') return ;
    second error is that you are still using the jQuery statement for the iframe.height
    you have: iframe.height = ${evt.data.resize.height}
    it should be: iframe.height = evt.data.resize.height;
    So it looks like you are using the old code instead of the corrected code.
    If the code on your page backend is the new code I posted then you should try clearing your server cache, if it is an object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. then it is still using the old page.
    Please review this code, note that the urls are not your so you will need to adjust.

    <iframe id="nw-kokonaistarjooma" style="width: 100%; border: none; margin: 0; padding: 0;" src="https://www.your.site/index.html"></iframe>
    
    <script>
    (function() {
    const iframe = document.querySelector('iframe#nw-kokonaistarjooma');
    window.addEventListener("message", evt => {
    if(evt.origin !== 'https://www.your.site') return ;
    if(evt.data.resize) {
    iframe.height = evt.data.resize.height;
    }
    });
    }());
    </script>

    Best regards,
    Mike

    Hey staffordhrconsulting,
    Thanks for the link to your page, I see inside the tab sections you are using two equal height columns with middle alignment, please choose top alignment so the image will be at the top and not the middle.
    You need to make this adjustment in the first column in each tab section.
    2022-07-05_001.jpg

    Best regards,
    Mike

    in reply to: iframe full height #1357338

    Hi,
    It looks like the same code I posted, did you check to ensure that the quotes didn’t turn into curly quotes when you copied the code?
    Otherwise, I will need to see a test page to see if you have any errors, as you noted this is working on my test page.

    Best regards,
    Mike

    in reply to: Unfix iframe aspect ratio #1357337

    Hi,
    Thanks for the feedback, try adding this css to move the close “X” down and to the left and add a circle around it:

    div.avia-popup .mfp-iframe-scaler .mfp-close {
        top: 43px;
        border: 1px solid #fff;
        right: 40px;
    }

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

    Best regards,
    Mike

    in reply to: iframe full height #1357326

    Hey tammiviestinta,
    Thanks for posting your code block snippet, but your javascript has errors and the iframe had the height set to auto with inline css, below is the corrected script and the link to my test page.

    Best regards,
    Mike

    in reply to: Picture Tag with plugin imagify #1357275

    Hi,
    Thanks for pointing this out. As for the topic of supporting this plugin, I believe it is beyond the intended scope of our support, I would recommend directly using the webP images instead.

    Best regards,
    Mike

    in reply to: sticky burger menu mobile/Ipad version #1357273

    Hi,
    Sorry I thought the menu and search icon being stacked was an error, I returned it to the way it was and I made the mobile logo disappear on the mobile version only, when scrolling.
    Please check.

    Best regards,
    Mike

    in reply to: Picture Tag with plugin imagify #1357270

    Hi,
    Thanks, as I understand the plugin does this as a bulk operation so the user doesn’t need to individually change each image on the site to auto created webP images.

    Best regards,
    Mike

    in reply to: Picture Tag with plugin imagify #1357245

    Hi,
    Guenni007 thanks for your example page and input, while Enfold does support direct use of webP, Chris_85 is not tring to do this, he wants to use the Imagify plugin that replaces the <img> tags with <picture> tags and then shows webP images, instead of just directly using the webP in the current <img> tags.

    Best regards,
    Mike

    in reply to: Support #1357238

    Hi,
    Glad Nikko was 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: Include JavaScript in the head #1357200

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: Mobile logo adjust #1357198

    Hi,
    Glad Nikko was 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,
    Thanks, now I’m getting an error “Google reCAPTCHA verification failed” but I don’t see a reCAPTCHA prompt on the login screen.
    To recap the issue, the easy slider and full-screen slider work fine on other pages, just not on the homepage.
    On the homepage images don’t appear and you are having trouble removing the sliders?
    Please check if you have added any html tags in the slider captions or titles, if you have unclosed tags then it could case this issue and sometimes you won’t be able to remove the element and save the page, it will just keep showing it.
    Try removing the slider completely and save the page then view the frontend, not the preview, and then try to edit again, is the slider still there?
    If not try adding a new image with no title or caption and see if that works.

    Best regards,
    Mike

    in reply to: Nofollow to buttons and images #1357196

    Hi,
    Very good, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Line break for tab section titles #1357194

    Hi,
    Guenni007 thank you for sharing :)
    peterolle glad that this helped, 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: Different header mobile #1357186

    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: full screen slider not working and wont delete either #1357157

    Hi,
    Please check the link to the login page, I’m seeing this so I can’t login:
    2022-07-03_008.jpg

    Best regards,
    Mike

    in reply to: broken fonts #1357153

    Hi,
    If you would want this for all H2 heading then make the choice at Enfold Theme Options ▸ Advanced Styling ▸ H2
    2022-07-03_007.jpg

    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

    Hi,
    Guenni007 thank you for sharing and explaining.

    Best regards,
    Mike

Viewing 30 posts - 11,311 through 11,340 (of 34,910 total)