Forum Replies Created

Viewing 30 posts - 14,041 through 14,070 (of 34,601 total)
  • Author
    Posts
  • in reply to: Embedded content – possibilities #1312221

    Hey S.,
    Thank you for your patience, the embed code snippet from the help page uses javascript and is not an iframe, please try this code in a code block element and it should work as-is, but if you have trouble please link to your page with admin access and we will check.
    Since this is the platform you are using you will want to use their javascript.
    From your StackOverflow link you will notice this comment:

    Another crucial drawback with iFrames is the fact that there are many websites out there which have set ‘X-Frame-Options’ to ‘sameorigin’ and then simply refuse the connection. In this case, your iFrame remains empty. No way to fix that.

    Best regards,
    Mike

    in reply to: Post format video not showing thumbnail #1312220

    Hey emilconsor,
    Thank you for your patience the thumbnails are the featured images and videos can’t be uploaded as featured images so please include your video thumbnails as your featured images in your blog posts then they will show in the blog element.

    Best regards,
    Mike

    Hi,
    For laptop do you mean 768px ▸ 1024px ?
    they should be showing this way now
    2021-07-25_006.jpg
    If you mean a different size then please link to your page.

    Best regards,
    Mike

    in reply to: Blog in mobile alternate alignment #1312216

    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: Upload and activate theme setting file #1312215

    Hey honighut,
    Thank you for your patience and for the login, I see in your theme options Change WordPress defaults you do not have any jQuery options:
    2021-07-25_004.jpg
    this is what you should see:
    2021-07-25_005.jpg
    typically this occurs when the server is forcing jQuery to load in the footer or it is being blocked, I believe this is the cause for your error, please check.
    I also see that your server is using PHP v8.0.8, please try downgrading to v7.x

    Best regards,
    Mike

    in reply to: Remove wpm flags in menu #1312211

    Hey dondela,
    Thank you for your patience, have you tried disabling the language switcher at WPML ▸ Languages
    wpml_language_switch_options.jpg
    Another option is to try this css:

    #header_main #avia-menu .av-language-switch-item { display: none; }

    Best regards,
    Mike

    in reply to: Mobile anchors not going to top of page #1312209

    Hey marleymoyer,
    Thank you for your patience and the screenshots and the link, in my testing I fould that if the anchor links are accessed directly on mobile the correctly section is scrolled to, but when your full-width submenu is used they don’t for some reason, please include an admin login in the Private Content area so we can examine closer.

    Best regards,
    Mike

    Hey wealthyone,
    Thank you for your patience and thanks for the screenshots, it looks like you are using your table in tabular data mode under table styling instead of Pricing Table.
    If you check our Table Element demo
    Pricing_Table_Element_demo.jpg
    you can see that the Pricing Table displays as you are asking for mobile
    Pricing_Table_Element_demo_mobile.jpg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Menu position on Header #1312127

    Hi,
    Thank you for your patience and the link to your site, this is a tricky request as the shrinking header is calculated by javascript, the following javascript seems to work but it is not as smooth as I would expect.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    const parent = document.getElementsByClassName("av-logo-container")[0];
    const child = document.getElementsByClassName("av-main-nav")[0];
    document.addEventListener("scroll", checkParent);
    let lastHeight = 0;
    
    function checkParent() {
      const parentHeight = parent.clientHeight;
    
      if (parentHeight >= 240) child.style.paddingTop = "110px";
      else child.style.paddingTop = "0px";
    }
    
    function checkForChanges() {
      const parentHeight = parent.clientHeight;
      if (parentHeight != lastHeight) {
        checkParent();
        lastHeight = parentHeight;
      }
      setTimeout(checkForChanges, 100);
    }
    
    checkForChanges();
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Link to youtube video inside slider #1312118

    Hi,
    Glad Guenni007 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: Different menu on maintenance page / shop #1312113

    Hi,
    Thank you for your patience, the mobile menu is created dynamically so I don’t know how the plugin is swapping the menus, but to use a different menu on a certain page you could use this filter in your child theme functions.php:

    function av_different_menu( $args = '' ) {
        if(is_page('591') && $args['menu_id'] == 'avia-menu') {
            $args['menu'] = '21';
        } 
        return $args;
        }
    add_filter( 'wp_nav_menu_args', 'av_different_menu' );

    Please adjust the page & menu IDs to suit. To find the menu ID for your menu hover over the “delete menu” link and look at the link address
    find_the_menu_id.jpg

    Best regards,
    Mike

    in reply to: Blog in mobile alternate alignment #1312106

    Hi,
    Thank you for your patience, for your first issue your content slider creates a new “wrap” after every three items, probably based on the setting to only show three in each row, this adds a bottom margin to the last item on mobile, to remove please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    .avia-content-slider .slide-entry-wrap {
        margin-bottom: 0 !important;
    }
    }

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

    To change the space between columns try this css:

    @media only screen and (min-width: 1024px) { 
    .slide-entry-wrap > .slide-entry.av_one_third {
        margin-left: 2%;
        width: 31.333333333333332%;
    }
    }

    the default is:

        margin-left: 6%;
        width: 29.333333333333332%;

    try adjusting to suit.
    To change the size of your images try the Simple Image Sizes plugin, it is the easiest method. Once to set a new size for the “magazine” images you will need to “regeneration the thumbnails” for them to take effect.

    Best regards,
    Mike

    in reply to: Making the excerpt clickable as well #1312103

    Hi,
    Thank you for the link, your page is not the category archive page that I was expecting, it seems to be a page with a blog post element targeting the category category-event-campaign , but try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script() { ?>
        <script>
    (function($) {
      $('.entry-content').on("click", function() {
            window.location = $(this).parents('.post-entry.category-event-campaign').find('.big-preview a').attr('href');
            return false;
        });
        $(".entry-content").mouseover(function(){
          $(this).css("cursor", "pointer");
      });
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    to hide the “read more” button try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .post-entry.category-event-campaign .read-more-link {
    	display: none;
    }

    Best regards,
    Mike

    in reply to: Portfolio items open lightbox gallery #1312050

    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: Product gallery contains other unrelated media items #1312049

    Hi,
    Are you still using the same YouTube gallery plugin that was causing the conflict, or are you also able to give that up so that only the theme lightbox script is used?

    Best regards,
    Mike

    in reply to: Pop up contact box? #1312047

    Hi,
    I don’t believe the devs are, as you see the first example of this was from 2016. This performs quickly as the div is already on the page and only needs to be shown.

    Best regards,
    Mike

    in reply to: Custom Font Type #1311887

    Hey johnosjourney,
    I assume that you mean that you have tried uploading the custom font via the Enfold Theme Options ▸ Import/Export ▸ Custom Font Manager
    and added the font family css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to apply to your elements.
    I note that you say you are using OTF, but our Supported Font Formats are:
    ttf
    eot
    woff
    woff2
    If your custom font does include one of these and you are still having trouble please link to the zip you are using so I can test.

    Best regards,
    Mike

    in reply to: Portfolio items open lightbox gallery #1311880

    Hey Sebastian,
    Please check the Additional Portfolio Settings in your portfolio item, you can overwite the portfolio link with a custom link:
    2021-06-20_007.jpg
    If you add a direct link to an image it will open in a lightbox, if you have enabled the lightbox option in the theme settings: Enfold Theme Options > Lightbox Modal Window

    Best regards,
    Mike

    in reply to: Horizontal Timeline Extra Pixels #1311879

    Hey selafferty,
    Thank you for the link to your page, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-21 #avia-timeline-1 {
    	 padding: 0 8px;
    }

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

    Best regards,
    Mike

    in reply to: 2 menus in the website #1311873

    Hey saludesencial,
    Sorry I don’t understand what you are trying to create, try posting a link to the actual site with the end result, the video about the funnel builder is just confusing.
    Enfold has slider elements like the top of this demo, it also has Content Sliders or Accordion Sliders.
    Perhaps a Tab Section Element would suit?

    Best regards,
    Mike

    in reply to: BuddyBoss y a LearnDash #1311861

    Hey saludesencial,
    Enfold does work with LearnDash, I don’t have experience with BuddyBoss but from my research, it looks like BuddyBoss is meant to be used with their themes in order for the full integration with LearnDash to work correctly, it looks like anything else is called Custom BuddyPress Development on their site, so I would lean towards BuddyBoss not working well with Enfold, but you would have to try it to be sure.

    Best regards,
    Mike

    in reply to: Making the excerpt clickable as well #1311849

    Hey Junms1,
    Thank you for your patience and for the screenshot, we should be able to do this but I’m not sure that I was able to match my archive page layout to yours just from the screenshot, please link to your page so I can examine it closer.

    Best regards,
    Mike

    in reply to: Schriftgröße und Schriftfarbe im Hauptmenü ändern #1311836

    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: Pop up contact box? #1311822

    Hey goldengate415,
    Thank you for your patience and the link to your example site, this modal popup works like our Magnific Popup example, aka “lightbox popup” in that a hidden div is added to the bottom of the page and on-click it is shown. Typically we would add the content to a code block element which could include form shortcodes or html, I believe this was one of the first examples of this solution.
    Typically our example shows as a box centered in the screen, but with some css this could show as a full screen modal.
    Please give this a try and let us know if you would like further help with this.

    Best regards,
    Mike

    in reply to: Add button to the Masonry post #1311784

    Hi,
    Glad Ismael could help with this filter instead of the jQuery script:

    add_filter("avf_masonry_entry_content", function($content) {
    	$content .= "<span>Read more</span>";
    	return $content;
    }, 10, 1);

    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: Single Page – Scrolling speed/elegance #1311782

    Hi,
    There are quite a few free WordPress plugins that will add Smooth Scroll, please give these a try. Also note that most of these use jQuery so you will want to ensure that the theme setting Enfold Theme Options > Performance > Load jQuery in your footer is not enabled and that none of your cache plugins are delaying the loading of jQuery.
    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: Avia Layout Builder not loading #1311486

    Hi,
    Ok, perhaps a file was corrupt or the permissions didn’t set correctly while using the Duplicator plugin, typically I’ve had good luck with it, but sometimes things happen.
    If reinstalling woocommerce doesn’t help also try replacing the enfold theme files, but please don’t try to overwrite them, fully delete and replace.
    Please let us know how it goes.

    Best regards,
    Mike

    in reply to: Help with transparency and layering background images #1311481

    Hi,
    I have investigated the audio styling further and found to force the light styling you would set Enfold Theme Options ▸ Performance ▸ Disable Features ▸ Disable self hosted video and audio features
    Using the default setting of Default ▸ only load when needed (recommended) will also work depending on other theme styling settings and the page/post type, but to force it uniformly choose to disable it. I have done this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Avia Layout Builder not loading #1311441

    Hi,

    @envapk2
    I notice that when I check one of your products I see this error:
    Connection lost. Saving has been disabled until you’re reconnected. We’re backing up this post in your browser, just in case.
    What web host are you using? Was this a new install or did you update an older version? You had some custom woocommerce files, is there a chance that you customized any of the main theme files?
    Can you create a WordPress test install on your server? Perhaps on a sub-domain like /test/ if so try to export all of your current content at WordPress > Tools > Export > All content
    wordpress_export_all_content.jpg
    and on the test site install a fresh Enfold & Woocommerce and then import the current content, please note that the export file only links to your current images so if you delete the images the install file won’t find them, all of the other content is in the file.
    I’m thinking that some strange error occurred with your original install and this will show another install would work correctly?
    I could try this on my test server, but that would not help you if it is some issue with your server.

    Best regards,
    Mike

    in reply to: Avia Layout Builder not loading #1311429

    Hi,

    @trexperts
    please open a new thread, your issue is not the same as this thread as you are not using woocommerce. I was able to open your Advanced Layout Builder so I’m not sure if your issue is with a specific page or not. In your new thread please explain how we can recreate your error, I do recommend disabling all of your plugins and reenabling them one at a time, clearing your browser cache between each one to see if that helps.

    Best regards,
    Mike

Viewing 30 posts - 14,041 through 14,070 (of 34,601 total)