Forum Replies Created

Viewing 30 posts - 16,321 through 16,350 (of 67,565 total)
  • Author
    Posts
  • 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

    in reply to: Want to turn my website in to E-commerce site. #1271049

    Hi,

    You have to install another plugin in order to properly integrate Woocommerce with Polylang, and make the translations work. Please check the following link for more info about the integration.

    // https://polylang.pro/downloads/polylang-for-woocommerce/

    For further assistance with the integration, please contact the plugin authors or their support team.

    Best regards,
    Ismael

    in reply to: Payment issue with update to WooCommerce 4.8 #1271047

    Hey ClimbingSocks,

    Thank you for the inquiry.

    This is probably a script error, specifically with jQuery, so installing the Enable jQuery Migrate Helper plugin and setting the jQuery version to the legacy version may help.

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

    Best regards,
    Ismael

    Hey therapiezentrumkahlgrund,

    Thank you for the inquiry.

    1.) Are you referring to the categories of the default posts? This should be possible using the post_type_link and post_link filter.

    // https://kellenmace.com/remove-custom-post-type-slug-from-permalinks/
    // https://developer.wordpress.org/reference/hooks/post_type_link/
    // https://kriesi.at/support/topic/masonry-gallery-order-and-sizing/#post-741588
    // https://kriesi.at/support/topic/portfolio-categories-into-url-permalink/#post-735882

    2.) You have to modify the order of the menu items in the Appearance > Menus panel.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Theme functions are not working #1270800

    Hi,

    @phausner: Most plugins should work fine with the theme out of the box, but some may require template modification or additional customization to properly integrate its functionality or its layout with the theme. Let us know if you encounter any issues with the MemberPress plugin.

    @kellykilgallon: Hello there! Please create a new thread and post the site details in the private field so that we could check the issue properly.

    Best regards,
    Ismael

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

    Hey RMcKee,

    Thank you for the inquiry.

    The following script should activate the Radiographic Systems category sort item on page load. Please add the snippet in the functions.php file

    // activate a specific category sort item
    function ava_activate_sort_button() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '(function($) {
    				$(document).ready( function() {
    					$(".radiographic-systems_sort_button").trigger("click");
    				});
    			})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_activate_sort_button', 9999);
    

    Best regards,
    Ismael

    in reply to: Avatars for bbpress #1270797

    Hi,

    Thank you for the update.

    In the wp-config.php file, try to look for the DISALLOW_FILE_EDIT constant and set it to false or remove it completely.

    // https://wordpress.org/support/article/hardening-wordpress/#disable-file-editing

    This should enable the Appearance > Editor option back, and you should be able to edit the functions.php file from there.

    Best regards,
    Ismael

    in reply to: Burger menu scrolling #1270796

    Hi,

    Glad to know that the initial fix is working. Could you provide a screenshot of the 3rd issue? Are you saying that the mobile menu container moves up when you swipe the screen up exposing the content in the bottom part? If that is the case, then this script might help.

    // prevent mobile menu swipe
    function ava_script_mobile_menu_swipe() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    			(function($) {
    				$('#av-burger-menu-ul').bind('touchstart touchend touchup', function(event) {
        event.stopPropagation();
    });
    			})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_script_mobile_menu_swipe', 9999);
    

    Best regards,
    Ismael

    in reply to: CLS Problems and image sizing #1270794

    Hey Cleverreisenmitkids,

    Thank you for the image.

    Could you give us a link to the page where the layout shift occurs? If the width and height attribute of the image are specified, the browser will allocate the appropriate space for it while it is loading and should not cause any layout shifts, and Google will treat it as a stable element. Are you sure that the CLS is cause by the post image?

    Best regards,
    Ismael

    in reply to: Mediaelementplayer and Safari #1270787

    Hi,

    Looks like this is a common issue with Safari browsers, and according to other forums, we could use or wait for the loadedmetadata instead.

    // https://stackoverflow.com/questions/50051639/javascript-html5-video-event-canplay-not-firing-on-safari
    // https://github.com/video-dev/hls.js/issues/1686

    Best regards,
    Ismael

    in reply to: Mobile menu not visible #1270762

    Hi,

    This is not something critical and should not affect how the megamenu works or functions. It is related to the following warning message.

    // https://github.com/jquery/jquery-migrate/blob/1.x-stable/warnings.md#jqmigrate-jqueryfnattrselected-might-use-property-instead-of-attribute

    And since we intend to update the checked attribute of the megamenu checkbox, then that code should work fine.

    Best regards,
    Ismael

    in reply to: Single page menu – indicator at wrong positions #1270761

    Hi,

    Glad to know that the custom script is working. Yes, it does set the current-menu-item class name to the appropriate menu item manually when the corresponding section is in viewport.

    Best regards,
    Ismael

    in reply to: style logo / menu area #1270758

    Hey Alexander2021,

    Thank you for the inquiry.

    1.) We can use this css code to adjust the vertical position of the logo, but this might cause the logo to drop outside the header container. You may need to adjust the height of the header as well.

    div .logo {
    	top: 10px;
    }

    2.) The indicators are actually sticking to the very bottom of the header bar, but it does not look like it because there is an extra space or container between the header and the main content, which has the same background color as the header. This space is actually created because of the 88px top padding applied to the main container. To adjust that space, you can use this css code.

    .html_header_top.html_header_sticky #main {
    	padding-top: 44px !important;
    }

    Default value is 88px. Again, you may need to adjust the height of the header to make room for the logo adjustment.

    Best regards,
    Ismael

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

    Hey JaimBateman,

    Thank you for the inquiry.

    Does it work properly when you use the src attribute in the video tag instead of the data-youtube-id attribute? Same as you, we do not see any related errors in the browser console, aside from an error in the onMessageReceived function, but it is probably not the problem.

    Have you tried removing the other videos from the page?

    Related thread: https://kriesi.at/support/topic/enfold-or-slider-revolution-conflict-showing-vimeo-video-in-slider/#post-1191427

    Best regards,
    Ismael

    in reply to: Remove display all image numbers at once? #1270746

    Hi,

    Thank you for the screenshot.

    That text is from the title attribute of the image. You could provide a custom title or manually edit the existing value in the Media > Library panel, but if you want to remove it, try to use this css code.

    .mfp-title {
    	display: none !important;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 16,321 through 16,350 (of 67,565 total)