Forum Replies Created

Viewing 30 posts - 17,851 through 17,880 (of 67,597 total)
  • Author
    Posts
  • in reply to: Video background malfunctioning on mobiles #1234069

    Hey VJLoops-GT,

    Thank you for the inquiry.

    Are you referring to the following video? (see private field)

    Looks like it’s how the video is actually created — with an overlap or duplicate effect in the top area.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    We might have to delete the font entry manually in the wp-content > uploads folder and from the database. Please provide the file server and database account in the private field so that we can access them.

    IMPORTANT: Please don’t forget to create a backup of the site so that we can restore it in working condition in case something goes wrong.

    Best regards,
    Ismael

    in reply to: contact form not sending emails #1234061

    Hi,

    Sorry for the delay. We usually reply within 24-48 hours, but please expect some delay during weekends.

    Now going to back to the issue, we already set the editor to Classic, so you don’t have to change it. We also drafted a page, added a few elements to it and managed to see those elements in the preview without issue. We are testing it on Firefox Windows 10. Please check the screenshot in the private field and take note of the URL showing that it’s a preview of the page.

    On which browser are you testing this?

    Best regards,
    Ismael

    in reply to: change social media icons in top header #1234058

    Hi,

    Thank you for the update.

    The default social icons are actually fonts and not images, so if you want to use actual images for the social icons, you may need to use a different plugin or use widgets to insert additional content in the header. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Or replace the social icon fonts with background images as suggested in the following thread.

    // https://kriesi.at/support/topic/iconos-personalizados/#post-993528

    If however you only need to change the color of the social icons, you can start with this css code.

    #top .social_bookmarks_twitter a {
    	color: skyblue;
    }
    
    #top .social_bookmarks_facebook a {
    	color: blue;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Have you tried using the Navigation Menu widget in the Appearance > Widgets panel? You can create a custom menu in the Appearance > Menus panel and have it display on the sidebar or the certain pages using the Navigation Menu widget. And if you’re using the advance layout builder, you can use the Widget Area element and select the widget area containing the navigation.

    Best regards,
    Ismael

    Hi,

    Thank you for the clarification.

    We can now see the issue on mobile view. To fix it, we can remove the top padding with css and use css media queries so that the style changes will only be applied on smaller screens.

    Add this code in the Quick CSS field or the style.css file.

    @media only screen and (max-width: 767px) {
    .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption        {
    	padding-top: 0;
    }
    }
    

    Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Button Color, Alignment and Translation Problem #1234048

    Hey Glammy2020,

    Thank you for the inquiry.

    1.) You can use this css code to adjust the background color of the add to cart button.

    #top .avia_cart_buttons {
    	background-color: red;
    }

    2.) We can also use css to apply a minimum height to the product header in order to align the buttons.

    #top .inner_product_header {
    	height: 136px;
    }
    

    Best regards,
    Ismael

    in reply to: Play video in fullscreen #1234046

    Hi,

    You’re welcome! Glad it’s working. We’ll forward the thread to our channel for further considerations. Please don’t hesitate to open a new thread if you need anything else.

    Best regards,
    Ismael

    Hey!


    @schoolnewspaper
    : We did a quick test on it previously and was not able to reproduce the issue, but not on Safari because the OP forgot to include that particular detail on his initial reply. Could you provide a link to the page containing the video so that we can test it further?

    I’ll add a note in the thread so that other moderators can check it on Safari.

    Note: Requires Safari Test

    Cheers!
    Ismael

    in reply to: Custom single.php with avia/enfold Shortcodes #1234042

    Hi,

    You may want to refrain from using the Post Content shortcode and instead include the shortcodes directly in the templates to avoid any unintended behavior.

    Is there a better way to use the avia shortcodes?

    As you may have noticed, builder elements are based on the shortcodes API, so you would have to treat them as you would other shortcodes.

    // https://css-tricks.com/snippets/wordpress/shortcode-in-a-template/

    Best regards,
    Ismael

    in reply to: Keyboard accessibility for DropDown menus #1233909

    Hey jomo5280,

    Thank you for the inquiry.

    Please check the following thread for a possible solution.

    // https://kriesi.at/support/topic/accessibility-issues-with-main-nav-leaves-us-sites-in-danger-of-lawsuits/#post-1226327

    The modifications there will allow users to tab through the sub menu items or allow them to use the keyboard to access the hidden menu items.

    Best regards,
    Ismael

    in reply to: Sound won't increase when unmuted #1233904

    Hi,

    Thank you for the update.

    This is actually an issue with the media element (mejs) player script. We can fix it by editing the mejs file directly but it’s not recommended. What we can do instead is add a custom audio toggle inside the slider as shown in the following thread.

    // https://kriesi.at/support/topic/video-controls-dont-show-up-on-full-width-slider/#post-1232199

    You have to add the script and the css code to create a custom-mute button inside the slider. Demo can be found here:

    // https://webers-testseite.de/mute-unmute-video-slide/

    Best regards,
    Ismael

    in reply to: Modify tab title on product page on mobiles only #1233901

    Hey fcp,

    Thank you for the inquiry.

    You can wrap the changes for the additional information tab in the following function.

    // https://developer.wordpress.org/reference/functions/wp_is_mobile/

    Example:

    if(wp_is_mobile()) {
       // do magic here
    }
    

    Best regards,
    Ismael

    in reply to: Mega Menu on Mobile Not Collapsing! #1233899

    Hi!

    Please continue on the following thread.

    // https://kriesi.at/support/topic/mega-menu-not-working-on-mobile-critical-error-on-website/#post-1233898

    We’ll close this one for now. Thank you for your patience.

    Best regards,
    Ismael

    Hey!

    Thank you for the info.

    We can now see the issue and it happens because the script that generates the mega menu considers the columns as empty, which they are because they don’t contain any child menu items, and so it doesn’t render the items. You may need to create another set of the same menu without images, disable the mega menu option and have it display instead of the current one on mobile view. You can toggle the visibility of the menu items using css media queries.

    // https://kriesi.at/support/topic/how-to-have-a-full-width-submenu-automatically-display-on-all-pages/#post-737157

    Cheers!
    Ismael

    in reply to: Add button to header using burger menu #1233894

    Hi,

    Thank you for the update.

    The burger menu is dynamically generated based on the items in the default menu, so you have to insert the custom item directly in the menu, maybe add a unique class attribute or name to it, then we can provide the necessary css code to adjust its style. Or as suggested above, you can add more content inside the header using the widget area and the provided snippet in the documentation.

    Best regards,
    Ismael

    in reply to: Video controls don't show up on full width slider #1233892

    Hi,

    The reason the script didn’t work at first is because of the slider’s class name or attribute. He used custom-mute instead of mute-button. And the css code was missing in the Quick CSS field.

    Best regards,
    Ismael

    Hey fruntkeMarcel,

    Thank you for the inquiry.

    You can use the “avf_google_recaptcha_badge_content” filter to adjust the recaptcha badge content or insert additional info to it.

    Example:

    add_filter('avf_google_recaptcha_badge_content', function($badge) {
       // $badge =	'<div class="av-google-badge-message hidden">';
       // $badge .=		__( 'This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy">Privacy Policy</a> and <a href="https://policies.google.com/terms">Terms of Service</a> apply.', 'avia_framework' );
       // $badge .=	'</div>';
       // $badge .= "<div class='custom-badge-content'>Additional Badge Content</div>";
       return $badge;
    }, 10, 1);
    

    You can also use the “avf_sc_contact_form_elements” filter to insert custom form fields.

    Best regards,
    Ismael

    in reply to: Darstellung Produkte: Product List statt Product Grid #1233764

    Hey mogasi,

    Thank you for the inquiry.

    Looks like you have already managed to adjust the product items and set the grid’s column width to 100% with this css code.

    .shop_columns_2 .products .product {
    	width: 100%;
    }

    Do you need anything else?

    Best regards,
    Ismael

    in reply to: Last update issue #1233695

    Hi,

    Sorry for the troubles. You can manually select a font in the Enfold > General Styling > Fonts panel. Maybe its time that you actually select the font so that you can remember it in the future just in case. Unfortunately, we are not yet sure why the slider animation is not working. Is there a staging or development version of the site?

    Best regards,
    Ismael

    in reply to: Flexbox Headers – un fix mobile header #1233688

    Hey JohnMYates,

    Thank you for the inquiry.

    – We don’t want the header fixed for Mobile / Tablet but I can’t seem to sort it properly.

    You should wrap this css code inside a css media query so that it only affects the desktop view.

    .html_header_sticky.html_mobile_menu_tablet #top #wrap_all #header, .html_header_sticky.html_header_transparency #top #wrap_all #header, .html_header_sticky #top #wrap_all #header {
    	position: fixed;
    }
    

    Replace it with:

    @media only screen and (min-width: 1024px) {
        .html_header_sticky.html_mobile_menu_tablet #top #wrap_all #header, .html_header_sticky.html_header_transparency #top #wrap_all #header, .html_header_sticky #top #wrap_all #header {
    	position: fixed;
        }
    }

    This should also work for the second issue.

    Best regards,
    Ismael

    in reply to: Enfold Layer Slider Translation #1233646

    Hi,

    Thank you for the inquiry.

    Did you create separate sliders for each language, or duplicate the existing ones? You don’t need to do this because a single slider will suffice for all languages. Please delete the duplicates and keep the original slider. Or post the login details in the private field so that we can check the sliders and translations properly.

    Best regards,
    Ismael

    in reply to: Google Maps tool tips shortcode #1233644

    Hi,

    Sorry for the delay. You will have to deregister the default script and enqueue it back using the new path in the child theme directory if you want to preserve the modification after an update.

    // https://developer.wordpress.org/reference/functions/wp_dequeue_script/
    // https://developer.wordpress.org/reference/functions/wp_register_script/
    // https://developer.wordpress.org/reference/functions/wp_enqueue_script/

    wp_register_script( 'avia_google_maps_api_script' , AVIA_JS_URL . 'conditional_load/avia_google_maps_api.js', array( 'jquery' ), $vn, true );
    

    Please create a change log or a note about the modification for future reference.

    Best regards,
    Ismael

    Hey sbott,

    Thank you for the inquiry.

    The analytics or tracking script doesn’t load when the Google Analytics privacy toggle is grayed out or disabled. Only when we toggle the privacy button, then accept the privacy cookie does the analytics load. How do you check the scripts?

    Best regards,
    Ismael

    in reply to: Lightbox not working on full-screen slider #1233636

    Hey aweterings,

    Thank you for the update.

    The full width caption overlay covers the slider link. To fix the issue or to prevent the caption from covering the whole slider, try to use this css code in the Quick CSS field.

    #top .caption_fullwidth {
        width: 400px;
    }
    
    #top .caption_fullwidth .slideshow_caption {
    	width: 100%;
    }

    Please don’t forget to toggle the Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. It seems to be an issue with the theme’s Performance > File Compression settings. The Advance Layout Builder (ALB) works when the option is disabled. You can keep the compression disabled for now or use a different minification plugin once you’re done configuring the site.

    Best regards,
    Ismael

    in reply to: Options Tables Huge ! #1233632

    Hi,

    Thank you for the update.

    Did you modify the tab_section.php or the tab_sub_section.php file in the child theme? The tab section title or navigation disappears because it slides along with the tab section content when it’s not supposed to.

    Best regards,
    Ismael

    in reply to: Grid Row Cell – how make arrow point to image #1233631

    Hi,

    Glad to know it’s working. If you want to adjust its vertical position, try to apply a top margin to the element.

    margin-top: 50px;
    

    And if you want to pull it upwards, try to use a negative value instead.

    margin-top: -50px;
    

    Best regards,
    Ismael

    in reply to: Where Logo in theme stored? #1233630

    Hi,

    Thank you for the info.

    You can get the default logo image ID using this snippet.

    $logo = avia_get_option( 'logo' );
    

    Yes, the logo function can be found in the enfold\framework\php\function-set-avia-frontend.php file > avia_logo.

    To change the login logo, please check the documentation.

    // https://codex.wordpress.org/Customizing_the_Login_Form

    If you only need the default logo, look for the logo.png image in the enfold\images\layout folder.

    Best regards,
    Ismael

    Hi,

    The plugin probably has a script that replaces placeholders with certain content. Unfortunately, we are not familiar with its code, so we are not sure if it is actually what’s happening. Please contact the plugin author for additional info.

    Thank you for your patience.

    Best regards,
    Ismael

Viewing 30 posts - 17,851 through 17,880 (of 67,597 total)