Forum Replies Created

Viewing 30 posts - 23,251 through 23,280 (of 67,510 total)
  • Author
    Posts
  • in reply to: Mobile menu not working after update #1102669

    Hi,

    Thanks for the update.

    Did you modify the header.php file in the child theme? Please update the template files inside the child theme folder. And post the login details in the private field so that we can check it further.

    Best regards,
    Ismael

    in reply to: Fixed Frame > Content alignment in the tab section #1102667

    Hey Peter,

    Thanks for the update.

    Did you add the css code? That should center align the content of the tab section when “fixed frame” is enabled. Here it is:

    .av-framed-box .av-layout-tab-inner .container {
        margin: 0 auto;
    }
    

    Best regards,
    Ismael

    in reply to: Change size and layout of icon box #1102666

    Hi,

    Thanks for the update.

    You can adjust the width of the iconbox for smaller screens using css media queries.

    @media only screen and (max-width: 767px) {
        .center_icon_box {
            width: 100% !important;
            float: none !important;
        }
    }

    Best regards,
    Ismael

    in reply to: Troubles with BLOG #1102665

    Hi,

    o would I have to add each post-id to this code?

    You need the ID of the newly created page with the full width sub menu element, not the id of the posts where we are going to render the menu. The content of that page, in this case the full width sub menu, will display in the archive pages. And if you want the menu to display on single post pages as well, replace the filter with the following.

    add_action( 'ava_after_main_title', 'ava_after_main_title_mod' );
    function ava_after_main_title_mod() {
        if( is_archive() || is_single() ) 
        {
            $the_id = 4679;
            $post = get_post( $the_id );
            $content = Avia_Builder()->compile_post_content( $post );
            echo $content;
        }   
    }

    Best regards,
    Ismael

    in reply to: Menu Not Visible #1102664

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Child theme style.css not loading #1102663

    Hi,

    Thanks for the update.

    You should remove the margin or adjust it for smaller screens.

    @media only screen and (max-width: 1150px) {
    .responsive #top #header #header_main .inner-container .main_menu {
        margin-left: 0;
    }
    }

    Make sure that you add that code below the previous one. CSS media queries are usually added at the very bottom of the stylesheet.

    Best regards,
    Ismael

    in reply to: Blog setting #1102661

    Hi,

    Yes, that should be added in the functions.php file.

    You should create a child theme if the site is not using one, yet.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Back end, front end, not working #1102660

    Hi,

    Alright. Update us once the staging site is ready. And please refrain from snapping your finger.

    Best regards,
    Ismael

    in reply to: stretch image in mobile home page #1102659

    Hi,

    Thanks for the update.

    We don’t see any sections on that page, only the slider. Please check the page link.

    Best regards,
    Ismael

    in reply to: Extra Elements #1102658

    Hi,

    You should not add the code again if it’s already there. It will cause a duplicate error. I’m not really sure how it got there because I got an error when tried to edit that file.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    You have set the parent menu items as anchors, so the page will scroll down to the corresponding anchor or section when the item is clicked. That is the default behavior.

    the submenu opens much to fast!

    You can actually change the speed of the slide effect. Edit the js > avia.js file and look for this code around line 1165:

    	//toogle hide/show for submenu items
    		$('.html_av-submenu-display-hover').on( 'mouseenter', '.av-width-submenu', function (e) 
    		{ 
    			$(this).children("ul.sub-menu").slideDown('fast');	
    		});
    
    		$('.html_av-submenu-display-hover').on( 'mouseleave', '.av-width-submenu', function (e) 
    		{ 
    			$(this).children("ul.sub-menu").slideUp('fast');	
    		});
    

    Set the slideDown and slideUp speed from “fast” to “slow” or set an integer value in milliseconds.

    // http://api.jquery.com/slideDown/

    Best regards,
    Ismael

    in reply to: Testimonials gone and Video Widget #1102654

    Hi,

    Thank you for the screenshot.

    I have asked the team to check this. Please wait for their response. Do you see any errors in the browser console?

    // https://support.apple.com/en-ph/guide/safari-developer/console-tab-dev170bfef99/mac

    Best regards,
    Ismael

    in reply to: Personal Token two #1102653

    Hi,

    Thanks for the update.

    The latest version is 4.5.7, not 4.5.3. You can download that version from your Themeforest account. Please refer to the documentation or the link above for manual updating.

    Best regards,
    Ismael

    Hi,

    What is the actual model of your iPad device? Later versions or models of the iPad device has larger screen resolution compare to the older ones, particularly the “Pro” versions.

    Device Native Resolution (Pixels) UIKit Size (Points)
    iPad Pro 12.9-inch (2nd generation) 2048 x 2732 1024 x 1366
    iPad Pro 10.5-inch 2224 x 1668 1112 x 834
    iPad Pro (12.9-inch) 2048 x 2732 1024 x 1366
    iPad Pro (9.7-inch) 1536 x 2048 768 x 1024

    You can use this css code to adjust the column breakpoint for those devices.

    @media only screen and (max-width: 1366px) and (min-width: 768px) {
        .responsive.av-no-preview #top .av-medium-columns-2 .av-masonry-entry {
            width: 49.80%;
        }
    }

    Best regards,
    Ismael

    Hey Lukas,

    Thank you for using Enfold.

    The “www.google.com/recaptcha/api.js” script is not loading in other languages. Did you add any custom modifications in the theme?

    Best regards,
    Ismael

    in reply to: Contact Form Reply-To Address #1102381

    Hi,


    @scotthco
    : You should be able to adjust the mail header using the “avf_form_mail_header” filter. A few example can be found in the following threads.

    // https://kriesi.at/support/topic/change-from-in-the-contact-form/#post-1055920
    // https://kriesi.at/support/topic/set-reply-to-header-from-user-entered-mailadress/#post-1081044


    @ehCanada
    : What are the issues with the contact form in your site? Please create a new thread with the link to the site or contact page. We would to check it.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Did you remove the form? We can’t find it in the home page. Please create a test page so that we can inspect the issue.

    Best regards,
    Ismael

    in reply to: Image with SonarEffect #1102378

    Hi,

    Thanks for the update.

    That page doesn’t exists. Did you move the site? Please post the new url in the private field.

    Best regards,
    Ismael

    in reply to: Replacing the search box icon with text #1102375

    Hi,

    Glad to hear that you fixed it. And thanks for sharing. We’ll close the thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: video sound in color section background #1102374

    Hi,

    Thanks for the update.

    That’s possible with the Layer Slider. You can set the slide background effect to “Kenburns”. You can also replicate that effect using the layer transitions.

    Best regards,
    Ismael

    in reply to: Buttons position in cookies message bar #1102373

    Hi,

    We would like to apologize for the late response.

    The buttons should be positioned under the consent text by default. Did you add any css modification for the consent container?

    Try this css code in the Quick CSS field.

    .avia-cookie-consent a.avia_cookie_infolink, .avia-cookie-consent p {
        width: 100%;
    }

    Or post the login details in the private field so that we can check the site.

    Best regards,
    Ismael

    in reply to: Blog Post Excerpt length #1102372

    Hi,

    Sorry for the delay. Please remove the previous script and use this filter instead.

    add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1);
    function avf_postgrid_excerpt_length_mod($length)
    {
       $length = 30;
       return $length;
    }
    

    Default excerpt length value is 60.

    Best regards,
    Ismael

    in reply to: Child theme style.css not loading #1102368

    Hi,

    Thanks for the update.

    You can apply a left margin to the main menu container.

    .responsive #top #header #header_main .inner-container .main_menu {
        order: 0;
        flex-basis: auto;
        align-items: center;
        align-self: center;
        margin-left: 2%;
    }

    Best regards,
    Ismael

    in reply to: stretch image in mobile home page #1102367

    Hi,

    Thanks for the update.

    Add a full width slider and have it display on mobile devices instead of the default one. You can use the elements’ Screen Options to toggle their visibility on different screen size or device.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Did you remove the logo? It’s not visible in the header.

    You can add this css code to adjust the height of the logo when the page is scrolled.

    .header-scrolled .logo img {
        height: 80%;
        max-height: 140px !important;
    }
    

    Best regards,
    Ismael

    in reply to: How to create a masonry gallery with YouTube videos #1102364

    Hi,

    Thanks for the update.

    You can’t embed the iframe tag in a masonry element directly. You can only designate a youtube url to a particular masonry item and have that video open inside a lightbox when you click on the item.

    Best regards,
    Ismael

    in reply to: Blog Layout Page and Post #1102363

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    And don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Woocommerce Single Product Page Sidebar #1102362

    Hi,

    You should adjust this code:

    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: left;
        margin-right: 5%;
    }
    

    Set the “float” property from left to right and remove the right margin.

    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: right;
        margin-left: 5%;
    }

    Best regards,
    Ismael

    in reply to: Slight delay in slider image loading #1102361

    Hi,

    Thanks for the update.

    That is 1.7s improvement in loading speed, which is actually huge. It may not look like it but it is. Unfortunately, site optimization is beyond the scope of support, so you may need to implement this yourself. We can only provide resources about it but we can’t help you with the actual implementation. Please follow the recommendations provided by the speed testing tool.

    Best regards,
    Ismael

    in reply to: FB debug tool cached on 4.5.6 Enfold update #1102360

    Hi,

    Thanks for the update.

    Did you test it using another theme? I don’t really think this is an issue with Enfold. It’s probably an issue with the debugger’s cache mechanism.

    Related thread: https://woorkup.com/facebook-open-graph-debugger-cache-clearing/

    The solution here might help.

    // https://stackoverflow.com/questions/5776567/facebook-open-graph-not-clearing-cache

    Just append the “fbrefresh=” query to the url.

    Best regards,
    Ismael

Viewing 30 posts - 23,251 through 23,280 (of 67,510 total)