Forum Replies Created

Viewing 30 posts - 12,541 through 12,570 (of 34,961 total)
  • Author
    Posts
  • Hi,
    Ok I added this to your child theme functions.php

    
    function move_mobile_language_switch() { ?>
        <script>
    (function($) {
    var width = $(window).width();
    if ((width <= 590)) {
    $(".av-language-switch-item").each(function() {
            $(this).appendTo("#header_meta>.container>.sub_menu");
    });
    } else {}
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'move_mobile_language_switch');

    and this to your child theme stylesheet

    #header_meta>.container>.sub_menu>li.av-language-switch-item {
    margin-top: 10px;
    list-style:none;
    }
    #header_meta>.container>.sub_menu {
    	display: flex;
    	justify-content: center;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Do you mean that you have this error on many posts? That is that many posts have been edited with both the Classic Editor and the Advanced Layout Builder and now they show different content in the different editors?

    Best regards,
    Mike

    in reply to: google inspect #1343637

    Hi,
    Glad to help, shall we close this then?

    Best regards,
    Mike

    Hi,
    Perhaps I can write a script to move the language flags above the logo for mobile only, up to 590px would that work for you?

    Best regards,
    Mike

    in reply to: google inspect #1343631

    Hi,
    Try testing again without any ad-blockers or cookie blockers, and make sure your browser is not in a privacy mode, if your using Safari, it is blocking these by default.
    Then ensure you have a good internet connection, sometimes a weak wi-fi will drop mid page load.
    The object would be to load the page without the errors, because I’m not seeing these errors except when my ad-blocker is enabled.

    We know these are from youtube because we both have the same cache file highlighted, AaG4H0f6ng0, in my screenshot I have it expanded to show the source, and you see youtube

    As long as your videos are showing and play when you click them, which they do for me, I would not worry about it because you can not ensure that all of your visitors have their ad-blockers or cookie blockers disabled, most people want to block tracking.

    Best regards,
    Mike

    in reply to: section full width #1343628

    Hi,
    If the images that you want full-width must be inside the tab section, then you would need to make the whole tab section full width, please clear your browser cache and check the test page below.
    Now if you want the text areas “boxed” like before we can set a max-width for them, but for the 8 columns they can not be nested inside another column so we would need to convert them into shortcode and place them inside a code block, but since you are not done editing them yet it probably would not be easy for you in the future.
    So the option is to use the whole tab section full width like on the test page below (clear your cache) or finish your image columns so they can be converted into shortcode for a code block section.

    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: How to add a scrolling text #1343608

    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

    Hey Grobi,
    I looked at the support page for the “exit notifier” plugin and it offers a solution to “Whitelist” a site, try following this solution for your main domain.
    You can see all of the “exit notifier” plugin support solutions here, and if you have further questions about the plugin you ask there also.

    Best regards,
    Mike

    in reply to: Blog Post Element – Spacing Between Images #1343552

    Hey Julio,
    Thanks for the link to your site, please try this in your quick css:

    @media only screen and (max-width: 479px) and (orientation: portrait) { 
    	#top #wrap_all .slide-entry-wrap .flex_column.slide-parity-odd,
    	#top #wrap_all .avia-content-slider .slide-entry-wrap{
    		margin-bottom: 0;
    	}
    }

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

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343551

    Hi,
    Thanks for the screenshot, try this css

    @media only screen and (max-width: 767px) {
    #top.page-id-600 #main .marquee {
        height: 30px;
    }
    #top.page-id-600 .hr.hr-invisible.avia-builder-el-7 {
        height: 20px;
    }
    }

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

    Best regards,
    Mike

    in reply to: Double headings in the table of contents #1343549

    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: Double headings in the table of contents #1343499

    Hi,
    If you want to use this for other pages I recommend adding a custom ID to the toc to replace to auto generated avia_auto_toc-2 ID then in the script and css replace the page ID and #avia_auto_toc-2 with the new ID.
    Or since this is added via the widget element to the pages you could try just removing the page ID from the script.

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343496

    Hi,
    Ok 🙂

    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: Importing Demo #1343492

    Hi,
    I tried manually uploading the images and importing the theme via the wordpress xml importer and I got the success message but the pages & posts didn’t install, only the images.
    I’m not sure what the issue is so I have asked the rest of the team to assist.
    Thank you for your patience

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343487

    Hi,
    Glad to hear, shall we close this then?

    Best regards,
    Mike

    Hi,
    Glad to hear this helped.
    The dropdown language selector needs to be assigned to a specific menu, right now it’s assigned to the wpml menu
    2022-03-07_001.jpg
    the wmpl menu is used in the top bar as the Secondary Menu above the header and not in the header.
    But since you are modifying the menus to show a different menu on different pages you won’t be able to choose one main header menu to show the language selector in.

    Best regards,
    Mike

    in reply to: Double headings in the table of contents #1343482

    Hi,
    I see that you forgot to also add the script above to your child theme functions.php, I did this for you, please check.

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343481

    Hi,
    Thanks for the feedback, please try this css in your Quick CSS

    @media only screen and (max-width: 767px) {
    #top.page-id-600 #main > .avia-section .marquee > .track > .content {
        padding-top: 0px;
    }
    }

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

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343418

    Hi,
    Sorry I’m not sure what you mean by center the text and reduce the width?
    above you asked to make it full width and it is a scrolling marquee so it’s not going to center it’s moving?
    perhaps a screenshot would help.

    Best regards,
    Mike

    Hi,
    Thanks for the login, this doesn’t look like it’s added to all of the images and even the images with this don’t show it in the media library or the attachment page like this one:

    Please try disabling all of your plugins and caching and then clear your browser cache. Then enable your plugins one at a time and test your site, clearing your browser cache after each test until you find the one or combination of plugins causing this to identify this cause.

    Best regards,
    Mike

    in reply to: Footer missing #1343413

    Hey leviticus,
    When you say that you have not edited the footer.php or header.php files in your child theme, do you mean that there are no footer.php or header.php files in your child theme?
    If there are these files in your child theme please remove and check again.
    I see that you have this error Failed to load resource: the server responded with a status of 403 (Forbidden) from the plugin mimetypes-link-icons
    please disable this plugin and check, you could try disabling all of your plugins to see if that corrects.
    If none of this helps please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343411

    Hi,
    Please ensure that you are copying the code from the forum and not an email, it will mess up the < & > which will make the <style> tags not work.
    If this is correct then try saving the page and view the real page not the preview.

    Best regards,
    Mike

    in reply to: Importing Demo #1343410

    Hi,
    Thanks, I tried but also got an error, I looked at your server settings and your Max input time is -1 this should be 180 and your PHP time limit were typically it is 270
    please ask your webhost to change these settings and try again, if it still doesn’t install I might have another method, but the negative one setting needs to be changed
    2022-03-06_185153.jpg

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343405

    Hi,
    To make it full width try this in your Quick CSS:

    #top.page-id-600 .avia_codeblock_section.avia_code_block_0 {
      width: 100vw !important; 
      position: relative !important; 
      left: calc(-50vw + 50%) !important; 
    }
    

    to add another going the other direction add this to a new code block element

    <style>
    .marquee-two > .track-two > .content-two {
      margin: 0;
      padding: 0;
      color: #fff;
      font-size: 25px; 
      font-family: 'press-start-2p';
    }
    
    .marquee-two {
      position: relative;
      width: 100vw;
      max-width: 100%;
      height: 200px;
      overflow-x: hidden;
    }
    
    .track-two {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: marquee-two 32s linear infinite;
    }
    
    @keyframes marquee-two {
      from { transform: translateX(-50%); }
      to { transform: translateX(0); }
    }
    </style>
    <div class="marquee-two">
      <div class="track-two">
        <div class="content-two"> All of Joakims NFTs are one of a kind (1/1) artworks. Each artwork will be available either on Opensea or Rarible only!</div>
      </div>
    </div>

    and if you want the second code block full width add this Quick CSS for it

    #top.page-id-600 .avia_codeblock_section.avia_code_block_1 {
      width: 100vw !important; 
      position: relative !important; 
      left: calc(-50vw + 50%) !important; 
    }
    

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343401

    Hi,
    The code you are seeing needs to be inside a style tag, so try this in your code block element

    <style>
    .marquee > .track > .content {
      margin: 0;
      padding: 0;
      color: #fff;
      font-size: 25px; 
      font-family: 'press-start-2p';
    }
    
    .marquee {
      position: relative;
      width: 100vw;
      max-width: 100%;
      height: 200px;
      overflow-x: hidden;
    }
    
    .track {
      position: absolute;
      white-space: nowrap;
      will-change: transform;
      animation: marquee 32s linear infinite;
    }
    
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    </style>
    <div class="marquee">
      <div class="track">
        <div class="content"> All of Joakims NFTs are one of a kind (1/1) artworks. Each artwork will be available either on Opensea or Rarible only!</div>
      </div>
    </div>

    Best regards,
    Mike

    in reply to: Add Enfold Page Headings to The Events Calendar pages #1343399

    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: Double headings in the table of contents #1343398

    Hi,
    Glad to hear, you can try this script to toggle the TOC, I wrote it for this one page so I’m not sure if you have others. Clicking on the title toggles and I included some css to show a green arrow up/down to let users know. On page load it’s toggled but this can be changed.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function toggle_toc_container() { ?>
        <script>
    (function($){
        $('#avia_auto_toc-2 .avia-toc-container').hide();
        $('#avia_auto_toc-2 > h3.widgettitle').click(function(e){
        e.preventDefault();
        var $this = $('.avia-toc-container');
        $this.toggle();
        $("#avia_auto_toc-2 > h3.widgettitle").toggleClass( "up" );
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'toggle_toc_container');

    and this to your Quick CSS

    #avia_auto_toc-2 > h3.widgettitle:before {
      content: "\2BC6 ";
      color: #42a51e;
    }
    #avia_auto_toc-2 > h3.widgettitle.up:before {
      content: "\2BC5 ";
      color: #42a51e;
    }

    Best regards,
    Mike

    in reply to: How to add a scrolling text #1343396

    Hi,
    Try this example: Infinite Marquee in it’s css change the “body” class to .marquee > .track > .content and add your font and color there.
    If you need a hand just include admin login in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 12,541 through 12,570 (of 34,961 total)