Forum Replies Created

Viewing 30 posts - 5,281 through 5,310 (of 67,469 total)
  • Author
    Posts
  • in reply to: vertical alignment #1441249

    Hi,

    Thank you for the link.

    Could you elaborate on the changes that you’d like to implement, or provide a screenshot of the changes? 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: How to remove an element at the bottom of Blog Posts #1441248

    Hi,

    Thank you for the update.

    The css code provided by @Guenni007 above should have removed the parallel lines above the share icons.

    .html_elegant-blog #top .post-entry .post-meta-infos {
        display: none !important;
    }

    Do you have any other css modifications in the Quick CSS field? Please ensure that there are no invalid css codes (such as missing curly braces, semicolons, etc.) and that all css rules have been closed correctly.

    Best regards,
    Ismael

    in reply to: Increase Button Size for Cart #1441247

    Hi,

    You can also include this css code to decrease the space between the burger menu and the search icon:

    .responsive #top #header_main > .container .main_menu .av-main-nav > li.av-burger-menu-main.menu-item-avia-special > a {
        padding: 0 0 0 15px;
        margin-right: 0;
    }
    
    .responsive #top #menu-item-shop.cart_dropdown {
        margin-left: 0;
    }
    

    There’s no other way to increase the clickable area of the cart icon without increasing its container size.

    Best regards,
    Ismael

    in reply to: Footer background image blurry on iOS devices #1441244

    Hi,

    Thank you for the info.

    Try to add this css code to adjust the background attachment property:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .footer_color {
        background-attachment: scroll;
      }
    }

    Please make sure to purge the cache before checking the page. Let us know of the result.

    Best regards,
    Ismael

    in reply to: Fatal error: Access level to avia #1441243

    Hi,

    Thank you for the info.

    Please download the latest version of the theme from your Themeforest account. Access your server via S/FTP, remove the old version of the theme from the wp-content folder, then upload the latest version. If you have modified any template files in the child theme, make sure to update those as well.

    IMPORTANT: Please make sure to create a site backup or restore point before proceeding.

    Best regards,
    Ismael

    in reply to: Sidebar not responding #1440932

    Hi,

    Try to replace the woocommerce_after_main_content hook with woocommerce_after_shop_loop. This should render the description right after the product grid

    Best regards,
    Ismael

    in reply to: Hide search icon #1440930

    Hi,

    Thank you for the update.

    You can add this css code to hide the search icon on desktop view:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: none;
      }
    }
    

    Make sure that the Enfold > Main Menu > Menu Items For Mobile settings is set to the first option.

    Best regards,
    Ismael

    in reply to: scroll left and right for portfoloio title #1440929

    Hi,

    Thank you for the update.

    We may need to access the site and test the modification further. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    Hey!

    Although this score may not appear favorable and the audits report some issues, the site still loads quickly on both mobile devices and desktop view based on our checks. I’m not implying that these issues should be ignored or left as they are, but rather that the site continues to function and load at a reasonable speed. The issue with the LCP should not significantly affect the user experience.

    Best regards,
    Ismael

    Hey!

    Lazy loading functions properly in the theme. Enabling this option globally resolved the “Defer offscreen images” issue as mentioned above. You may need to resize your images and make sure they are not wider than 1920px, similar to the previous one.

    It’s common to add css modifications and install plugins, especially if you’re aiming for specific features, layouts, or designs, even with a different theme.

    Have you tried a different caching plugin?

    Best regards,
    Ismael

    in reply to: scroll left and right for portfoloio title #1440906

    Hey schweg33,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to sort the items by title:

    function avf_get_prev_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title DESC LIMIT 1";
    }
    add_filter( 'get_previous_post_sort', 'avf_get_prev_post_sort_mod' );
    
    function avf_get_next_post_sort_mod( $sort ) {
    	return "ORDER BY p.post_title DESC LIMIT 1";
    }
    add_filter( 'get_next_post_sort', 'avf_get_next_post_sort_mod' );
    

    Best regards,
    Ismael

    in reply to: Widget Related Post #1440904

    Hey Manel Roig,

    Thank you for the inquiry.

    There is no option for this by default but you can try the widget or shortcode from the following plugin:

    // https://wordpress.org/plugins/related-posts-for-wp/

    Did you create a custom shortcode called avs_related_entries?

    Best regards,
    Ismael

    Hi,

    apparently using that plugin still leaves that /counseling-austin-tx/ page in the 60’s for mobile on pagespeedinsights.

    Yes, it won’t address every performance issue, but it should improve LCP. Have you done any performance optimizations on the site beyond the recommendations provided here and in the articles we shared above?

    That plugin only works if I go in on each and every page and post on my site (over 100 posts and 20ish pages) and manually configure it for every single one of them.

    Yes, it has to be done manually for each page. Let us know if using a different cache plugin helps.

    For additional help regarding site optimization, you might want to consider hiring a freelance developer. You can contact our partner, Codeable.

    // https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Innenabstand Textfeld #1440902

    Hey hallo352,

    Thank you for the inquiry.

    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: Product inquiry form in WooCommerce #1440898

    Hey peterolle,

    Thank you for the inquiry.

    There is no option for this by default, but there should be an available extension with this feature. Please check the links below:

    // https://wordpress.org/plugins/product-enquiry-for-woocommerce/
    // https://woocommerce.com/document/product-enquiry-form-2/
    // https://wordpress.org/plugins/gm-woocommerce-quote-popup/

    Best regards,
    Ismael

    in reply to: Remove dates on Blogpage #1440896

    Hey northorie,

    Thank you for the inquiry.

    You can toggle the visibility of the post meta info, including the date, in the Enfold > Blog Layout > Blog Meta Elements section. Look for the Blog Post Date option and toggle it accordingly.

    Best regards,
    Ismael

    in reply to: Strange free space on one site #1440895

    Hey northorie,

    Thank you for the inquiry.

    Looks like the sidebar is still enabled for this page. Please edit the page and check the Layout > Sidebar Settings. Make sure it is set to “No Sidebar”.

    Best regards,
    Ismael

    Hi,

    Thank you for the screenshot.

    We may need to access the site in order to properly check the modification. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: erledigt – Tablet Menü im Querformat nicht sichtbar #1440893

    Hi,

    Thank you for the info.

    We’re unable to reproduce the issue using tablet emulation. The mobile menu only displays when the screen width is less than 768px and when the header has shifted to the top. Before testing the page, please make sure to purge the cache and clear your browser history.

    Best regards,
    Ismael

    in reply to: Nach Oben-Pfeil #1440892

    Hey hallo352,

    Thank you for the inquiry.

    The back-to-top button is disabled on mobile devices by default but you can display it back by adding this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #scroll-top-link {
        display: block;
      }
    }

    This button is no longer necessary on mobile phones, as most mobile browsers have a feature where you can return to the top by double-tapping the top edge of the phone screen.

    Best regards,
    Ismael

    in reply to: Problem mit Erweitertes Styling/Schriftarten hochladen #1440891

    Hey hallo352,

    Thank you for the inquiry.

    Did you install a cache plugin? Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache after the adjustments.

    Best regards,
    Ismael

    Hey tomaszzawada,

    Thank you for the inquiry.

    To import the demo, you may need to do so manually via Tools > Import instead of using the Demo Import panel. First, download the medical.zip file from enfold-library/tree/master/demos/medical folder. After extracting the XML file, go to the Tools > Import > WordPress (Importer) panel (/admin.php?import=wordpress) and upload it.

    Best regards,
    Ismael

    Hi,

    We’ve installed the preload-lcp-image plugin and configured it to preload the video image, which fixed a few of the audits, but there are still a lot of items remaining on the list. One that stood out is the “Properly size images”, which means that other images on the page may need resizing. Another is “Defer offscreen images”, which can be resolved by enabling lazy loading for images beyond the fold. We’ve enabled lazy loading for images globally, but you can manually toggle it for the first image on the page if necessary.

    Additionally, consider experimenting with a different caching plugin like WP Rocket to see if you can gain any improvements. The following articles should also help:

    // 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: Line height in LayerSlider 7 text #1440888

    Hi,

    Please make sure to save and publish the changes after adjusting the layer styles as described in the screenshot by @Guenni007 above. If you’re using a caching plugin, remember to purge the cache.

    Best regards,
    Ismael

    in reply to: Blog Post Product Slider #1440886

    Hi,

    Sorry for the confusion. If you’re looking to display a single product (using the Product Grid element, for example), you can edit the element and adjust the Styling > Pagination > Entry Number to 1. You may need to create a unique product category if you need to select or display a specific product.

    Best regards,
    Ismael

    in reply to: Custom WooCommerce categories with builder #1440885

    Hey peterolle,

    Thank you for the inquiry.

    You may need to override the wp-content/plugins/woocommerce/templates/archive-product.php file in order to change the layout of the product category pages. Please check the link below for more info.

    // https://woocommerce.com/document/template-structure/

    Another solution is to create a custom page for each category pages, then do a 301 redirect from the default category page to the custom page.

    // https://wordpress.org/plugins/eps-301-redirects/

    Best regards,
    Ismael

    in reply to: Content tabs below product in WooCommerce #1440884

    Hey peterolle,

    Thank you for the inquiry.

    You can use WooCommerce hooks to insert additional content to the single product page. For a reference regarding the available hooks, you can check the /wp-content/plugins/woocommerce/templates/content-single-product.php file.

    To insert content after the product tabs, you can try the woocommerce_after_single_product_summary hook. Set the priority to 10 or 15.

    Example:

    add_action('woocommerce_after_single_product_summary', function() {
        echo "something";
    , 15);
    

    Best regards,
    Ismael

    in reply to: Increase Button Size for Cart #1440883

    Hey ballindigital,

    Thank you for the inquiry.

    The cart button appears thin because the padding has been removed with this css code:

    #menu-item-shop .cart_dropdown_link {
        padding: 0;
    }
    

    You can increase it back by adjusting the css code.

    #menu-item-shop .cart_dropdown_link {
        padding: 0 10px;
    }
    

    Best regards,
    Ismael

    in reply to: Licence for support? #1440758

    Hey Ivan Jovic,

    Thank you for the inquiry

    According to our records, your support license expired on 2022-11-22. To continue receiving support, please renew or extend your license from Themeforest. Please check the link below:

    // https://help.market.envato.com/hc/en-us/articles/207886473-Extend-or-renew-Item-Support

    Best regards,
    Ismael

    Hi,

    We came across another thread with a similar issue, and it was resolved by disabling lazy loading and preloading the image.

    To preload the image, you can add the following code to the functions.php file:

    function ava_preload_image_in_wp_head()
    {
        $image_url = 'https://gatehealing.com/wp-content/uploads/IMG_9494-845x684.jpeg';
        $mime_type = 'image/jpeg';
        $image_handle = 'counseling-services';
        echo ' 	<link rel="preload" href="' . esc_url($image_url) . '" as="image" type="' . esc_attr($mime_type) . '" id="' . esc_attr($image_handle) . '">';
    }
    add_action('wp_head', 'ava_preload_image_in_wp_head');
    

    You can also try this plugin: https://wordpress.org/plugins/preload-lcp-image/#installation

    Best regards,
    Ismael

Viewing 30 posts - 5,281 through 5,310 (of 67,469 total)