Forum Replies Created

Viewing 30 posts - 751 through 780 (of 33,013 total)
  • Author
    Posts
  • in reply to: Toggle does not close #1455674

    Hey jenscasper,
    On the page that you linked to I see the javascript error: Uncaught Error: Syntax error, unrecognized expression: #F%C3%B6rderverein
    I believe that this is due to your menu links using `accents’ over the letters in the link URL: Förderverein
    it is ok for the text in the link to use this, but not the link because the HTML code for the `accents’ is like this: #F%C3%B6rderverein

    Best regards,
    Mike

    in reply to: Correct images not displaying in tabs #1455637

    Hi,
    Thank you for the link to your site, WordPress shows the images based on the attachment ID, it looks like all of your images use the same attachment ID attachment=’990′. perhaps you copy & paste the same code for each one, which is this one:
    Enfold Support 6143
    please review your image shortcode and correct the attachment IDs or remove the attachment=’990′ from each one, I did the first one for you, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Fullwidth Submenu – Onepage Dotsmenu #1455620

    Hey Daniela,
    I recommend creating a dotsmenu as described in our documentation and create the simple custom menu in the element:
    Enfold Support 6135
    with the custom class dotsmenu:
    Enfold Support 6137
    then to use entypo-fontello icons, go to your icon element and hover over the icons that you want to use and the chrcode will show, always drop the first “U”, so the code that you will use for this screenshot will be \e804
    Enfold Support 6139
    Then use this css, at teh bottom you will see the six icons for the six menu items in my example, add more if you wish:

    #top .dotsmenu {
      background: transparent;
      position: fixed!important;
      right: 10px;
      top: 50%!important;
      transform: translateY(-50%);
      border: none!important;
      max-width: 30px!important;
    }
    
    #top .dotsmenu .av-subnav-menu > li {    
        display: inline!important;
        margin: 10px !important;
    }
    
    #top .dotsmenu .av-subnav-menu li a {
      max-width: 40px;
      max-height:45px;
      border-radius:0; 
      overflow:hidden;
      padding: 0 !important;
      border: none!important;
      background: transparent;
    }
    
    #top .dotsmenu .av-subnav-menu li a .avia-bullet {
      display: none !important;
    }
    #top .dotsmenu .av-subnav-menu li a .avia-menu-text { 
    visibility: hidden;
    }
    
    @media only screen and (max-width: 767px) {
    .responsive #top .dotsmenu {
      background: transparent;
      position: fixed!important;
      right: 0;
      top: 50%!important;
      transform: translateY(-50%);
    }}
    #top .dotsmenu .av-subnav-menu li a:before {
     display: inline-block !important;
     font-size:30px;
     color: #fff;
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(1) a:before {
      content: '\e804';
      font-family: 'entypo-fontello';
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(2) a:before {
      content: '\e82a';
      font-family: 'entypo-fontello';
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(3) a:before {
      content: '\e83d';
      font-family: 'entypo-fontello';
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(4) a:before {
      content: '\e8b3';
      font-family: 'entypo-fontello';
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(5) a:before {
      content: '\e8d2';
      font-family: 'entypo-fontello';
    }
    #top .dotsmenu .av-subnav-menu li:nth-child(6) a:before {
      content: '\e8b9';
      font-family: 'entypo-fontello';
    }

    This is the result:
    Enfold Support 6141

    Best regards,
    Mike

    in reply to: Problem with columns: doesn’t show as columns #1455511

    Hi,
    Thank you for your patience and the link to your page, I see that you are using the Widget Area element to show widgets in your three columns:
    Enfold Support 6125
    and each of the widgets are showing Insert Page element to show the content of a page
    Enfold Support 6127
    in this case the widget option Inline should be used:
    Enfold Support 6129
    I set this for you and now the columns show correctly:
    Enfold Support 6131
    I tried this for your other widgets at the bottom of the page, but your first one is calling kolom-sponsor but this doesn’t seem to be valid, perhaps this is a old page that was renamed or deleted?
    Enfold Support 6133

    Best regards,
    Mike

    in reply to: Enfold WooCommerce templates to edit? #1455459

    Hey Thomas,
    Thank you for your patience the Enfold customizations for woocommerce are in \enfold\config-woocommerce\config.php .

    Best regards,
    Mike

    in reply to: EventOn Plugin Conflict #1455433

    Hey LesleyJean,
    Thank you for your patience, unfortunately my research finds that the EventOn plugin doesn’t work well with Enfold. Unfortunately this is not one of our supported plugins, we suggest trying the Events Calendar plugin.
    We are not able to support all plugins and our support scope is limited.
    If you would like to request support for this plugin as a feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.
    Thank you for your patience and understanding.

    Best regards,
    Mike

    Hey Marco,
    Thank you for your patience and the link to your page, when the tribe event pagination is clicked the page reloads with the new content, this is why the page shows at the top like any new page would when you use a link to a different page.
    To get the scroll position when the pagination button is clicked and then after the page reloads go back to that position add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function adjust_scroll_position_when_tribe_events_pagination_is_used() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function () {
        function storeScrollPosition() {
            localStorage.setItem('scrollPosition', window.scrollY);
        }
        function scrollToStoredPosition() {
            const scrollPosition = localStorage.getItem('scrollPosition');
            if (scrollPosition) {
                window.scrollTo({
                    top: parseInt(scrollPosition, 10),
                    behavior: 'smooth'
                });
                localStorage.removeItem('scrollPosition'); 
            }
        }
        const paginationLinks = document.querySelectorAll('.pagination-tribe_events a');
        paginationLinks.forEach(link => {
            link.addEventListener('click', storeScrollPosition);
        });
        scrollToStoredPosition();
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'adjust_scroll_position_when_tribe_events_pagination_is_used', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Do_shortcode does not process enfold shortcode #1455164

    Hey Jason,
    Thanks for the link to your page, but we will need a admin login to review in full what you are trying to do, the echo do_shortcode(“
    typically works, see this post
    but when I check your page it looks like you are trying to add a color section which can cause issues, since full width elements behave differently.
    This is another post that might help

    Best regards,
    Mike

    in reply to: Masonry to open a series of images in lightbox #1454297

    Hi,
    Thanks for your ideas Guenni007, another way is to use the Masonry Gallery element, as I explained here.

    Best regards,
    Mike

    in reply to: icon list – break with “read more” #1454290

    Hi,
    Thanks for sharing Guenni007, this works good.

    Best regards,
    Mike

    Hi
    Please click the URL field and change it there:
    Enfold Support 6123

    Best regards,
    Mike

    Hi,
    Glad Guenni007 & Ismael 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: Update on ACF support #1452945

    Hi,
    Thanks for the feedback, we are excited also. 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: Styling (css) areremoved/missing #1452938

    Hi,
    Perhaps you have made an error in adding this filter, please include an admin login in the Private Content area so we can check.

    Best regards,
    Mike

    in reply to: Styling (css) areremoved/missing #1452890

    Hi,
    Thanks for the feedback, but it looks like the filter was not enabled:

    function custom_avf_post_css_create_file( $create ){
      return true;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    if this was enabled the css files in the screenshot would not be present, please put the filter in and try again.

    Best regards,
    Mike

    in reply to: Demo won’t Install #1452182

    Hi,
    Glad Rikard 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: Styling (css) areremoved/missing #1452069

    Hi,
    I reviewed the other thread with the solution and see that they didn’t disable the X-Content-Type-Options “nosniff” they only changed it from being in the nginx http and https directives additional headers box in plesk apache and nginx settings but instead are in the htaccess file.
    Try asking your webhost to try this, the nosniff is still activate but in a different way. Perhaps they will understand this better and can adjust your server settings to suit.
    The theme can not make these changes to your server and thus can not correct the error that the web browser is having with the server.
    From our research there has only been three examples of this issue from the thousands of activate users using Enfold and the other two both found this code in their functions.php to solve:

    function custom_avf_post_css_create_file( $create ){
      return true;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    Best regards,
    Mike

    Hey Eleina,
    Thank you for the link to your site, when I logged into the site, the homepage loads in the backend corrected. I checked in Windows with Chrome, Firefox, & Edge.
    I see the page contains “strong tags” in the element titles, but this doesn’t seems to cause any errors, sometimes when the page has a missing closing tag this often causes an error like in the video, but I’m not able to reproduce and from your post you were also not able to reproduce.
    Try asking the client to use the login that you posted for us to use and see if that helps. In some rare cases a specific login might have an error, or a user might have a browser addon that could a error. If this doesn’t help let us know what computer OS and browser version number so we can try to reproduce.

    Best regards,
    Mike

    in reply to: Sidebar is populating at the bottom of the page #1452059

    Hey ScatmanAT,
    This is because you are creating the page with the Advanced Layout Builder (ALB) and you are using a full width element at the top of the page, these elements cause the sidebar to be under it.
    To solve don’t use the full width element or create a manual sidebar widget element in your page.

    Best regards,
    Mike

    in reply to: Floating text window, with Close option #1452007

    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: Hide links to youtube #1452006

    Hi,
    That won’t work because what you want to block is from the youtube iframe and you can not block items in a iframe from your domain, it must be blocked from the source domain. A lot has changed since 2016.

    Best regards,
    Mike

    in reply to: Hide links to youtube #1451967

    Hey Mihai,
    Thank you for the link to your site, unfortunately YouTube doesn’t allow you to disable these features anymore, your best solution is to host the video on your site in the media library instead.

    Best regards,
    Mike

    in reply to: Does not Show my public Pages redirect to 404 #1451907

    Hi,
    I have not seen this before, but when I disable all of your plugins the /portfolio/ page works correctly, see the screenshot in the Private Content area.
    Try disabling all of your plugins and then reactivate each one individually and reload the page until you find the conflict.

    Best regards,
    Mike

    in reply to: Floating text window, with Close option #1451905

    Hi,
    We would need to see how you are using this, and where you want to use this. Perhaps you added it to your footer and now it is on all of your pages?
    Please include an admin login in the Private Content area and explain were you want this to show show we can examine. Then example that I show only works on the page with the code block, but I added it to the page and not the footer or widget.

    Best regards,
    Mike

    in reply to: social sharing #1451904

    Hi,
    Strong is <strong> ... </strong>
    Glad we were able to help and thanks for sharing your solution, 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: Privacy policy button #1451892

    Hey Meetx,
    Did you see the option at Enfold Theme Options ▸ Cookie Consent ▸ Show advanced options ▸ Show reopen badge?
    Enfold Support 6119
    Please give this a try.

    Best regards,
    Mike

    in reply to: social sharing #1451891

    Hey Webmaster,
    Thanks for the link to your page, I believe that you want the text to say: As-tu aimé cet article? Partagez-le!, I used Google Translate, if this is not quite right feel free to adjust the code below.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_share_box_text() { ?>
      <script>
    (function($){
      var el = document.querySelector('.av-share-link-description');
             el.outerHTML = '<h5 class="av-share-link-description av-no-toc" style="text-align: center;">' + 'As-tu aimé cet article? Partagez-le!' + '</h5>';
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'change_share_box_text', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: removing links #1451890

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

    function custom_remove_link_from_slide_image_script() { ?>
      <script>
    (function($){
    $('.page-id-1046 .slide-entry a.slide-image').removeAttr('href');
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_remove_link_from_slide_image_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    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

Viewing 30 posts - 751 through 780 (of 33,013 total)