Forum Replies Created

Viewing 30 posts - 4,921 through 4,950 (of 67,477 total)
  • Author
    Posts
  • in reply to: Different header on mobile #1450407

    Hi,

    Great! Good to know that you’ve found a working solution. Please don’t hesitate to open a new thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The correct size of the image doesn’t display because of the sizes attribute.

    sizes="(max-width: 139px) 100vw, 139px"
    

    Did you add any modifications for this? Please try to disable the image compression plugin and temporarily remove any modifications related to images.

    Best regards,
    Ismael

    in reply to: Reading time on blog page #1450040

    Hi,

    Thank you for the update.

    The excerpt is currently disabled, but it needs to be enabled for the above modification to work. We adjusted the filter so that the reading time appears after the title instead of after the content. Please check it again. The reading time should display on hover.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The second heading tag in the product category pages is directly generated from a WooCommerce template. If you need to replace the h1 tag with h2, you have to override the plugins/woocommerce/templates/archive-product.php file, or keep the filter that we previously suggested to prevent the second h1 from rendering.

    The heading tag is located around line 33 of the archive-product.php file:

    <?php if ( apply_filters( 'woocommerce_show_page_title', true ) ) : ?>
    <h1 class="woocommerce-products-header__title page-title"><?php woocommerce_page_title(); ?></h1>
    <?php endif; ?>
    

    Best regards,
    Ismael

    in reply to: Blog layout with sidebar #1450038

    Hi,

    Thank you for the update.

    It should be -10px. You forgot to include the unit. Please replace the css rule with the following code:

    .post-border-jd::before {
        content: url(//welstestdev.wpenginepowered.com/wp-content/uploads/2024/06/blogTabPerspective.png);
        position: relative;
        top: -62px !important;
        left: -10px;
    }
    

    Best regards,
    Ismael

    in reply to: Theme Support #1450037

    Hi,

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Hide section from screen readers #1449438

    Hey nm,

    Thank you for the inquiry.

    This is possible, but there is no option for it by default. However, we can create a custom script that applies the aria-hidden attribute to any element with the “av-aria-hidden-el” class name. Please add this code to the functions.php file:

    function ava_custom_script_aria_hidden() {
        ?>
        <script>
            (function ($) {
                function g() {
                    $('.av-aria-hidden-el').attr('aria-hidden', 'true');
                }
    
                $(document).ready(function () {
                    g();
                });
            })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_aria_hidden');
    

    Edit the column or color section element, then apply the “av-aria-hidden-el” class name in the Advanced > Developer Settings > Custom CSS Class field.

    Best regards,
    Ismael

    in reply to: Revert portfolio grid images to original size #1448985

    Hey nasi,

    Thank you for the inquiry.

    We’ve tried deleting the code from Enfold Child functions php. but nothing seems to change.

    After deleting the filter from the functions.php file, you’ll need to regenerate the thumbnails or re-upload the images. Please create a site backup or restore point before proceeding, then try this plugin:

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

    Best regards,
    Ismael

    in reply to: I need my full menu on mobile #1448984

    Hi,

    Thank you for the update.

    There was an extra curly brace in the Quick CSS field, making the code invalid. We removed the curly brace and temporarily disabled the Enfold > Performance > File Compression settings. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    in reply to: HTML validator #1448983

    Hi,

    Thank you for the update.

    We may need to access the site in order to properly check the issue. Please provide the login details in the private field. Did you add the avf_post_css_create_file filter in the functions.php file?

    Best regards,
    Ismael

    in reply to: wordpress #1448964

    Hey carollee,

    Thank you for the inquiry.

    What is the current version of the theme? The error above is a PHP error, which has been patched in the latest version of the theme. Please make sure to update the theme to version 5.7.1. Let us know of the result.

    Best regards,
    Ismael

    Hey nasi,

    Thank you for the inquiry.

    Looks like Chrome is loading a smaller version of the thumbnail. Did you install any image compression plugins? Please try to temporarily disable the Responsive Images option in the Enfold > Performance > Responsive Images and Lazy Loading section. Let us know if this changes anything.

    Best regards,
    Ismael

    in reply to: Accessibility #1448962

    Hey Meetx,

    Thank you for the inquiry.

    1-2) Please add this css code to adjust color of the icon on hover and make it bigger on mobile view.

    .html_bottom_nav_header #top .av_seperator_big_border .av-main-nav>#menu-item-search:hover a {
        color: red;
    }
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .menu-item-search-dropdown>a {
        font-size: 32px;
        margin-right: 20px;
      }
    }

    Best regards,
    Ismael

    in reply to: Mailchip Widget not working #1448961

    Hey Andreas,

    Thank you for the inquiry.

    The site contains a very old version (4.9.2.1) of the theme. The latest version is 5.7.1. Please update the theme manually via S/FTP, and be sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can disable the default title by adjusting the Header Title and Breadcrumbs settings in the Enfold > Header > Header Layout tab. This should also remove the duplicate h1 tag on the product category pages.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The code was added outside the PHP opening tag, which is invalid. We moved the filter to around line 51 of the functions.php file, and then temporarily disabled the file compression settings. Please make sure to purge the cache before checking the page.

    Best regards,
    Ismael

    Hey amyncuih,

    Thank you for the inquiry.

    You can adjust the default style of the Button elements in the Enfold > Advanced Styling panel, or you can use this css code:

    #top #wrap_all .main_color .avia-button {
        color: red;
    }

    Best regards,
    Ismael

    Hey cheffe,

    Thank you for the inquiry.

    Looks like the tooltip element is not being created for some reason. What is the current version of the theme? Please make sure to update the theme to version 5.7.1. If the issue persists after the update, try temporarily disabling the plugins, then toggle or temporarily disable the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    in reply to: Video on mobile #1448952

    Hi,

    Thank you for the inquiry.

    I still get the bar on top which says the title of the video and two other icons that say watch later and share

    This feature can no longer be disabled due to changes in YouTube’s parameters. You may need to upload the video to your server and host it yourself.

    // https://developers.google.com/youtube/player_parameters?hl=en#release_notes_08_23_2018

    Best regards,
    Ismael

    in reply to: Theme Support #1448951

    Hi,

    Thank you for the update.

    We tried to login to the site, but the password for the username is incorrect. We also tried the previous password but it’s the same. Please check the info carefully or create another admin account.

    Best regards,
    Ismael

    in reply to: Checkout – Country Selector #1448868

    Hey awasner,

    Thank you for the inquiry.

    This css code hides the dropdown or select element:

    #top select {
        display: none;
    }

    To override it, you can add this css code in the Quick CSS field:

    #top select {
        display: block !important;
    }

    Please temporarily disable the Enfold > Performance > File Compression settings so that we can trace where the css modification is added.

    Best regards,
    Ismael

    Hey profumopuntoit,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to disable or remove the default category title:

    add_filter('woocommerce_show_page_title', 'av_woocommerce_show_page_title_mod');
    function av_woocommerce_show_page_title_mod() {
        if (is_product_category()) {
            return false;
        }
        return true;
    }

    Best regards,
    Ismael

    in reply to: Mailchimp #1448866

    Hey Stefan,

    Thank you for the inquiry.

    You can use the theme’s default lightbox to open inline content. Please check the link below for examples: https://kriesi.at/support/topic/mailchimp-popup-3/#post-1447133

    Best regards,
    Ismael

    in reply to: Have an image fill half of a row with no padding #1448865

    Hey iosefo,

    Thank you for the inquiry.

    Instead of using Color Sections, you can use the Grid Row element and apply the background images to the Grid Row cells instead of the columns. Let us know if this is what you’re looking for.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We were able to reproduce the issue on the About page, but it got fixed after a while. The background images don’t display because the dynamic style (post-59.css) was not being loaded for some reason. To fix the issue temporarily, try adding this filter to the functions.php file:

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    Best regards,
    Ismael

    in reply to: http 503 editing in advanced layout builder #1448863

    Hi,

    Great! Glad to know that the issue has been resolved. Please don’t hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: I need my full menu on mobile #1448862

    Hey joshuati,

    Thank you for the inquiry.

    This is possible, but there won’t be enough space for the menu items. We may need to decrease the size of the logo or the font size of the menu items. If that is acceptable, you can start with this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: none;
      }
    
      .responsive #top .av-main-nav .menu-item {
        display: inline;
      }
    
      .responsive .logo img,
      .responsive .logo svg {
        margin: 0;
        max-height: 40px !important;
        margin-left: -20px;
      }
    }
    

    Best regards,
    Ismael

    in reply to: HTML validator #1448861

    Hey Advantage09,

    Thank you for the inquiry.

    Element style not allowed as child of element div in this context.

    This error indicates that there is an inline style inside a div element. Did you add this style manually?

    No p element in scope but a p end tag seen.

    There is an invalid < p > tag on the page. Did you add any HTML tags to the page? Please provide the site URL so that we can inspect it.

    Best regards,
    Ismael

    in reply to: Flip Box custom size #1448846

    Hey AlpineWeb,

    Thank you for the inquiry.

    We may need to inspect the site in order check the issue further. Please provide the site URL in the private field or provide screenshots using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Post list other way around #1448762

    Hi,

    It’s not possible to sort posts by their categories using the default settings. You may need to create a custom solution, such as adding custom meta info for posts in specific categories. Unfortunately, this requires significant modifications and is beyond the scope of our support. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

Viewing 30 posts - 4,921 through 4,950 (of 67,477 total)