Forum Replies Created

Viewing 30 posts - 6,301 through 6,330 (of 67,463 total)
  • Author
    Posts
  • Hey dcarlsondesign,

    Thank you for the inquiry.

    We may need login to the staging site in order to properly inspect the issue. Please provide the login details in the private field. Have you tried disabling the plugins temporarily?

    Best regards,
    Ismael

    in reply to: Zoom effect on Main Slider images #1431341

    Hi,

    Thank you for the update.

    The Layer Slider plugin is available in the theme out of the box. You can insert the element slider using the Advance Layout Builder.

    Best regards,
    Ismael

    Hi,

    thank you i just posted the issue :)

    Did you create a new thread? Please provide the thread URL in the private field.

    Best regards,
    Ismael

    in reply to: Error searching with Enfold child #1431286

    Hi,

    Thank you for the update.

    What happens when you remove the pre_get_posts filter or the whole include_cpt_search function? It seems to be altering the default search query.

    add_filter( ‘pre_get_posts’, ‘include_cpt_search’ );
    

    Best regards,
    Ismael

    in reply to: Open Lightbox directly #1431285

    Hey Antonio,

    Thank you for the inquiry.

    e Lightbox there are a magnifying magnifying glass t

    What do you mean by “magnifying glass”? Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

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

    Hi,

    You can find freelancers who specialize in theme customization by visiting our customization page. If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the screenshot.

    You can try this css code to adjust the alignment of the testimonial items.

    #kundenempfehlungen .avia-testimonial-row-1 {
        height: 100%;
        display: flex !important;
        flex-direction: column;
    }
    
    #kundenempfehlungen .avia-testimonial-content {
        flex-grow: 1;
    }

    Best regards,
    Ismael

    in reply to: aviajs.aviaplugin error #1430804

    Hi,

    Thank you for the update.

    The pages seem to be rendering correctly when we checked them. In which page can we actually reproduce the issue? We list a few of the pages that we checked in the private field.

    Best regards,
    Ismael

    in reply to: How to round corners with enfold theme #1430799

    Hi,

    Thank you for the screenshot.

    You can add this css code to apply rounded corners to the columns described in the screenshot.

    .av-jn0d28qj-15603c59030066aa0cbd6af9e5a0610c .flex_column {
        border-radius: 30px;
    }
    

    Best regards,
    Ismael

    in reply to: Full Size featured image in blog posts #1430793

    Hey Phil,

    Thank you for the inquiry.

    To adjust the size of the blog post thumbnail, you can add this code in the functions.php file.

    function avf_customization_modify_thumb_size( $size ) {
          $size['entry_without_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          $size['entry_with_sidebar'] = array( 'width' => 9999, 'height' => 9999 );
          return $size;
    }
    
    add_filter( 'avf_modify_thumb_size', 'avf_customization_modify_thumb_size', 10, 1 );
    

    After adding the filter, you can use the following plugin to regenerate the thumbnails.

    // https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: ajax portfolio on mobile bigger tab column #1430792

    Hey mediafacto,

    Thank you for the inquiry.

    The ajax portfolio container doesn’t resize correctly on mobile view because of this css code.

    .page-id-4808 .portfolio-preview-content {
        width: 66.6%;
      }
    

    To fix this, please replace the css with this code.

    @media only screen and (min-width: 989px) {
    
      /* Add your Desktop Styles here */
      .page-id-4808 .portfolio-preview-content {
        width: 66.6%;
      }
    }
    

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    On the frontend, we can see the following notice or error:

    Warning: Constant WP_MEMORY_LIMIT already defined in
    

    Did you add the WP_MEMORY_LIMIT constant elsewhere? It’s possible that this is overriding the declaration in the wp-config.php file.

    To resolve this error temporarily, try to disable the W3TC plugin.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We tested the site again on Chrome and Firefox but were not able to reproduce the issue. In the meantime, you might want to improve the site loading speed to avoid the “flash of unstyled text”, which could be causing the menu to shift a little on load. Please check the articles below.

    // 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: Woocommerce product tabs missing #1430788

    Hey donillo,

    Thank you for the inquiry.

    The hook above should work as intended, but only for products that do not utilize the Advanced Layout Builder (ALB). For products created with the builder, you’ll need to manually recreate the product tabs using the available elements in the ALB.

    Best regards,
    Ismael

    in reply to: Table edit #1430787

    Hey sophiasbiti,

    Thank you for the inquiry.

    Did you add any html tags in the table? It’s possible that there were invalid html tags, which caused the table layout or the table shortcode to break. You may need to recreate the table from scratch. We recommend saving the content of the page as template so that you can restore it if necessary.

    Best regards,
    Ismael

    in reply to: Zoom effect on Main Slider images #1430786

    Hey bemodesign,

    Thank you for the inquiry.

    This option is not available in the default sliders, but you can use the Layer Slider element to create advanced slider animations, including the zoom effect.

    // https://layerslider.com/sliders/

    Best regards,
    Ismael

    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

Viewing 30 posts - 6,301 through 6,330 (of 67,463 total)