Forum Replies Created

Viewing 30 posts - 15,571 through 15,600 (of 66,839 total)
  • Author
    Posts
  • in reply to: Contact form and search Icon #1271465

    Hi,

    That is how the WP search works by default. It will return all pages or posts containing the searched keyword. You may need to install a third party extension or plugin to adjust the default search query.

    // https://wordpress.org/plugins/relevanssi/
    // https://wordpress.org/plugins/wp-extended-search/

    Please check the following documentation to get started with Contact Form 7 plugin.

    // https://contactform7.com/docs/

    You have to create a contact form, configure it and add it to the page using the corresponding shortcode. If you want to add it in the Advance Layout Builder, use a code or text block for the contact form shortcode.

    Best regards,
    Ismael

    in reply to: Woocommerce category image disappears after filtering #1271463

    Hi,


    @kisrael
    : We are not sure or we do not remember if the existing code for the banner has been modified to change this behavior. Where can we see the issue? Please note that the latest version is 4.7.6.4, so you may need to update the theme first.

    Best regards,
    Ismael

    Hi,

    This is possible, but this will require modifications that are beyond the scope of support. We will have to make the ID of the post items in the Blog Posts element available globally and use the post__not_in parameter in the avia_newsbox query. To do that you will have to modify the avia_newsbox class in the enfold\framework\php\class-framework-widgets.php around line 920 and edit the Blog Posts shortcode or element.

    // https://developer.wordpress.org/reference/classes/wp_query/#post-page-parameters

    Best regards,
    Ismael

    in reply to: edit portfolio categories default grid #1271456

    Hi,

    Thank you for the update.

    You could hide the main container’s top border with this css code.

    #top #main {
    	padding-top: 88px !important;
    }

    Or use this one to actually remove the border.

    #top #main > .container_wrap {
    	border-top: 0;
    }

    Best regards,
    Ismael

    in reply to: Problem of mail reception #1271454

    Hi,

    Thank you for the inquiry.

    What do you mean by “email of orders”? The contact forms seems to be sending the messages properly. Are they not going through? You may need to define the from address manually so that it is properly recognized by your mail server. The snippet or filter is provided in the link that @Yigit provided above.

    function avf_change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'avf_change_cf_from', 10);
    

    Make sure that the email address is one of the domain email addresses.

    Best regards,
    Ismael

    in reply to: Portfolio Grid images not showing #1271446

    Hi,

    Thank you for the update.

    Looks like the product gallery is not working correctly because of a script error in the merged file. Please try to disable the Performance > File Compression settings temporarily, then install the following plugin and set the jQuery script to the old or legacy version instead of the latest one.

    // https://wordpress.org/plugins/enable-jquery-migrate-helper/

    Best regards,
    Ismael

    in reply to: show table description column on mobile view #1271444

    Hey c2strategy,

    Thank you for the inquiry.

    We could display the description column back on mobile view with css, but it will be rendered above the next columns.

    .responsive .pricing-table.avia-desc-col {
    	display: block !important;
    }

    A better solution is to display a different set of table on mobile view. You could toggle the elements’ visibility in the Advanced > Responsive > Element Visibility settings.

    Best regards,
    Ismael

    in reply to: Having Portfolio grid open on specific category #1271440

    Hi,

    Thank you for the info.

    We noticed that there is a minor syntax error in the above code, so we removed it. Sorry about that. Please try the snippet again or post the login details in the private field so that we could test the script properly.

    Best regards,
    Ismael

    in reply to: style logo / menu area #1271439

    Hi,

    Yes, we understand. And as we explained it looks like it’s not working correctly because there is an extra space below the header, which looks like an actual part of the header but is actually a space created because the main container has a top padding. The header is only 44px in height and the code above should adjust the top padding of the main container so that it is not twice as tall as the header.

    Best regards,
    Ismael

    in reply to: Cumulative Layout Shift too high #1271115

    Hi,

    Thank you for the update.

    I’ve tried your custom css, but the problem still exists.

    The css code above is supposed to take care of the big-preview container CLS. Do you still see a CLS issue on that container after adding the css code?

    What happens when you remove the cp-module or the subscription form inside the entry-content container? There are also a lot of video and image elements in the entry-content container which are lazy loaded, and it is possible that this is affecting the CLS score. Have you tried disabling the lazy load option?

    Best regards,
    Ismael

    in reply to: Problem with YouTube and able Player #1271112

    Hi,

    Thank you for info.

    Glad to know that you have found the issue. The code above initializes the theme’s implementation of the YT.Player API, which is probably conflicting with the AblePlayer’s youtube player implementation. By commenting it out, any element using the Youtube player such as the video and slider elements will not work properly.

    Best regards,
    Ismael

    in reply to: How do I delete unused image thumbnails? #1271108

    Hey Tomasssu,

    Thank you for the inquiry.

    The theme register its own thumbnails and whenever you upload a product image, these thumbnails are automatically generated as well which is probably why the images takes up that much space in the server. If you don’t need those thumbnails, you can manually remove them using the following snippet in the functions.php file.

    // Disable loads of Enfold & WP image sizes upon upload
    add_action('init', 'remove_enfold_image_sizes');
    function remove_enfold_image_sizes() {
    // do NOT remove widget size, is used in backend portfolio items!
    // remove_image_size('widget');
      remove_image_size('square');
      remove_image_size('featured');
      remove_image_size('featured_large');
      remove_image_size('portfolio');
      remove_image_size('portfolio_small');
      remove_image_size('gallery');
      remove_image_size('magazine');
      remove_image_size('masonry');
      remove_image_size('entry_without_sidebar');
      remove_image_size('entry_with_sidebar');
      remove_image_size('shop_thumbnail');
      remove_image_size('shop_catalog');
      remove_image_size('shop_single'); 
      remove_image_size('shop_gallery_thumbnail');
    }
    

    After adding the snippet, use the following plugin to regenerate the images, which should also remove the unregistered thumbnails.

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

    IMPORTANT: Please do not forget to create a backup or a restore point before doing the above steps.

    Related thread: https://kriesi.at/support/topic/media-upload-and-enfolds-thumbnail-sizes/#post-1270140

    Best regards,
    Ismael

    in reply to: Cannot edit a page with Easy Slider on Windows 10 #1271106

    Hi,

    Thank you for the info.

    Why do you add the whole iframe tag in the video field? It works fine when we remove the iframe tag from the Content > Select Slide Content > Choose Video field and use the actual Youtube URL instead. (see private field)

    Best regards,
    Ismael

    in reply to: Blog post image sizes suddenly all different sizes? #1271093

    Hi,

    Thank you for the update.

    We tried to select the preview image manually but for some reason, the original image is still displayed in the grid instead of the selected thumbnail. Did you happen to remove some images or do a clean up in the uploads folder? When you enable the Smush plugin, did you disable certain thumbnails?

    Best regards,
    Ismael

    in reply to: Enfold Woocommerce #1271090

    Hey Thilakzan,

    Thank you for the inquiry.

    By default, the Advance Layout Builder (ALB) is disabled for the base shop page, but as described in the documentation, we could use the following snippet in the functions.php file to enable it.

    add_theme_support( 'avia_custom_shop_page' );
    

    However, please note that some features or options in the shop page may not work properly when this is enabled.

    Best regards,
    Ismael

    Hey Stuart,

    Thank you for the inquiry.

    Looks like you have managed to display the acadp widgets by using the Widget Area element from the advance layout builder. Do you need further assistance with this?

    Best regards,
    Ismael

    in reply to: content section – responsive – stretch to full width #1271086

    Hi,

    Thank you for the clarification.

    The whole image is not visible because its aspect ratio is different compare to the device or the screen. We can set the background image to be fully visible within the section but the it will get distorted, or there will be white spaces or gaps around the background image or within the content section.

    You may need to add another version of the content section, toggle its visibility so that it only displays on mobile view and use an image that is actually resized for mobile view.

    Best regards,
    Ismael

    in reply to: Hide Feature Image issue #1271084

    Hi,

    Thank you for the inquiry.

    The settings will only work when you are using the default or the classic editor. The featured image is not visible in this case because you are using the Advance Layout Builder. You may need to add the featured image manually using any image elements in the builder.

    Best regards,
    Ismael

    Hey zerodotnine,

    Thank you for the inquiry.

    When we checked the page, the slide duration only starts once the page preloader is finished, and the interval between each slide including the first is consistent, 5 seconds.

    Best regards,
    Ismael

    in reply to: Sharing article to Facebook Personal Message #1271081

    Hi,

    Looks like this is a common issue with Facebook recently.

    // https://stackoverflow.com/questions/65166587/facebook-share-button-issue-attachment-not-found-the-attachment-could-not-be

    Have you tried to put the facebook sharer URL manually in the browser instead of clicking on the actual button? The theme just creates a button with the FB sharer link based on a certain pattern, which may look like the following.

    
    https://www.facebook.com/sharer.php?u=https://kriesi.at/documentation/enfold/social-share-buttons/&t=Social%20Share%20Buttons
    

    Best regards,
    Ismael

    in reply to: Center and enlarge search field on search results page #1271080

    Hi,

    Thank you for the info.

    This is how we see the script in the document.

    
    (function($) {
                (function($) {
                    if(window.innerWidth >= 989) return;
                    $(".av_searchform_wrapper").find("#s").attr("placeholder", "Search");
                })(jQuery);
    
    

    As you may noticed, the symbols are encoded or in their html entity form. This may be due to the wp_add_inline_script function. Please post the login details in the private field so that we could test it.

    Best regards,
    Ismael

    in reply to: Blog misbehaving #1271078

    Hey phausner,

    Thank you for the inquiry.

    1.) We cannot find the “Pet Store” page anywhere in the site. Do you mean “Pet Care”? If you click on the Pet Care menu item, you are actually redirected to the Pet Care category page instead of the actual Pet Care page. This happens because the page and the category have the same name and slug, and when that is the case, WP automatically prioritize the archive page. You may need to rename the Pet Care page or change the slug of the Pet Care category.

    And the reason the sidebar is not displaying on that page is because the sidebar for archive pages is disabled in the Enfold > Sidebar Settings. (see private field)

    2.) The comments area is displaying properly when we checked one of the posts in the Pet Care archive page. (see private field)

    Best regards,
    Ismael

    Hi,

    It was probably an issue with the jQuery scripts and setting the library version to the old or the legacy version prevent the script errors from occurring. Please keep the jQuery migrate settings for now.

    Have a nice day. :)

    Best regards,
    Ismael

    in reply to: Blog Layout Related Entries to Recent Entries Instead #1271071

    Hey Microserve_,

    Thank you for the inquiry.

    That should be possible by editing the default query of the get_posts function in the includes > related-posts.php file or template.

      $my_query = get_posts(
                                array(
                                    'tag__in' => $tag_ids,
                                    'post_type' => get_post_type($this_id),
                                    'showposts'=>$postcount, 'ignore_sticky_posts'=>1,
                                    'orderby'=>'rand',
                                    'post__not_in' => array($this_id))
                                );
    

    You may need to remove or adjust the value of the tag__in and the orderby parameters.

    Best regards,
    Ismael

    in reply to: Ultimate member plug in / code #1271070

    Hey grwebs,

    Thank you for the inquiry.

    When i did this – I put the first half at the beginning of the shortcode block and the last part at the end of the whole block it did not stick nor work.

    Are you trying to hide the content of the advance layout builder? Did you separate the opening and closing shortcode tag in a separate code block element? That will probably not work. You may need to use multiple shortcodes in order to hide certain parts of the page and if you are using the advance layout builder, you may only be able to use their shortcodes on elements with text editors such as the code or text block element.

    Best regards,
    Ismael

    in reply to: How to fix CLS issues and jumping content #1271067

    Hey vadikcoma,

    Thank you for the inquiry.

    The theme sets the height of the color section dynamically but for some reason this is a bit delayed. Is it still happening when the Performance > File Compression settings are disabled?

    You could also try this code in the Quick CSS field to set manually set the height of the color section.

    .av-minimum-height-75 .container, .av-cell-min-height-75 > .flex_cell {
    	min-height: 75vh;
    }

    Best regards,
    Ismael

    in reply to: Images aren't responsive #1271062

    Hi,

    Sorry for the delay. The grid in the archive page is currently using the portfolio thumbnail and by default, the crop option for this thumbnail is enabled, so images may get cut off if the original image does not have the same aspect ratio as the thumbnail. If you want to prevent this from happening, you have to disable the crop option for the portfolio thumbnail. To do that, we have to add this snippet in the functions.php file.

    
    function ava_enfold_image_sizes() {
      remove_image_size('portfolio'); 
      add_image_size('portfolio', 495, 400, false );
    }
    add_action('init', 'ava_enfold_image_sizes');
    

    After adding the snippet, try to refresh the page, then upload the images again or regenerate the thumbnails using the following plugin.

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

    Best regards,
    Ismael

    in reply to: Video startet auf Handy nicht automatisch #1271057

    Hey HolgerKohl,

    Thank you for the inquiry.

    It is possible that the mobile device where you are checking the page does not allow media autoplay by default, probably to save data or avoid distractions. You should be able to toggle an option somewhere in the device or browser settings in order to allow media or video autoplay.

    Best regards,
    Ismael

    in reply to: Content is desappear! #1271054

    Hi,

    @Pas70: The site is currently using an older version of the theme, 4.7.2. You have to upgrade to version 4.7.6.4, then add the following snippet in the functions.php file to force the masonry items to reposition while the images are still loading.


    @ancrerouge
    : Please refrain from posting any confidential info on a thread that you did not create yourself, because it is going to be visible to the post creator. To continue, please create your own thread and post the site details there instead.

    // https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: Embedding VideoAsk widget inside the tags #1271051

    Hey cbroome12,

    Thank you for the inquiry.

    Are you referring to the video in the bottom right corner of the site? Based on your descriptions, this doesn’t look like an issue with the theme. Is it working properly when you switch to a default theme?

    Best regards,
    Ismael

Viewing 30 posts - 15,571 through 15,600 (of 66,839 total)