Forum Replies Created

Viewing 30 posts - 331 through 360 (of 66,958 total)
  • Author
    Posts
  • in reply to: formular fields too long on mobile #1490232

    Hi,

    Thank you for the update.

    Please try to add this css code to adjust the width of the form fields on smaller screens.

    @media only screen and (max-width: 479px) {
        .responsive .avia_ajax_form .form_element {
            width: 90%;
        }
    }

    Best regards,
    Ismael

    in reply to: Caching hook #1490231

    Hi,

    Thank you for the update.

    What do you mean by “notification”? Would you mind providing an example or reference? If you’re looking for a list of hooks, you can try the following.

    // reset post meta and delete all css files
    add_action( 'ava_after_theme_update', array( $this, 'handler_ava_reset_css_files' ), 100, 1 );
    add_action( 'ava_after_import_demo_settings', array( $this, 'handler_ava_reset_css_files'), 100, 1 );
    add_action( 'avia_ajax_after_save_options_page', array( $this, 'handler_ava_reset_css_files'), 100, 1 );

    These are from enfold/config-templatebuilder/avia-template-builder/php/class-post-css-management.php file. Feel free to update us if you need more info.

    Best regards,
    Ismael

    in reply to: Masonry image size #1490230

    Hi,

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

    Best regards,
    Ismael

    in reply to: Two-tier (or two-row) navigation bar #1490229

    Hey vantagepointmg,

    Thank you for the inquiry.

    There is no built-in option for this, but you can use the following css code to create multiple rows and limit each row to four menu items.

    #avia-menu {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
      list-style: none;
      padding: 0;
      margin: 0;
      float: right;
      align-items: center;
    }
    
    #avia-menu > li {
      flex: 1 1 auto;
      min-width: 100px;
      text-align: center;
    }
    
    #avia-menu > li > a {
      display: block;
      text-decoration: none;
    }
    
    #avia-menu > li {
      flex: 1 1 calc(25% - 10px);
    }

    Best regards,
    Ismael

    in reply to: How to apply ALB Custom Layout to all Portfolio Items? #1490228

    Hi,

    Thank you for the update.

    but when I created a new “portfolio”, the custom layout did not exist in ALB.

    You need to create all of your portfolio items first before running the function. The function will look for all items in the same post type, switch the builder to ALB by creating all the necessary post meta information or custom fields, and then apply your selected custom layout. After running it once, you can delete the code.

    It’s also possible to connect it to a custom button so that you can run it manually when needed, but that would require additional modifications beyond the scope of support.

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: SVG social icon formatting problem #1490227

    Hi,

    Yes, you can now remove that css rule or replace it with the modification we provided above. Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: formular fields too long on mobile #1490172

    Hi,

    Thank you for the info.

    The contact form seems to be resizing correctly on our end. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages, or Dropbox.

    Screenshot-2025-10-14-at-1-28-21-PM

    Best regards,
    Ismael

    in reply to: Slider is not showing on ipad #1490170

    Hi,

    Thank you for the update.

    We can see that the slider is already visible. Please try to purge the cache, clear your browser history or view the page in incognito mode. Let us know the result.

    Screenshot-2025-10-14-at-1-16-52-PM

    Best regards,
    Ismael

    in reply to: formular fields too long on mobile #1490169

    Hey rixi,

    Thank you for the inquiry.

    Are you referring to the tablet view of the contact form fields? Please add the following code in Enfold > General Styling > Quick CSS field.

    @media only screen and (max-width: 1024px) {
      /* Add your Mobile Styles here */
      .responsive .avia_ajax_form .form_element {
        width: 100%;
        clear: both;
        margin-right: 0;
        margin-left: 0;
        float: none;
      }
    }

    Another option is to make the columns stack to full width on tablet view.

    Screenshot-2025-10-14-at-1-10-35-PM

    Best regards,
    Ismael

    in reply to: Won’t Install themeforest…zip #1490166

    Hey birdfr0g,

    Thank you for the inquiry.

    You have to extract the enfold.zip file from the original Themeforest package first, before uploading it to your WordPress installation. Please check this documentation for reference: https://kriesi.at/documentation/enfold/install-enfold-theme/

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Masonry image size #1490164

    Hey nebuddlho,

    Thank you for the inquiry.

    Try to add this code in the functions.php file to adjust the size of the lightbox image.

    function avf_alb_lightbox_image_size_mod( $size, $context ){
      if( $context == ('av_gallery' || 'avia_masonry') ){
        return 'full';
      }
      return $size;
    }
    add_filter( 'avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 2 );

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Animated .WEBP not working #1490163

    Hey monsterdmkt,

    Thank you for the inquiry.

    It’s possible that the gallery is set to use a specific thumbnail in a different format, usually jpg or png, which is the WordPress default when generating thumbnails. Try to edit the horizontal gallery, go to the Styling > Gallery panel, then set the Image Size settings to No scaling to use the original image source.

    Screenshot-2025-10-14-at-12-28-22-PM

    If the issue persists, please create a test page and provide the URL in the private field.

    Best regards,
    Ismael

    in reply to: Slider is not showing on ipad #1490162

    Hi,

    We can now see the fading slider. If you need this to be visible on tablet view, please add this css code:

    @media screen and (max-width: 1024px) {
        .responsive.av-no-preview #top #wrap_all #slider-gebaede-frueher-heute {
            display: block !important;
        }
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Slider is not showing on ipad #1490161

    Hi,

    Thank you for the update.

    We can only see the full width sliders on the page, both have a single image or item in them. One is shown on larger screens and the other on mobile view. Would you mind providing a screenshot of the fading slider? You can use platforms like Savvyify, ImgBB, PostImages, or Dropbox.

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1490160

    Hi,

    This only seems to hide the empy item om the “News” page (https://regenboogalliantie.nl/nieuws/)
    The same issue is visible in the masonry element on the page https://regenboogalliantie.nl/nieuws/

    The links above look the same. Can you provide the correct link to the other page? For the home page, you can add this css code:

    #top .av-mfb8b6h9-903a18144fa2874ec5abc87835770ec5 .av-masonry-container .av-masonry-entry:first-child,
    #top .av-mfgqr9vd-8ed003c43d554c716ccad992e0119c66 .av-masonry-container .av-masonry-entry:first-child {
        display: none !important;
    }

    If you’re planning to add more Masonry elements in the future, go to Advanced > Developer Settings, add a Custom CSS Class name “av-masonry-no-empty-items”, then add this css code:

    #top .av-masonry-no-empty-items .av-masonry-container .av-masonry-entry:first-child {
        display: none !important;
    }

    For the read more link, try to replace the previous script with this:

    (function($){
        $(document).ready(function() {
            $('.av-masonry:not([class*="-gallery"]) .av-masonry-entry').each(function() {
                var more = $(this).find('.av-masonry-read-more');
                var cont = $(this).find('.av-masonry-entry-content');
    
                if (more.length == 1) return;
                cont.append('<div class="av-masonry-read-more">Lees meer ></div>');
            });
    
            $(window).trigger('resize av-height-change');
        });
    })(jQuery);
    

    Best regards,
    Ismael

    in reply to: Phantom Woo Commerce Product Grid Code in Enfold Backend #1490159

    Hi,

    Thank you for the update.

    Did you install a classic editor plugin? Please disable it, then adjust the Enfold > Theme Options > Select Your Editor settings to use the classic editor. If you need to remove the shortcode field, you’ll have to remove the snippet from the functions.php file. There is no toggle for it by default.

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Caching hook #1490158

    Hey xela,

    Thank you for the inquiry.

    You may need to resave the theme options before purging the plugin cache. Also, make sure that only one compression or minification option is enabled, either in the theme options or in the compression options offered by the plugin. Enabling both may cause issues. We also recommend disabling the cache plugin while configuring the site.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: How to apply ALB Custom Layout to all Portfolio Items? #1490157

    Hi,

    Thank you for the update.

    We’ll forward your request to our channel. Let us know if the function works.

    Best regards,
    Ismael

    in reply to: SVG social icon formatting problem #1490156

    Hey zimbo,

    Thank you for the inquiry.

    This css should adjust the alignment of the social svg icons.

    #top .social_bookmarks li.avia-svg-icon svg:first-child, #top .social_bookmarks li.avia-svg-icon img[is-svg-img=true] {
        height: 1em;
        width: auto;
        margin-top: 6px;
    }
    

    Then, add this css rule to change the color to blue.

    .header_color .team-social a.avia-svg-icon svg:first-child, .header_color .meta-heading .avia-svg-icon svg:first-child, .header_color .social_bookmarks .avia-svg-icon a svg:first-child {
        stroke: #2f3191;
        fill: #2f3191;
    }

    Screenshot-2025-10-14-at-11-42-36-AM

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The color section has no border, even when we toggle or disable your custom css modifications. The borders are already removed by this css rule.

    #top #wrap_all #main .avia-no-border-styling {
        border: none;
    }

    Best regards,
    Ismael

    in reply to: Transparent background #1490097

    Hi,

    Great! Glad to know this has been resolved. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Spacing in product descriptions #1490096

    Hey Dzimnikov,

    Thank you for the inquiry.

    You can try adjusting the style of the paragraph tags inside the product description container.

    .woocommerce-product-details__short-description p {
        margin: 0;
        height: 8px;
        overflow: visible;
    }

    Result:

    Screenshot-2025-10-13-at-2-00-34-PM

    Best regards,
    Ismael

    Hey Caorda,

    Thank you for the inquiry.

    We couldn’t reproduce the issue on our end. Could you please create a test page and provide the page URL in the private field? Make sure that the Appearance > Theme File Editor is enabled and accessible.

    Best regards,
    Ismael

    in reply to: Beschreibung Slide-Show-Bild unten mittig #1490093

    Hey Christian,

    Thank you for the inquiry.

    The screenshot was not accessible when we checked. Please create a test page and provide the site URL in the private field, or share screenshots using platforms such as Savvyify, ImgBB, PostImages, or Dropbox.

    Best regards,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1490092

    Hi,

    Thank you for the info.

    We disabled the script and added this code in the Quick CSS field to hide the empty masonry item without an image.

    #top .av-memr40p2-4e918060ab6ff669ef638e6ba94ae4db .av-masonry-container .av-masonry-entry:first-child {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: How to apply ALB Custom Layout to all Portfolio Items? #1490091

    Hey milkrow,

    Thank you for the inquiry.

    There is no built-in option for this by default. You’ll need to edit each portfolio entry manually, switch to the Advanced Layout Builder and add the custom element template. There is a workaround, but it requires manually adding a code to your functions.php file and adjust it according to your requirements.

    https://kriesi.at/support/topic/importing-lots-of-data-to-scf-custom-posts-all-having-same-template/#post-1473195

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like you’ve already found the border options. If not, please edit the color section element, then go to Layout > Borders panel. Let us know if you need more info.

    Screenshot-2025-10-13-at-1-11-37-PM

    Best regards,
    Ismael

    Hey milkrow,

    Thank you for the inquiry.

    Have you tried using the Navigation Menu widget? You will need to create a custom menu in the Appearance > Menus panel and include the Portfolio Categories. If you don’t see these items, go to Screen Options and toggle the Portfolio Categories checkbox. You can then select this menu in the Navigation Menu widget.

    Screenshot-2025-10-13-at-1-07-31-PM

    Best regards,
    Ismael

    in reply to: Slider is not showing on ipad #1490086

    Hey rixi,

    Thank you for the inquir.

    There are two sliders on the page and both contain only one image or slide. There is no slider with multiple items. Please edit the page, review the sliders and confirm if there are multiple slides there.

    Best regards,
    Ismael

    in reply to: Phantom Woo Commerce Product Grid Code in Enfold Backend #1490085

    Hey Valerie,

    Thank you for the inquiry.

    This product element was probably added when the block editor was still enabled, but the editor is now disabled when we checked. Have you tried switching the builder to debug mode as discussed in your previous thread?

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

    Best regards,
    Ismael

Viewing 30 posts - 331 through 360 (of 66,958 total)