Forum Replies Created

Viewing 30 posts - 6,901 through 6,930 (of 34,644 total)
  • Author
    Posts
  • in reply to: Slide show #1409612

    Hi,
    Please include FTP login so we can take a look, but this solution may also disable the swipe for mobile which I don’t think you will be pleased with so the best solution may be to leave this alone.

    Best regards,
    Mike

    in reply to: Accordion slider not cliccable #1409604

    Hi,
    Glad we were able to help, sorry for the late repliy there are lots of people with lots of questions we are trying 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: Parallax viewing issues on mobile #1409585

    Hi,
    To add the social icons to your burger menu to your burger menu try this solution.

    Best regards,
    Mike

    in reply to: Events Calendar Pro Conflict #1409584

    Hey Sievers,
    Thanks for the link to your page, if you disable your plugins the color section then shows correctly at full width?
    Please include an admin login in the Private Content area so we can try to investigate.

    Best regards,
    Mike

    in reply to: use some code before output text #1409577

    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: use some code before output text #1409575

    Hi,
    Try using a plugin like Search Regex

    Best regards,
    Mike

    in reply to: also put higher and title #1409574

    Hi,
    Thanks for your patience, to add your Revolution Slider to the top of your shop, products, and woocommerce pages I added this code to your child theme functions.php:

    
    add_action('ava_after_main_container', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	if(is_woocommerce()) {
    		echo do_shortcode("[rev_slider alias=\"titel-vorstand\"][/rev_slider]");
    	}
    }

    Then I added this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.single-product .container_wrap_first.container_wrap {
        border-top-style: none;
    }

    and now it is showing, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Problem setting up Loco Translate #1409571

    Hi,
    According to our documentation you would sync files before updating, then After syncing files, you are ready to update language files So once you have synced then update language files, then don’t sync again.

    Best regards,
    Mike

    in reply to: OnePager Menu doesn’t work #1409570

    Hey WriterTom,
    Please include an admin login in the Private Content area so we can see your site and be of more assistance.

    Best regards,
    Mike

    in reply to: Menü ausblenden #1409569

    Hey janbornemann44,
    Thanks for your question, to hide the menu on every page except the homepage, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top:not(.home) #avia-menu {
    	display: none;
    }

    After applying the css, please clear your browser cache and check.
    If this doesn’t help please include the url to your site so we can take a closer look.

    Best regards,
    Mike

    in reply to: WordPress updated to PHP 8.1 and Enfold Broke #1409568

    Hi,
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    Then after you update you can create a Envato Token in your Theme Forest account so that future updates can be done easily, but your current version will not work with the Envato Token

    Best regards,
    Mike

    in reply to: icon-list: change/control color for every icon #1409567

    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,
    Thanks for sharing your findings, I found this stackoverflow thread and added the lightbox-added class as a trigger:

    (function($){
        var $imgs = [];
        $('img').each(function(idx) {
          var obj = {
            src: $(this).attr('src')
          }
          $imgs.push(obj);
          var elem = $(this);
          elem.click(function() {
            console.log('clicked on img', idx);
            $('.lightbox-added').magnificPopup('open', idx);
          });
        });
        console.log($imgs);
    
        $('.lightbox-added').magnificPopup({
          items: $imgs,
          type: 'image',
          gallery: {
            enabled: true
          },
        });
    })(jQuery);

    When I test it by injecting it via the browser to your page it lists 21 of your images on the page as an arrayin the console, see: console.log($imgs); so this is promising, but they are not passing to the lightbox via items: $imgs,
    Unfortunately here it says there is a bug in magnificPopup that prevent the index.
    Here is a link to the Magnific Popup Documentation if it is helpful, give the script a try and perhaps you will be able to open the image array.

    Best regards,
    Mike

    in reply to: use some code before output text #1409558

    Hey mischael1,
    Thanks for your patience, can you explain further about this code and what it does, perhaps link to where you found it and is it for javascript or PHP?

    Best regards,
    Mike

    Hey DanielDM,
    Thanks for your patience, you would need to use a separate element for each row with a different number of columns selected.

    Best regards,
    Mike

    in reply to: Maintenance Mode: exclude page IDs? #1409556

    Hey BeeCee,
    Thanks for your patience but we don’t have a way to exclude pages from the maintenance mode feature, if you would like to request this 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.

    Best regards,
    Mike

    Hey MotiveAgency,
    Thank you for your patience, the setting at Appearance ▸ Customise ▸ WooCommerce ▸ Product Catalogue ▸ Category display are global and you are not able to select specifically for each category.
    Instead go to Products ▸ Categories and edit each category under Display type
    Enfold_Support_2259.jpeg

    Best regards,
    Mike

    in reply to: Accordion slider not cliccable #1409552

    Hi,
    Thank you for your patience, to make the accordion slider not clickable, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .aviaccordion-slide a {
    	pointer-events: none;
    }

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

    Best regards,
    Mike

    in reply to: lottie files in layerslider #1409551

    Hi,
    Glad to help, we will leave this thread open and report any ideas the team has about using lottie with the LayerSlider.

    Best regards,
    Mike

    in reply to: working solution for different logo on scroll #1409550

    Hi,
    Thanks Guenni007 I took a look at this and at lzevon’s site and I found that it works for this site even though it is not using a transparent header.
    lzevon thanks for the login I see that are are using a page ID to your homepage for the css and script so it will only work on your homepage and this page is not transparent and uses the Shrinking Header & Sticky Header, I checked the code from Guenni007 and added a svg image all-for-you-no-cloud.svg in the placeholder path_to_your_alternative_svg_logo in the code.
    So now the logo with the cloud shows at the top of the page and before scroll, then after scroll the logo with no cloud shows.
    Please see the screenshots in the Private Content area and clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Blog grid images ok for 3 columns, but not for 2? #1409547

    Hey CharlieTh,
    Thanks for your patience please change the image size in the blog element, typically portfolio is default, so try a larger size such as no scaling
    Enfold_Support_2253.jpeg

    Best regards,
    Mike

    in reply to: Transparency of Menu Sub Items. #1409545

    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 Single Image Size #1409544

    Hi,
    To make the single product page images link to the full size images in lightbox, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function change_lightbox_size() {
        return "full";
    }
    add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);

    This also changes the linked lightbox image for image elements

    Best regards,
    Mike

    in reply to: Transparency of Menu Sub Items. #1409541

    Hi,
    Sorry I meant to link to this thread

    Best regards,
    Mike

    in reply to: Transparency of Menu Sub Items. #1409539

    Hey frawer,
    Try this solution if this doesn’t help then please link to your page so we can examine.

    Best regards,
    Mike

    in reply to: install filter #1409538

    Hi,
    Glad to hear that you have this sorted out, 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: lottie files in layerslider #1409537

    Hi,
    It looks like the Slider Revolution supports Lottie, see their documentation here.
    I don’t have any experience with the Slider Revolution but you could try it or other sliders.

    Best regards,
    Mike

    in reply to: Disabling popups #1409536

    Hi,
    You are correct, in my excitement I didn’t notice this, so it seems your forms and your popup are created with the same snippet from getresponse, and I don’t see a way to either remove the popups on certain pages or only show the form on certain pages, so I would advise to create two campaigns, if this is what getresponse calls them, one for the popups only so that you have a code snippet to use in the function I created and another for your forms that will use a different snippet on all of your pages that you can add to your Head, Footer and Post Injections plugin like before. I realize this may not be what you want, having two lists or campaigns, but I don’t see another option since getresponse is not giving you this option.
    Perhaps you could hire someone with better javascript skills on Upwork that can remove the popups on those pages, if so I would like to see the solution because I tried a lot of different ways and I’m out of ideas :)

    Best regards,
    Mike

    in reply to: icon-list: change/control color for every icon #1409535

    Hi,
    I checked your page and it looks like it is working to me, I only see one iconlist with the ID Ablaufschritte and on desktop it is big:
    Enfold_Support_2243.jpeg
    and for mobile it is small:
    Enfold_Support_2245.jpeg
    On my Android mobile device it works correctly and when I test on a Windows desktop in Chrome Dev Tools emulating a mobile device the switch occurs after I reload the page, perhaps you are not testing like this? On my Android device it seems like the bottom of your page behaves with a lazy load, if you are using lazy load try disabling it.

    Anyways I made an example page for you to see how I did this, first I added the custom class Ablaufschritte to the Big Iconlist:
    Enfold_Support_2247.jpeg
    Then on desktop the iconlist shows as it’s default big list:
    Enfold_Support_2249.jpeg
    and on mobile it is switched to a small icon list:
    Enfold_Support_2251.jpeg
    Please check my page on your mobile device and your desktop device.

    Best regards,
    Mike

    in reply to: Display Widgets side by side in Mobile View #1409514

    Hi,
    To have the columns next to each other try changing the width: calc(50%); to 43% or less:
    Enfold_Support_2241.jpeg

    Best regards,
    Mike

Viewing 30 posts - 6,901 through 6,930 (of 34,644 total)