Forum Replies Created

Viewing 30 posts - 3,871 through 3,900 (of 34,601 total)
  • Author
    Posts
  • in reply to: Keep 1/2 Columns Perfect Squares #1432899

    Hey MikeTandySwag,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .home #av_section_2 .flex_column.av_one_half {
        padding: 55% 50px 30px 50px;
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
    .home #av_section_2 .flex_column.av_one_half {
        padding: 24% 5px 30px 5px;
    }
    }
    @media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .home #av_section_2 .flex_column.av_one_half {
        padding: 35% 5px 30px 5px;
    }
    }

    The height was affected by the inner padding, this seems to correct in my tests.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: after changes effects/pictures only appear in preview #1432898

    Hi,
    Thanks for the video and the link to your site. Your plugin Autoptimize was causing the error, I disabled it and now your “2.0” image shows:
    Enfold_Support_4618.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Dynamic CSS #1432897

    Hey mvi,
    It sounds like you are having a server cache issue, perhaps from a object-oriented cache? We have not experienced any issues on our servers or any reports from other users that we can reproduce. You could try changing the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression to Use minified theme CSS files without merging or disable it completely and let your server do all of the caching, but you would need to do this for each site, there is no other way to do this.

    Best regards,
    Mike

    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

    Hi,
    I have checked your homepage on Windows in Chrome, Firefox, & Edge and the slider at the top with the button seems to be the same in each browser. I didn’t see any “zooming” on hover in the slider, but I did on a image lower on the page that looks like a office.
    Above you write that the “zooming” only works when you are logged in, typically this would point to an error in the cached files since typically when you are logged in you are not served any cached files. Often when the theme and a plugin minifys the files an error can occur due to the nature of “minifying” which removes spaces & certain characters. It looks like your site is also using a CDN, cloudflare which could be serving the bad files.
    Try disabling the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files, then clear and disable your caching plugin and your server cache and your CDN, it could take a few hours your your site to start serving the same files as when you are logged it, especially for cloudflare which can take up to 24 hours.

    Best regards,
    Mike

    in reply to: Mobile Woocommerce Missing/Hidden Cells on Cart #1432892

    Hi,
    Please Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 479px){
    .responsive table.shop_table .product-subtotal {
        display: table-cell;
    }
    }

    Enfold_Support_4616.jpeg
    note that on very small screens it maybe hard to see since there is not enough room, this is why it is hidden by default.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, it looks like your menu layout has changed since we last looked at it and we don’t have access to the backend, have you changed your plans?
    Going back to the megamenu width for five items, I don’t think there will be a good solution for this because the css flex is used, you would be better off adding a sixth item which shows at full width, than to force five items into full width.

    Best regards,
    Mike

    in reply to: Google Map styling overide #1432890

    Hey dweddell,
    Thanks for the link to your page, I’m not familiar with snazzy maps but their javascript is what is overriding the map style /snazzymaps-js.min.js perhaps the plugin author can offer you a function to disable the loading of the script on specific pages?
    When I block the file in the browser the map loads with the correct style.

    Best regards,
    Mike

    in reply to: post navigation #1432889

    Hey rixi,
    changing the editor should not make a difference, it looks like the post that you linked to is the last one, when I check another one the post nav shows:
    Enfold_Support_4612.jpeg
    please see the link below, both are using the Advanced Layout Builder.
    You do seem to be using a date based permalinks at WordPress ▸ Dashboard ▸ Settings ▸ Permalink Settings, perhaps Post name based will give you a different result.
    Enfold_Support_4614.jpeg

    Best regards,
    Mike

    in reply to: font size from magazine navigation #1432887

    Hey rixi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-magazine-sort {
    	font-size: 20px;
    }
    

    adjust the number to suit.

    Best regards,
    Mike

    in reply to: Magazine List should not show all #1432886

    Hey rixi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-magazine-sort .all_sort_button {
    	display: none;
    }
    .av-magazine-sort .all_sort_button ~ span.text-sep:first-of-type {
    	display: none;
    }
    

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

    Best regards,
    Mike

    in reply to: Want Footer and socket only displayed on home site #1432884

    Hey Createve_Solutions,
    Try going to Enfold Theme Options ▸ Footer ▸ Default Footer & Socket Settings and choose Don’t display the socket & footer widgets
    Enfold_Support_4608.jpeg
    Then go to your homepage and choose your footer option to show as you wish.
    Enfold_Support_4610.jpeg

    Best regards,
    Mike

    in reply to: Dropdown menu accessibility (arrow keys NOT tab) #1432883

    Hey domchocolate,
    Thank you for your patience and the link to your site, to tab though the menu, skipping sub-menu items unless the down or up arrow keys are used please try this javascript in your child theme functions.php file in Appearance ▸ Editor:

    
    function tab_though_menu_skipping_sub_menu_items_unless_down_or_up_arrow_keys_are_used() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function () {
        const menuItems = document.querySelectorAll('.menu-item-has-children'); // Adjust this selector to match your menu structure
    
        // Initially set tabIndex to -1 for all sub-menu items to skip them in tab navigation
        menuItems.forEach(item => {
            let subMenuItems = item.querySelectorAll('.sub-menu a'); // Adjust this selector for your sub-menus
            subMenuItems.forEach(subMenuItem => {
                subMenuItem.tabIndex = -1;
            });
    
            item.addEventListener('keydown', function (e) {
                // Only proceed if the event target is a menu item that contains a sub-menu
                let subMenu;
                if (e.target.classList.contains('menu-item-has-children')) {
                    subMenu = e.target.querySelector('.sub-menu'); // Adjust this selector for your sub-menus
                } else {
                    // This ensures we get the sub-menu even if a child of the menu item was focused
                    subMenu = e.target.closest('.menu-item-has-children').querySelector('.sub-menu');
                }
    
                let subMenuItems = subMenu.querySelectorAll('a'); // Assumes sub-menu items are anchor tags
                let focusedElement = document.activeElement;
                let currentIndex = Array.from(subMenuItems).indexOf(focusedElement);
    
                switch(e.key) {
                    case 'ArrowDown':
                        // Move focus to the next sub-menu item
                        if (currentIndex < subMenuItems.length - 1) {
                            subMenuItems[currentIndex + 1].tabIndex = 0;
                            subMenuItems[currentIndex + 1].focus();
                            e.preventDefault(); // Prevent scrolling the page
                        } else {
                            // Optionally wrap around to the first item
                            subMenuItems[0].tabIndex = 0;
                            subMenuItems[0].focus();
                            e.preventDefault(); // Prevent scrolling the page
                        }
                        break;
                    case 'ArrowUp':
                        // Move focus to the previous sub-menu item
                        if (currentIndex > 0) {
                            subMenuItems[currentIndex - 1].tabIndex = 0;
                            subMenuItems[currentIndex - 1].focus();
                            e.preventDefault(); // Prevent scrolling the page
                        } else {
                            // Optionally wrap around to the last item
                            subMenuItems[subMenuItems.length - 1].tabIndex = 0;
                            subMenuItems[subMenuItems.length - 1].focus();
                            e.preventDefault(); // Prevent scrolling the page
                        }
                        break;
                }
    
                // Reset tabIndex to -1 for items not focused to ensure they're skipped during tab navigation
                subMenuItems.forEach(subMenuItem => {
                    if (subMenuItem !== document.activeElement) {
                        subMenuItem.tabIndex = -1;
                    }
                });
            });
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'tab_though_menu_skipping_sub_menu_items_unless_down_or_up_arrow_keys_are_used', 99 );

    I tested this on your site by injecting it in the browser and it worked good with your desktop menu.

    Best regards,
    Mike

    • This reply was modified 1 year, 5 months ago by Mike. Reason: updated to correct error
    in reply to: HTML for Turning On Audio? #1432881

    Hi,
    Thank you Guenni007 for your examples, the private page that clbdcnpafe linked to uses a video element with a vimeo video link, and unfortunately the video mute option is from vimeo inside of an iframe. So as you pointed out, the videos must be self-hosted.
    Based on Guenni007’s script I modified it some to create a button to enabled the sound on self-hosted videos, this is my example page, and this is what the button looks like:
    Enfold_Support_4606.jpeg
    This is the css for the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .custom-mute {
        display: block;
        color: #fff;
        font-size: 40px;
        padding: 20px;
        border: solid 2px #fff;
        position: absolute;
        bottom: 50%;
        right: 36%;
        z-index: 50;
    }
    .custom-mute.sound-on {
    	display: none;
    }

    This is the code for the end of the child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($) {  
        $('.avia-video').prepend('<div class="custom-mute">Click to unmute</div>');
          $('.avia-video').on('click', '.custom-mute', function() {
            $('video').prop('muted', !$("video").prop('muted'));
          });
        
        $('.avia-video').on('click', '.custom-mute', function() {
          $(this).toggleClass("sound-on");
        });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    This doesn’t require any theme files to be modified because it is only for the video element and not a background video in a color section or the slider element as Guenni007’s examples, in these cases please follow Guenni007’s post.

    Best regards,
    Mike

    in reply to: Contact form #1432875

    Hey carmen,
    Thank you for the link to your example form. I would recommend using the Contact Form 7 plugin, it offers more customization options and many addon plugins these are more addons.
    This video will explain how to create a new form element in CF7.

    Best regards,
    Mike

    in reply to: Main content widget box opening behind color section #1432874

    Hey GWS,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .page-id-452 #av_section_3 {
    	z-index: 0;
        position: relative;
    }

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

    Best regards,
    Mike

    in reply to: Header Transparency / On top of Fullscreen Slider #1432759

    Hi,
    Typically the header items colors are chosen by the alternative colors in the Enfold Theme Options ▸ General Styling
    But if these don’t match the colors that you want to use we can help with so custom css. Please open a new thread and link to your site and explain the colors that you want to use. Since this is not your thread you won’t see anything we write in the Private Content area, so it would be better to open your own thread. Thank you for your understanding.

    Best regards,
    Mike

    in reply to: Enfold – Responsive Multi-Purpose Theme #1432756

    Hi,
    Thanks for the links but they both look the same to me on mobile, perhaps a screenshot of what you are seeing would help.
    Please note that we ask that each thread stays on a specific topic, this helps us provide2 better support and keep the threads on topic. For further questions please login into the support forum and open a new thread and we will gladly assist. Please note that the contact form in not appropriate for support questions, Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: Enfold 2017 in mobile #1432753

    Hey carmen,
    The 2017 demo homepage has a transparent header with the LayerSlider at the top, you can replace the image in the LayerSlider with your video and it will show at the top as you wish.
    But please note that for mobile some browsers may block auto playing videos, for now some will allow a auto playing video if it has no sound and typically the LayerSlider works in these cases, but it may not work in all browsers or in the future. If you have a small loop you may want to try using a gif for mobile.
    In the LayerSlider options try choosing “autopaly after opening” and the “Play Muted” enabled:
    Enfold_Support_4293.jpeg
    this has worked on Android but it may not work on iPhone, iPhones are the strictest and may block it completely.

    Best regards,
    Mike

    in reply to: The Mailchimp contact form is not displaying #1432635

    Hi,
    I see that you are using Enfold v5.5, you will need to update to v5.6.10 then you will need to re-enter the Mailchimp API in the theme settings and then go to each page the element is on and resave it. Mailchimp changed their API to v3, so you need to update.
    If you can’t update automatically in the backend try manually updating.
    To update your version of Enfold manually 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

    Best regards,
    Mike

    in reply to: Blog Subcategory further pages cant be opened #1432634

    Hi,
    Thanks for your patience, I found that on your permalinks page your base had a dot in the field, I removed this for you and now your category pagination works correctly:
    Enfold_Support_4596.jpeg

    Best regards,
    Mike

    in reply to: Video loads through black #1432604

    Hi,
    I’m not sure what plugin they are using, you site is using a fallback image, this is the correct and recommended behavior and will consistently work in the future.

    Best regards,
    Mike

    in reply to: Buy 10 licence #1432601

    Hey Jabri,
    Thank you for your question, Enfold is only available at Theme Forest, they handle all licenses, so you can purchase them there. I’m not sure if you can add ten of them in the cart or not. There is no bulk purchase discount, so it will not cost you more to purchase them individually. Perhaps the Theme Forest support has another way to purchase ten licenses on one invoice, please try asking them.

    Best regards,
    Mike

    Hi,
    Typically a booking plugin or a store plugin like woocommerce handles the payment gateways, WordPress doesn’t connect to a payment gateway directly.

    Best regards,
    Mike

    in reply to: Woocommerce #1432515

    Hey Soner AK,
    Thanks for the link to your site, but I don’t see that you have Enfold installed, please try disabling all of your plugins and ensure that you are uploading the installable WP version from your Theme Forest account and not the full theme zip file with documentation.
    I see that you have the builder Elementor installed, please note that Enfold has it’s own built-in builder, “Advanced Layout Builder” and other builders may cause conflicts.
    Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
    If you have purchased your license in the past 6 months then please register your Purchase Code here.
    Then log into the support forum and open a new thread.

    Best regards,
    Mike

    in reply to: Header Layout: Logo left, Widgets right, menu below #1432513

    Hi,
    I’m not sure why you are seeing this, it works for me, please include an admin login to your site in the Private Content area so we can check.

    Best regards,
    Mike

    in reply to: submenu sticky on mobile #1432405

    Hi,
    If it is not working at the end of your child theme functions.php, but is working at the top of your child theme functions.php, this could be due to an error in your child theme functions.php, perhaps we should take a look, please include an admin login and FTP access in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: Price list issue using mobile #1432316

    Hey zanardelligolf,
    Thanks for the link to your page, your table is quite large:
    Enfold_Support_4592.jpeg
    so on mobile it will show one column at a time:
    Enfold_Support_4594.jpeg
    This is correct, since it will not fit on a mobile screen.

    Best regards,
    Mike

    in reply to: Can’t install demo import #1432314

    Hi,
    Thanks for the login, please ask your webhost to enable PHP ZipArchive Extension, this is disabled on your server.

    Best regards,
    Mike

    in reply to: Accordion #1432312

    Hey Hans K.,
    Thank you for your patience, if you link to your page we can help with changing the colors and icons for your accordion, but I don’t have any ideas to make it only show when the “FAQ” button is clicked.

    Best regards,
    Mike

Viewing 30 posts - 3,871 through 3,900 (of 34,601 total)