Forum Replies Created

Viewing 30 posts - 91 through 120 (of 66,822 total)
  • Author
    Posts
  • in reply to: Woocommerce Produkte ausblenden #1490787

    Hey Blatze,

    Thank you for the inquiry.

    Try to add this code in the functions.php file to adjust the search query for products:

    function ava_pre_get_posts_mod( $query ) {
        if ( ! is_admin() && $query->is_search() && $query->is_main_query() ) {
            if ( class_exists( 'WooCommerce' ) && ( $query->get( 'post_type' ) === 'product' || isset( $_GET['post_type'] ) && $_GET['post_type'] === 'product' ) ) {
    
                $meta_query = (array) $query->get( 'meta_query' );
    
                $meta_query[] = array(
                    'key'     => 'catalog_visibility',
                    'value'   => array( 'hidden', 'exclude-from-search' ),
                    'compare' => 'NOT IN'
                );
    
                $query->set( 'meta_query', $meta_query );
            }
        }
    }
    add_action( 'pre_get_posts', 'ava_pre_get_posts_mod', 20 );
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Input to shortcode #1490786

    Hey CharlieTh,

    Thank you for the inquiry.

    We’re not entirely sure what you’re trying to do, but it looks like you want to process input from a form field and display the result on the page. You might want to check out the wp_ajax_* action hook.

    https://developer.wordpress.org/reference/hooks/wp_ajax_action/

    These articles should also help.

    https://wp-kama.com/2257/ajax-in-wordpress
    https://medium.com/@alejandro-ao/how-to-do-ajax-in-wordpress-a826f9fde4d5

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: quantity cannot be changed #1490785

    Hey Gianluca,

    Thank you for the inquiry.

    Please add this css code to make the quantity buttons visible again on mobile view.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive .shop_table .product-quantity {
        display: block;
      }
    }

    Best regards,
    Ismael

    in reply to: loading problems – content flashing #1490784

    Hi,

    Thank you for the info.

    You can try removing this script:

    <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="eb73297c-1583-47c6-a2fd-5b6c01c438eb" data-blockingmode="auto" type="text/javascript"></script>
    

    It might have a corresponding html element on the page, but that element is not included in this file.

    Best regards,
    Ismael

    in reply to: loading problems – content flashing #1490728

    Hi,

    Thank you for the update.

    As shown in the screenshot above, the custom cookie modal is still present in the document. We recommend reaching out to the plugin developers for additional information.

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490727

    Hi,

    Did you keep the css code? The css code is needed to fully display the content.

    Best regards,
    Ismael

    in reply to: Vertically centered logo in the header #1490726

    Hi,

    Thank you for the update.

    The logo should be vertically centered by default, but there might be a custom modification in your installation that alters this layout. Please let us know if you have any further questions.

    Best regards,
    Ismael

    in reply to: Delay on opening mega menu #1490725

    Hey profumopuntoit,

    Thank you for the inquiry.

    You can add this css code to add a delay to the mega menu transition.

    #header .avia_mega_div {
        transition-delay: 2s;
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Breakpoint #1490724

    Hi,

    We missed the screenshot above. Please try to replace the modification with this css code:

    
    #top .av-minimal-toggle .toggle_content .avia-testimonial {
      width: 50%;
      display: block;
      float: left;
    }
    
    @media only screen and (max-width: 989px) {
    
      /* Add your Mobile Styles here */
    
      #top .av-minimal-toggle .toggle_content .avia-testimonial {
        width: 100%;
        display: block;
        float: none;
      }
    }

    Result:

    Screenshot-2025-10-30-at-1-10-46-PM

    Best regards,
    Ismael

    in reply to: Breakpoint #1490723

    Hi,

    Thank you for the inquiry.

    The modification above should resize the testimonial items on all standard screen resolutions. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Enfold Medicine #1490722

    Hey slauffer,

    Thank you for the inquiry.

    The site is in maintenance mode, so we are not able to check it. Where the site is hosted? If it’s on OVH, you will need to import the demos manually using the XML files. Due to an issue with this host, images and other media files may not import correctly. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: General question #1490721

    Hey Henk,

    Thank you for your interests in the theme.

    We believe what you’re referring to as “templates” are the demos. If that’s the case, once you purchase a license, you’ll be able to select any of the templates or demos available for the theme. Please note that each import will override the previous one, but you can always reset the installation if needed.

    Regarding the layout, it’s possible to add a section or an element with a background video. You can also use the sliders from the Advance Layout Builder or utilize the Layer Slider plugin, which is included natively in the theme.

    For more information, please browse through the documentation and check out the articles on our blog:

    https://kriesi.at/documentation/enfold
    https://kriesi.at/blog

    If you have any further questions, please feel free to send us a message. See you on the forum!

    Best regards,
    Ismael

    Hi,

    You’re welcome! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: License code expired need additional support #1490719

    Hi,

    Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hey tonyska,

    Thank you for the inquiry.

    It seems to be working as expected — only posts from the “Song Diary” category are showing on the notes page. Did you figure this out?

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490676

    Hi,

    Try to add this code in the functions.php file to fully remove the fold/unfold script.

    function ava_remove_avia_scripts() {
        if ( wp_is_mobile() ) {
            wp_dequeue_script( 'avia-fold-unfold' );
            wp_deregister_script( 'avia-fold-unfold' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'ava_remove_avia_scripts', 20 );
    

    The condition wp_is_mobile is not accurate and should only work if the page is actually being viewed on a mobile device.

    Best regards,
    Ismael

    in reply to: loading problems – content flashing #1490675

    Hey Munford,

    Thank you for the inquiry.

    There’s still a cookie overlay or modal in the document. Did you add it somewhere in the template or via a hook? You can try hiding it using this css code:

    .cky-revisit-hide, .cky-btn-revisit-wrapper {
        display: none !important;
    }

    Screenshot-2025-10-29-at-1-22-54-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the login info.

    We adjusted the value of the “Blog pages show at most” field in the Settings > Reading panel. The portfolio category page should now display 18 items with pagination enabled.

    Best regards,
    Ismael

    in reply to: Site speed dramatically slower #1490673

    Hey jonroot,

    Thank you for continuing to use Enfold.

    Have you done any speed optimization on the site such as image compression? We have checked some of the images, and they are quite large relative to their dimensions, one image is only 800×600px but is almost half a megabyte. We recommend installing an image compression plugin and a caching plugin. Please see the articles below for tips on further optimizing your site.

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

    Best regards,
    Ismael

    in reply to: Immediately loading background videos #1490672

    Hey Tanja,

    Thank you for the inquiry.

    The video seemed to be loading quickly when we checked. The delay is quite normal since the video needs to buffer some content before it can play. Unfortunately, we don’t have direct control over this, as it depends primarily on Vimeo and network conditions, as well as the viewer’s device and browser. You could try optimizing the page further so that other resources load as quickly as possible, which should slightly improve the overall experience.

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

    Best regards,
    Ismael

    in reply to: Masonry Blog Posts no longer sorting date correctly #1490645

    Hi,

    Thank you for your patience. We’ll keep the thread open.

    Best regards,
    Ismael

    in reply to: Search icon not displaying on mobile #1490644

    Hi,

    @Jason: You have probably enabled the Top Header before. If you really need to keep the left sidebar or header and still include a search field on the page for mobile view, you can try adding a Search element from the Advanced Layout Builder.

    Screenshot-2025-10-28-at-1-33-55-PM

    Please open another thread if you have more questions.

    Best regards,
    Ismael

    in reply to: Blog Overview – Image left, copy right #1490643

    Hi,

    Thank you for the info.

    We adjusted the code in the Quick CSS field a bit. It should be working correctly now.

    
    @media only screen and (min-width: 769px) {
      /* Add your Desktop Styles here */
      #top .fullsize .template-blog .big-preview {
          padding: 0 0 10px 0;
          width: 40%;
      }
    
      .av-alb-blogposts .post-entry {
          display: block;
      }
    
      .av-alb-blogposts .big-preview.single-big a {
          height: 100%;
      }
    
      .av-alb-blogposts .big-preview.single-big a img {
          object-fit: contain;
      }
    
      #top .fullsize .template-blog .post-title {
          text-align: left;
          font-size: 30px;
          padding: 15px 0;
          max-width: 800px;
          margin: 0 auto;
      }
    
      #top .fullsize .template-blog .post-meta-infos {
          text-align: left;
      }
    
      #top .fullsize .template-blog .post .entry-content-wrapper {
        width: 60%;
        float: left;
      }
    
      #top .fullsize .template-blog .blog-meta {
          display: none;
      }
    
      #top .fullsize .template-blog .big-preview {
          padding: 0 0 10px 0;
          width: calc(40% - 50px);
          float: left;
          margin-right: 50px;
          min-height: 200px;
      }
    }
    
    @media only screen and (min-width: 989px) {
      #top .fullsize .template-blog .big-preview img {
        min-width: 494px;
      }
    }

    Screenshot-2025-10-28-at-1-27-15-PM

    Best regards,
    Ismael

    in reply to: fold/unfold disable on mobile #1490642

    Hi,

    Thank you for the update.

    The read more link is no longer required since the full content is already visible. If you want to keep the link, remove this css rule.

    .avia-fold-unfold-section .av-fold-button-wrapper {
        display: none;
      }
    

    Best regards,
    Ismael

    in reply to: Breakpoint #1490641

    Hey derdschuh,

    Thank you for the inquiry.

    Try adding this css code to properly resize the testimonial items on smaller screens:

    @media only screen and (max-width: 1366px) {
    
      /* Add your Mobile Styles here */
    
      #top .av-minimal-toggle .toggle_content .avia-testimonial {
        width: 50%;
        display: block;
        float: left;
      }
    }
    
    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
    
      #top .av-minimal-toggle .toggle_content .avia-testimonial {
        width: 100%;
        display: block;
        float: none;
      }
    }
    

    Result:

    Screenshot-2025-10-28-at-12-59-55-PM

    Best regards,
    Ismael

    in reply to: Vertically centered logo in the header #1490640

    Hey Angelo,

    Thank you for the inquiry.

    Please add this css code to adjust the alignment of the logo on all screen sizes.

    .logo, .logo a {
        display: flex;
        align-items: center;
    }
    
    .logo img.alternate, .logo .subtext.avia-svg-logo-sub svg {
        position: relative;
    }
    
    .logo .subtext.avia-standard-logo-sub {
        display: flex;
        align-items: center;
        height: 100%;
        width: 170px;
        position: absolute;
    }

    Screenshot-2025-10-28-at-12-47-31-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the short clip.

    The issue is still not occurring on our end — we even tried zooming out the browser to emulate a larger screen. We recommend reaching out to the developers of the sorting plugin for additional assistance.

    Screenshot-2025-10-28-at-12-32-08-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to log in to the site to properly check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Menu on iPad (Air) too big in landscape mode #1490637

    Hey RENZCOM,

    Thank you for the inquiry.

    Try to add this css code to adjust the header height in tablet landscape view:

    @media only screen and (max-width: 1366px) {
        .responsive.html_mobile_menu_tablet #top #header_main>.container .main_menu .av-main-nav>li>a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
            height: 90px;
            line-height: 90px;
        }
    }

    Best regards,
    Ismael

    in reply to: Change image size in blog post #1490636

    Hi,

    You need to remove this css code if you want the featured image to resize automatically based on screen size. This rule sets a minimum height of 630px for the image, preventing it from shrinking while resizing the window. It does preserve the aspect ratio using object-fit: cover.

    #top.single-post .fullsize .template-blog .big-preview img {
        width: 1200px;
        min-height: 630px;
        object-fit: cover;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 91 through 120 (of 66,822 total)