Forum Replies Created

Viewing 30 posts - 5,641 through 5,670 (of 34,919 total)
  • Author
    Posts
  • Hey achteins,
    Thank you for your patience, as I understand your question disabling the theme lightbox may help with the Event Tickets Plus plugin, to do so try the settings at Enfold Theme Options ▸ Lightbox Modal Window.
    Unfortunately I don’t think it is possible to deactivate the data collection of all other guests, in Enfold the plugin needs to do this.
    I don’t have any experience with Event Tickets Plus and the only documentation I could find says woocommerce is required, I see that you are not using woocommerce and that the The Events Calendar support was not able to help you, they would know a lot more about this.
    If disabling the lightbox doesn’t help then try creating a test page where we can see the issue, perhaps we will understand better.

    Best regards,
    Mike

    in reply to: logo at center and above the submenu #1420136

    Hi,
    To have very large menu items and align them at the top try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #av-burger-menu-ul {
    	vertical-align: top;
    }
    @media only screen and (max-width: 767px) { 
    #av-burger-menu-ul .avia-menu-text {
    	font-size: 60px;
    }
    }
    @media only screen and (min-width: 767px) { 
    	#av-burger-menu-ul .avia-menu-text {
    	font-size: 80px;
    }
    }

    feel free to adjust to suit, this is the expected results:
    Enfold_Support_3415.jpeg
    Since the original question has been answered we will close this thread as it has now covered multiple topics, please note that we ask each thread to limit to one topic.
    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: WPML flags #1420134

    Hey Stilecatalini,
    Try following the Polylang instructions ▸ Can I use my own flags for the language switcher?

    Best regards,
    Mike

    in reply to: Small type on selected slides in Enfold #1420133

    Hi,
    Thank you for your patience and the link to your site, I cloned your last slider item and saw the font size error on the frontend, it looks like the css for the slide was not added to the style for some reason, if you add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field it will correct this if you want to add more slides:

    #top #wrap_all .avia-slideshow .av-slideshow-caption .avia-caption-title {
        font-size: 36px;
    }
    #top .avia-slideshow .avia-caption-content p {
        font-size: 20px;
    }

    I didn’t add this and I removed the cloned slide I created.
    I don’t know why this has occurred, I tried looking at your Enfold Theme Options ▸ Performance settings and your plugins, etc but didn’t find a cause.
    I created a test page on my site with 10 slides and your layout and font sizes and they all worked correctly. So you could try using this css for now and if you find any other issues in the future perhaps they will also point to a cause for this.
    Or you could try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    Perhaps your server is also caching, so try clearing your server cache and if it is using object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc try disabling it to see if this helps. Otherwise if you don’t have any other issues I would try using the css for now.

    Best regards,
    Mike

    in reply to: (Page) Footer not loading correct on search result page #1420129

    Hi,
    I see that you have a custom loop-search.php & search.php in your child theme, does the footer show correctly when these are removed?

    Best regards,
    Mike

    in reply to: Video startet ohne Ton #1420128

    Hi,
    You can not un-mute video on auto play, even if you did most browsers would either not play the video or mute it.
    This is not something you can override easily, perhaps there is a plugin or a blackhat script that will do this, but probably not consistently for all browsers.
    The volume is removed on mobile by the WordPress player, they said it is not needed because the volume keys on the phone are the control.

    Best regards,
    Mike

    in reply to: CSS Bug 4 columns without post css #1420127

    Hey Thomas,
    In my test, 1/4 columns are designed to show at 48% between 768px and 989px, with a column spacing is set to 4% this is the correct behavior.
    Whe two 1/4 columns are side-by-side, both columns are the same size, 48%.
    Enfold_Support_3413.jpeg

    Best regards,
    Mike

    in reply to: Font weight not right #1420126

    Hi,
    When I compare your site and the google font 300, then look the same to me.
    Enfold_Support_3411.jpeg

    Best regards,
    Mike

    in reply to: Gallery Lightbox not working #1420125

    Hi,
    I checked your two example pages above:

    Here is the example on the page:

    Here is a test page with only that element on it:
    https://skutt.com/gallery-test/

    and the lightboxes are working in both of them so I assume that disabling the plugins as suggested helped, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: The font does not display well on iphone #1420123

    Hey Bastian,
    Thank you for your patience and the link to your site, I see that you are using the montserrat font and it looks correct when I compare it to the Google Font page for Montserrat
    Can you explain what you don’t like about it, have you tried choosing a different font?

    Best regards,
    Mike

    in reply to: Mega menu with Description & icon #1420122

    Hi,
    Thank you for your patience, to add the descriptions below the mega menu items and show a icon next to the menu items:
    Enfold_Support_3401.jpeg
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function enfold_menu_description($item_output, $item, $depth, $args) {
        if (!empty($item->description)) {
            $item_output .= '<span class="menu-description">' . esc_html($item->description) . '</span>';
        }
        return $item_output;
    }
    add_filter('walker_nav_menu_start_el', 'enfold_menu_description', 10, 4);
    function enqueue_font_awesome() {
        wp_enqueue_style('font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');
    }
    add_action('wp_enqueue_scripts', 'enqueue_font_awesome');
    function add_icon_to_menu_item($item_output, $item, $depth, $args) {
        // Get the custom icon class from the menu item's CSS Classes
        $custom_classes = implode(' ', $item->classes);
        preg_match('/menu-item-icon-([^ ]+)/', $custom_classes, $matches);
    
        if (!empty($matches[1])) {
            // Use the custom icon class specified in the menu item
            $icon_class = esc_attr($matches[1]);
            $icon = '<i class="fa ' . $icon_class . '"></i>';
            $item_output = $icon . $item_output;
        }
        return $item_output;
    }
    add_filter('walker_nav_menu_start_el', 'add_icon_to_menu_item', 10, 4);

    The first one adds the description below the menu item, the second one adds the Font Awesome icons because it is easier to use a class name to determine the icon used, entypo-fontello icons don’t use class names the same way, and the third function adds the icon next to the menu item based on the class used in the menu item.
    So to show the menu item description and custom classes please enable it in the menu page screen options at the top of the page:
    Enfold_Support_3403.jpeg
    then add your description and the icon you want to use in this format menu-item-icon-fa-users
    the first part menu-item-icon- tells the function that a icon will be used, and then the Font Awesome Icon code is appened to the class fa-users
    Enfold_Support_3405.jpeg
    these are the classes I used in this example:
    menu-item-icon-fa-users
    menu-item-icon-fa-phone
    menu-item-icon-fa-question
    menu-item-icon-fa-life-ring

    then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header .avia_mega_div > .sub-menu > li > ul > li.menu-item > i ~ a {
    	display: inline-block;
    }
    #top #header .avia_mega_div > .sub-menu > li > ul > li.menu-item .menu-description {
    	display: block;
        padding: 0 25px;
    }

    Please give this a try.
    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: Tabbed Content Slider #1420110

    Hi,
    I found that this is due to the title length of some of your elements, earlier it looks like we offered a customization to move the portfolio title, but now for smaller screens some of the titles are three lines and others are one line, so when the grid is created they will all have the height of the larest item giving the smaller items some white space. I have adjusted the css a little but it you could change the length of the items to similar it would be better.
    Enfold_Support_3399.jpeg

    Best regards,
    Mike

    in reply to: Number of social media icons #1420103

    Hi,
    Can you link to the png image here so we can try?

    Best regards,
    Mike

    in reply to: Reitersektion, Symbolboxen, Hauptmenü #1420030

    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: Image with hotspots; close onclick #1419945

    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

    in reply to: Number of social media icons #1419943

    Hi,
    Where are you seeing this error? Fontello when you try to add a SVG?
    If you can’t create a SVG that fontello will take then try using the convert site I linked to and convert a PNG to SVG
    PLease remember that you can’t use a colored image, it must be black & white.
    Try seeing this thread: fixing SVG icons on icomoon before Fontello

    Best regards,
    Mike

    in reply to: Reitersektion, Symbolboxen, Hauptmenü #1419942

    Hi,
    For your special heading subheadline, when you choose a special heading with a Subheading you will see a option in the font tab to set the font size, there is not a site wide font size for each specific element, but you could create a CET – Custom Element Templates and then use your element on your site. You can also do this for your buttons, or since your buttons are set to use the theme color you can change the color in your styling, but this will also effect other elements, so it would probably be better to create a “read more” CET button instead.
    Hopefully this answers your two new questions, but please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker, and makes it easier for Mods to help. For further questions please open a new thread
    Please let us know if your original question has been answered and we can close this thread, thanks for your understanding.

    Best regards,
    Mike

    in reply to: Function creates error after update #1419883

    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

    in reply to: Reitersektion, Symbolboxen, Hauptmenü #1419881

    Hi,
    Oh, I see, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .main_color.iconbox_top .iconbox_content {
    	background: #fff;
    	box-shadow: unset;
    }

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

    Best regards,
    Mike

    in reply to: Font is loaded from old url #1419877

    Hi,
    If it’s the built-in font and it’s being loaded from the insecure http, then please check your settings at:
    WordPress ▸ Settings ▸ General ▸ Site Address
    WordPress ▸ Settings ▸ General ▸ WordPress Address

    If this doesn’t correct please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: logo at center and above the submenu #1419797

    Hi,
    Sorry, I don’t understand what you mean, we are talking about the logo being centered and showing when the burger menu is open, so just like my original screenshots above, on mobile the logo is centered:
    Enfold_Support_3397.jpeg
    and when the menu is open the logo shows centered:
    Enfold_Support_3395.jpeg
    Please note that you should test after clearing your cache and while logged out because the admin topbar that shows when you are logged in will displace the menu and logo.

    Best regards,
    Mike

    in reply to: logo at center and above the submenu #1419766

    Hi,
    It looks like you didn’t add the code above to center the logo, I added it for you and now the logo is centered.
    This doesn’t include adding a mail icon, please start a new topic for that request.

    Best regards,
    Mike

    in reply to: Productpage #1419764

    Hi,
    Glad that this helped, for mobile try adding this css and adjust to suit:

    @media only screen and (max-width: 767px) { 
    	.responsive #top.archive.woocommerce-shop #wrap_all .container_wrap_first > .container {
    	max-width: 60%;
    }
    }

    Best regards,
    Mike

    in reply to: Reitersektion, Symbolboxen, Hauptmenü #1419762

    Hi,

    1. How can I re-sort the tabs in the tab section without having to create them again?

    In the tab section element place your mouse over the double arrow in the tab and drag the tab to a new placement:
    Enfold_Support_3385.jpeg
    the tab number won’t change but the title and content will change.

    2. I would like to have the symbol boxes without frames, but the symbols in the same size and view as symbol boxes with frames, or can I set the color of the text box to white or another color?

    I assume this is your example:
    Enfold_Support_3387.jpeg
    I’m not sure that I understand your question, both elements are the same size, but the first one with no background color looks larger because it blends into the element padding.
    If you change second one the background color to white it will look the same:
    Enfold_Support_3389.jpeg
    so I’m not sure what you want to achieve.It dose look like you are using a different font size for the first box:
    Enfold_Support_3391.jpeg

    Best regards,
    Mike

    in reply to: Reitersektion, Symbolboxen, Hauptmenü #1419706

    Hey Petra,
    Thank you for your patience, we are not able to view the page you have linked to in the Private Content area without a login, please include an admin login in the Private Content area so we can be of more assistance.
    To create a menu like on kendrion.com you will need to use a plugin, I have not seen any menus like this so try searching the WordPress Plugin Library.

    Best regards,
    Mike

    in reply to: Contact Form elements allow no blanks in title #1419702

    Hey Tilman,
    Typically not being able to use the space bar to add spaces in the elements is caused by a few different plugins, try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If disabling all of your plugins doesn’t solve then please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: enfold header with elementor footer #1419696

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution, perhaps other users will find this helpful. 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

    in reply to: Productpage #1419613

    Hi,

    I think the issue is because the page has three columns with no max-width, so at 1024px the images only need to fill that space:
    Enfold_Support_3377.jpeg
    where on a large desktop the page width is much more:
    Enfold_Support_3379.jpeg
    so to add a page max width try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .responsive #top.archive.woocommerce-shop .container_wrap_first > .container {
    	max-width: 1024px;
    }

    Enfold_Support_3382.jpeg
    adjust the max-width to suit.

    Best regards,
    Mike

    in reply to: Enfold – Gutenberg – Crazy code #1419612

    Hi,
    This was an error because you added the snippet as a “HTML Snippet”:
    Enfold_Support_3373.jpeg
    I changed it to a “PHP Snippet” for you
    Enfold_Support_3375.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 5,641 through 5,670 (of 34,919 total)