Forum Replies Created

Viewing 30 posts - 6,451 through 6,480 (of 67,597 total)
  • Author
    Posts
  • in reply to: Row settings mailchimp signup form #1430785

    Hey Anouk,

    Thank you for the inquiry.

    Did you add any css modifications to the site? To override the current styles, please add this code.

    #top .avia_ajax_form .form_element_half {
        margin-left: 5.5% !important;
        width: 47%;
    }
    
    #top .avia_ajax_form .form_element_half:first-child {
        margin-left: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: How can i style different Blog Category? #1430784

    Hi,

    Alright! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Deleted Sites from the Standard demo #1430782

    Hey Thomas,

    Thank you for the inquiry.

    Importing another demo will override the existing settings, so we don’t recommend it. If you can provide links to the demo pages you’d like to replicate, we’ll provide you with the exact shortcodes. For recreating the portfolio ajax and blog grid pages from the default demo, here are the shortcodes:

    Blog Grid: https://pastebin.com/uZbSxkxY
    Portfolio Ajax: https://pastebin.com/mePHMpwP

    You will need to set the builder to debug mode to add these shortcodes in the shortcodes field. For more details on enabling debug mode, you can refer to the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Trouble with ifRame #1430779

    Hey sophiasbiti,

    Thank you for the inquiry.

    If the iframe is causing errors in the builder, you might want to consider creating a custom shortcode for it. Instead of embedding the iframe directly into the builder, you can use the custom shortcode. This shortcode will then render the iframe on the frontend.

    Example:

    // Define a custom shortcode for iframe
    function custom_iframe_shortcode($atts) {
        // Set default attributes
        $atts = shortcode_atts(
            array(
                'src' => '',
                'width' => '100%',
                'height' => '300',
            ),
            $atts,
            'custom_iframe'
        );
    
        // Extract attributes
        $src = esc_url($atts['src']);
        $width = esc_attr($atts['width']);
        $height = esc_attr($atts['height']);
    
        // Output the iframe code
        $output = '<iframe src="' . $src . '" width="' . $width . '" height="' . $height . '" frameborder="0" allowfullscreen></iframe>';
    
        return $output;
    }
    
    // Register the shortcode
    add_shortcode('custom_iframe', 'custom_iframe_shortcode');
    

    You can use it in in the ALB like this:

    [custom_iframe src="https://example.com" width="100%" height="400"]
    

    Please check the link below for more info.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    in reply to: use avia with plugin passster’s content #1430778

    Hi,

    Thank you for the update.

    At the moment, this isn’t possible, unfortunately. You might consider hiring a freelance developer to extend the plugin and make it compatible with the Advanced Layout Builder.

    Best regards,
    Ismael

    in reply to: Elements are not editable or the content visible #1430238

    Hi,

    Thank you for the info.

    We get this error when we try to edit one of the elements, which seems to be coming from a plugin called “actovent-map”. Have you tried disabling this plugin temporarily?

    actovent-map-admin.js?ver=1.0.0:5 Uncaught Error: Map container not found.
        at i._initContainer (actovent-map-admin.js?ver=1.0.0:5:37517)
        at i.initialize (actovent-map-admin.js?ver=1.0.0:5:26026)
        at new i (actovent-map-admin.js?ver=1.0.0:5:2616)
        at t.map (actovent-map-admin.js?ver=1.0.0:5:141663)
        at actovent-map-admin.js?ver=1.0.0:40:17
        at actovent-map-admin.js?ver=1.0.0:42:3
    

    If the issue persists, please deactivate all plugins, then activate them back one at a time to check which one is causing this issue.

    Best regards,
    Ismael

    in reply to: Elements are not editable or the content visible #1430233

    Hi,

    Thank you for the inquiry.

    The elements in the builder displayed correctly when we edited a few pages. Could you specify on which page we can reproduce the issue?

    Best regards,
    Ismael

    in reply to: Bullets not showing in tooltips #1430232

    Hey whdsolutions,

    Thank you for the inquiry.

    Adding this css code should adjust the style of the ul and ol list inside the tooltip.

    .avia-tooltip ul, .avia-tooltip ol {
        list-style: disc outside !important;
    }
    

    Best regards,
    Ismael

    in reply to: Critical error can’t load backend #1430231

    Hi,

    Thank you for the info.

    We also encounter this error when we attempt to log in to the site.

    Fatal error: Allowed memory size of 62914560 bytes exhausted (tried to allocate 20480 bytes) in /homepages/43/d603302806/htdocs/site/wp-includes/functions.php on line 2190

    Have you tried increasing the PHP memory limit?

    // https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    You can add this code in the wp-config.php file.

    	
    define( 'WP_MEMORY_LIMIT', '256M' );
    

    Best regards,
    Ismael

    in reply to: Open Lightbox directly #1430226

    Hi,

    Great! Glad to know that you’ve found a working solution. Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Is it okay to unload Avia Layout Builder-related CSS? #1430225

    Hey mfuji,

    Thank you for the inquiry.

    Unloading CSS files should be fine, but be cautious as some features rely on these styles by default. For instance, the Accordion or Toggle styles are utilized in the Privacy & Cookies consent settings. There are alternative methods to improve site speed, and you can find more details in the following article.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: Latin text in search results #1430224

    Hey envatobunny,

    Thank you for the inquiry.

    It may take some time for the search results to be updated. If you wish to expedite the process, try building and submitting a sitemap to Google. Please refer to the documentation below for more info.

    // https://support.google.com/webmasters/answer/7451001#zippy=%2Csubmit-a-sitemap
    // https://developers.google.com/search/docs/crawling-indexing/sitemaps/build-sitemap

    Best regards,
    Ismael

    Hey cheffe,

    Thank you for the inquiry.

    We can’t seem to reproduce the issue on our end. Please check the short clip in the private field. Have you tried testing it on a different browser or device?

    Best regards,
    Ismael

    in reply to: Add and change color overlay for Masonry Gallery #1430221

    Hi,

    Thank you for the update.

    You can add this css code to hide the overlay on hover.

    #top .av-caption-style-overlay .av-masonry-item-with-image:hover .av-inner-masonry-content {
        background: transparent;
    }

    Best regards,
    Ismael

    Hi,

    No problem! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: two Burger Menus #1430219

    Hey ausgesonnen,

    Thank you for the inquiry.

    Did you any modifications for the header? To remove the other burger icon, you can try this css code.

    #top #header .av-logo-container .av-main-nav > li.av-burger-menu-main {
        display: none;
    }

    Best regards,
    Ismael

    Hi,


    @northorie
    : Have you tried adding the css code that @Guenni007 provided above? We will post it again below. If you need further assistance, please open another thread, provide the site URL and post a screenshot. We will close this thread for now.

    @media only screen and (min-width: 990px) {
      #top .flex_cell.responsives-verhalten.nebeneinander  {
        background-attachment: scroll;
        padding: 0 !important
      }
    
      #top .flex_cell.responsives-verhalten.nebeneinander .flex_cell_inner {
        height: calc(56.25vw / 2) !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: customer reviews – align the text at the top #1430215

    Hi,

    Thank you for the info.

    To adjust the padding of the Color Section, please edit the element, go to the Layout > Margins & Padding section, then set the Section Padding settings to No Padding.

    You can also add the following css code to adjust the default section padding but this modification will be applied across the site.

    .content {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .avia-testimonial-wrapper {
        margin: 0;
    }
    

    Best regards,
    Ismael

    Hi,

    The Appearance > Theme File Editor is not accessible when we checked the site and we can’t purge the server cache for some reason. Would you mind asking your hosting provider to disable the server cache temporarily?

    To re-enable the Appearance > Theme File Editor, edit the wp-config.php file, then add this code.

    define( 'DISALLOW_FILE_EDIT', false ); 
    

    Best regards,
    Ismael

    in reply to: “Duplicate” in the page overview #1430133

    Hi,

    No problem! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We made edits in the Quick CSS field and tweaked the code a bit.The gap between the #service and #portfolio sections has now been reduced.

    @media only screen and (min-width: 989px) {
      #service {
        margin-bottom: -250px;
      }
    
      #portfolio {
        position: relative;
        z-index: 10;
      }
    }
    

    Best regards,
    Ismael

    in reply to: customer reviews – align the text at the top #1430131

    Hi,

    Thank you for the screenshots.

    The default space between the testimonial title and comment should not be that big. Did you add any css modifications to the site? We may need to visit the site in order to properly inspect the elements. Please provide the site URL in the private field.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The login account above seems to be invalid. Please check the info carefully. To fix the style issue of the title container on mobile view, please add this css code.

    @media only screen and (max-width: 1024px) {
    
      /* Add your Mobile Styles here */
      .title_container .breadcrumb {
        position: relative;
      }
    }

    Best regards,
    Ismael`

    in reply to: Open Lightbox directly #1430126

    Hi,

    We adjusted the code a bit in order to redirect the site to the actual masonry page after closing the lightbox.

    function ava_trigger_masonry_lightbox_on_load()
    { ?>
        <script>
        window.addEventListener('DOMContentLoaded', function() {
            (function($) {
                setTimeout(function () {
                    $('.av-masonry-container .av-masonry-item-with-image.lightbox-added:first').trigger('click');
                }, 100);
            }(jQuery));
        });
    
        (function($) {
            $(document).ready(function () {
                $('.av-masonry-entry').on('mfpOpen', function(e /*, params */) {
                    $('.mfp-close').on('click', function(e) {
                        e.preventDefault();
                        const redirect = "https://www.95mctest.es/product2/"
                        window.location.href = redirect
                    })
                });
            });
        }(jQuery));
        </script>
        <?php
    }
    add_action( 'wp_footer', 'ava_trigger_masonry_lightbox_on_load', 99 );

    You can adjust the redirect URL by editing this line.

     const redirect = "https://www.95mctest.es/product2/"
    

    Best regards,
    Ismael

    Hi,

    Why is it not recommended to have transparent header/logo on mobile?

    Transparent or fixed headers on desktop are used to enhance site navigation by keeping the main menu accessible while scrolling. However, on mobile devices, users can easily return to the top of a page or site with double taps and other mobile phone gestures, making fixed headers unnecessary. Also, fixed headers consume space that is better allocated for actual site content, and they can also be distracting.

    If you want to continue, you can add the code in the Enfold > General Styling > Quick CSS field or in the child theme’s style.css file.

    Best regards,
    Ismael

    in reply to: Enfold Pre-Sale Question #1430107

    Hey Chip Jones,

    Thank you for your interest in the theme.

    The Enfold theme is under continuous improvement, and updates are planned for the future. The team is committed to ensuring compatibility with the latest versions of WooCommerce, including version 8.2+, as well as the required PHP updates, such as PHP 7.4. You can always reach us here in the forum if you have any questions about the theme.

    Best regards,
    Ismael

    in reply to: Add and change color overlay for Masonry Gallery #1430106

    Hi,

    UPDATE: You can also apply the grayscale effect by adjusting the Advanced > Animation > Image Hover Effect settings.

    Best regards,
    Ismael

    in reply to: Add and change color overlay for Masonry Gallery #1430105

    Hey imagestudios,

    Thank you for the inquiry.

    Looks like you’ve managed to apply gray scaling to the masonry items with this css code.

    #top .av-hover-overlay-grayscale .av-masonry-entry .av-masonry-image-container {
        filter: grayscale(1);
    }
    

    To adjust the overlay color, try this css code.

    #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content {
        background: rgba(0,87,130,0.3);
    }
    

    Best regards,
    Ismael

    Hey bcndisseny,

    Thank you for the inquiry.

    1.) You can add the following css code to adjust the space below the floating columns. And consider changing the background color of the section from the default blue background to gray (#f8f8f8) so that it has the same background color as the section below.

    #service {
        margin-bottom: -250px;
    }
    

    2.) The cell containing the contact form is configured to not display on mobile view. To change this, please edit the cell, go to the Advanced panel, and adjust the Responsive > Element Visibility settings.

    Best regards,
    Ismael

    in reply to: Menu items background color #1430103

    Hi,

    Glad to know that @Mike was able to help you out! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 6,451 through 6,480 (of 67,597 total)