Forum Replies Created

Viewing 30 posts - 6,631 through 6,660 (of 67,602 total)
  • Author
    Posts
  • in reply to: hotspots don’t stay where I put them #1428461

    Hi,

    Thank you for the update.

    The issue occurs because the post css file is not being generated, which might be server-related. To work around this issue, you can add this code in 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 );

    This will disable the dynamic post css file and render element styles inline instead.

    Best regards,
    Ismael

    in reply to: Help – DEC 15 had issue with website display #1428460

    Hey Jackie,

    Thank you for the inquiry.

    The error occurs because the site contains a very old version of the theme, which is no longer compatible with later versions of PHP. You will have to manually update the theme to version 5.6.9 manually via FTP. Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Enfold Thinks Version 4.8.6.2 Is The Latest Version #1428459

    Hey Flashpaper,

    Thank you for the inquiry.

    The automatic update will no longer work in the current version installed in your site. You will need to download the latest version (5.6.9) from your Themeforest account, then upload it to your server manually via S/FTP. Please check the documentation below for more info.

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

    Best regards,
    Ismael

    in reply to: woocommerce checkout doesn’t show “” #1428458

    Hey GorillaBeats,

    Thank you for the inquiry.

    Are you looking for a checkbox or toggle in the Terms and Conditions and Privacy Policy section? This is not available by default, but you can adjust the Checkout privacy policy text in the WooCommerce > Settings > Account & Privacy > Privacy Policy panel.

    Best regards,
    Ismael

    in reply to: Cannot see page to make edits #1428384

    Hi,

    It is working correctly on our end. We edited the blog page and added the Blog Posts element in order to display the posts. You can add more content as you wish.

    Best regards,
    Ismael

    in reply to: Meow Lightbox #1428381

    Hi,

    Thank you for the info.

    We tried to adjust the lightbox selectors and temporarily disable the compression settings but it didn’t help. What is the name of the script used by the plugin to initialize the lightbox? We can’t seem to find it in the document. Although, we did find a script called “thickbox”, which is also a lightbox or modal script, and it might be interfering or conflicting with the Meow plugin. Please contact the plugin author for additional assistance.

    Best regards,
    Ismael

    in reply to: Meow Lightbox #1428377

    Hi,

    Thank you for the update.

    We checked the site and can confirm that the lightbox is not working. However, we didn’t find any errors upon inspecting, so we are not sure why or what’s missing. We may need to log in to the site in order to further check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Subject: Issue with Enfold Version: 5.6.9 – Seeking Help! #1428376

    Hey car4rent,

    Thank you for the inquiry.

    What is the name of the other theme that you’re using? It’s possible that the difference in response time is due to the scripts, stylesheets, and other resources that are loaded by the theme. It’s true that it can be a little slower compared to default themes only because the Enfold theme contains more features and offers more options. To improve the loading speed, consider referring to the articles below.

    // 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: Grid row not responsive #1428374

    Hi,

    Thank you for the update.

    We saved the content of the home page as a template and applied it to another page, but we are unable to reproduce the issue you described. Please check the link in the private field.

    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: Cannot see page to make edits #1428373

    Hi,

    Thank you for the update.

    Are you trying to use the Advanced Layout Builder to modify the content of the Blog page? If so, you have to configure the Enfold > Blog Layout > Blog Layout settings to the last option (Use the Advanced Layout Builder…). Once done, you should be able to customize the content using the builder.

    Best regards,
    Ismael

    in reply to: Website development #1428068

    Hey Henk-Peter,

    Thank you for the inquiry.

    The site is built using the Enfold theme, but it was developed by someone else. If you require assistance with your site, we recommend checking out Codeable or posting your inquiries here in the forum. Please refer to the link below.

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

    Best regards,
    Ismael

    in reply to: enfold header Transparency Options missing #1428066

    Hey!

    UPDATE: The Transparency Logo Options are now located in the Enfold > Theme Options panel.

    Regards,
    Ismael

    in reply to: enfold header Transparency Options missing #1428064

    Hi,

    Thank you for the screenshot.

    There is no Transparency Options tab in the Header panel by default. Which part of the site are you trying to adjust? If you need to enable header transparency, try to edit one of the pages and adjust the Header visibility and transparency settings.

    Best regards,
    Ismael

    in reply to: Hook for Woocommerce Cart Page after Shipping #1428061

    Hi,

    No problem! Glad @Mike was able to help you out. 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: Shop image size #1428060

    Hey SRF,

    Thank you for the inquiry.

    Please add this code in the functions.php file to disable the theme’s predefined thumbnail size for shop pages.

    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 );
    function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
        return 'woocommerce_thumbnail';
    }
    

    Best regards,
    Ismael

    in reply to: enfold header Transparency Options missing #1428059

    Hey bemodesign,

    Thank you for the inquiry.

    The Header visibility and transparency setting is still available when we edit one of the pages. 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: Spinning Wheel #1428055

    Hey web4698,

    Thank you for the inquiry.

    We tried to log in to the site but the security plugin (Sucuri) blocked our access. Could you temporarily disable the plugin so that we can access the site?

    Best regards,
    Ismael

    in reply to: Standard Image Size #1428054

    Hey kevinraposo7,

    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: Date not displayed #1428053

    Hey noreply54,

    Thank you for the inquiry.

    We’re not yet sure why the date information isn’t displaying on the first post, but we found a workaround by adding a dummy excerpt to the post. We also applied this css code to hide the excerpt container on the blog page.

    .blog .slide-entry-excerpt.entry-content {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Social Icon add new icon #1428052

    Hi,

    Thank you for the inquiry.

    You can use the following filter to add a new social icon into the list.

    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    However, as the LINE icon isn’t included by default, you’ll need to retrieve an SVG version of the icon and convert it to a font icon using Fontello. Afterward, you can upload it to the theme using the Iconfont Manager. Please refer to the documentation below for detailed instructions.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
    // https://vimeo.com/75743285

    Best regards,
    Ismael

    in reply to: Customise Image Overlays #1428051

    Hey condonp,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to replace the default image overlay icon.

    function avf_default_icons_mod($icons) {
    	$icons['ov_image'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue83d');
    	return $icons;
    }
    add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);
    

    Best regards,
    Ismael

    in reply to: Slider next to logo #1428050

    Hi,

    Thank you for the update.

    Did you remove the widget? We can’t find it in the header. To reposition the widget, try adjusting the left or right values in the css rule above.

    #text-4 {
        position: absolute;
        left: auto;
        right: 50px;
    }
    

    Best regards,
    Ismael

    in reply to: Bug Report #1428049

    Hey Roman,

    Thank you for the inquiry.

    We are not yet sure what is causing the issue but you can temporarily fix it by editing the enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js file, look for this code around line 191.

    if( new_items.length > data.items )
    

    Replace it with:

    if( new_items.length > data.items || new_items.length == data.items)
    

    Please make sure to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    Hi,

    There is a Private Content field just below the main editor. You can place the login details there.

    Best regards,
    Ismael

    in reply to: LayerSlider Error w/PHP 8? #1428046

    Hey dlott,

    Thank you for the inquiry.

    We can’t find the same errors on the front end, and the provided account details didn’t work when we attempted to log in. Would you mind providing another admin account so that we can check the issue further?

    Best regards,
    Ismael

    Hey dlott,

    Thank you for the inquiry.

    We tried logging in to the site but the account above seems to be invalid. Please check the login info carefully, or provide a screenshot of the issue. In the meantime, please try to toggle or temporarily disable the Enfold > Performance > File Compression settings and see if it helps.

    Best regards,
    Ismael

    Hey Faatje79,

    Thank you for the inquiry.

    Did you add any html tags or scripts to the page? Please make sure that there are no invalid tags in the page, and that all tags are closed properly. Invalid tags could break the layout of the page and result in missing content after updating.

    Best regards,
    Ismael

    in reply to: Daily losing style of Enfold theme #1427757

    Hi,

    Thank you for the update.

    It might be an issue with the Enfold Performance > File Compression settings. We disabled the compression settings temporarily. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: class-envato-protected-api.php on line 307 #1427755

    Hi,

    Thank you for the update.

    You don’t need to buy a new license. Just download the latest version of the theme from your Themeforest account, then update the theme manually via FTP as suggested above. Please check the documentation below for more information on how to update the theme manually via FTP.

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

    Best regards,
    Ismael

    in reply to: Wrong Slug in Articles #1427753

    Hey maryenvato,

    Thank you for the inquiry.

    The blog or news page is always included in the breadcrumb by default when viewing a single post, but you can remove it by adding this filter in the functions.php file.

    function avia_breadcrumbs_trail_mod($trail)
    {
        // remove news trail
        if ( is_singular( 'post' ) ) {
            unset($trail[1]);
        }
        return $trail;
    }
    add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);

    Best regards,
    Ismael

Viewing 30 posts - 6,631 through 6,660 (of 67,602 total)