Forum Replies Created

Viewing 30 posts - 11,221 through 11,250 (of 66,206 total)
  • Author
    Posts
  • in reply to: Change to Privacy Settings lost all Enfold Theme Options #1332882

    Hi,

    Thank you for that info.

    The default file compression from the theme might had been conflicting with the default server optimization (Settings > Performance > Performance & Speed), which probably have its own compression settings or resource optimization feature. Please keep the other option (Enfold > Performance > File Compression) disabled for now. You can also use plugins like Autoptimize or BWP Minify as an alternative.

    We will keep the thread open.

    Best regards,
    Ismael

    in reply to: add custom field to postslider.php #1332879

    Hi,

    No problem. Let us know if you need anything else. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: blurred background in color section #1332878

    Hi,

    Thank you for the update.

    We would recommend resizing the images for sliders of fullwidth elements based on the most common screen resolutions. That would be between 1920x1080px and 1366x768px. You can use those numbers as a reference.

    // https://www.browserstack.com/guide/ideal-screen-sizes-for-responsive-design

    Best regards,
    Ismael

    in reply to: Buttons no in the same line on mobile devices #1332877

    Hi,

    Thank you for the update.

    Did you move the third button below the others on the contact page? This is what we are seeing now (see private field).

    Best regards,
    Ismael

    Hey tinohannes,

    Thank you for the inquiry.

    Try to use this css code to adjust the transparency of the background color.

    .avia-caption-title {
        background: #007400A3 !important;
        color: #edeae5 !important;
    }

    We just appended A3 to the hex value, which is equivalent to 64% transparency. You can use this guide to adjust the transparency value.

    // https://gist.github.com/lopspower/03fb1cc0ac9f32ef38f4

    Best regards,
    Ismael

    in reply to: PHP 8 breaks my entire site #1332773

    Hey kingsparadise,

    Thank you for the inquiry.

    The best way forward is to create a staging or development version of the site with the same configuration. Make sure to set the installation to debug mode and enable the error logs so that we check for errors once the latest PHP version is activated.

    // https://wordpress.org/support/article/debugging-in-wordpress/

    Best regards,
    Ismael

    in reply to: Masonry Grid shows entries more than once #1332770

    Hi,

    That is odd. I did not expect that the filter will work for the masonry element. But I am glad to know that it did. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Beitrag in Spalte darstellen #1332769

    Hi,

    Thank you for the inquiry.

    There is no such element in the builder but you can try the Blog Posts element. You may need to apply a unique category to the post that you would like to display and select it in the Blog Posts element.

    Or use a shortcode from a plugin.

    // https://wordpress.com/support/display-posts-shortcode/

    Example of the shortcode to display a post with the ID 14.

    [display-posts id="14"]
    

    Best regards,
    Ismael

    in reply to: Page Margins after Update #1332768

    Hi,

    Thank you for the update.

    You can use image hosting providers like imgur or dropbox for the screenshot, and share the image link in your next post or in the private field. We did check the home page but we cannot see the layout issue. Every sections are full width.

    Best regards,
    Ismael

    in reply to: Swipebox overlay problem #1332767

    Hey veladigital,

    Thank you for the inquiry.

    Are you referring to the lightbox container? Please post the site URL in the private field so that we can check the issue properly, and provide a screenshot (using imgur or dropbox) if possible.

    Best regards,
    Ismael

    in reply to: progress bar animation #1332763

    Hey annevoelkel,

    Thank you for the inquiry.

    Looks like you have used a single element for every progress bars. Please note that all progress bars in the group will animate simultaneously once the parent element is visible in the page. You may need to separate the progress bars or use multiple progress bar elements for each bar to trigger the animations in sequence.

    Best regards,
    Ismael

    in reply to: Disclaimer Text on all posts #1332725

    Hey michaelmiller68,

    Thank you for the inquiry.

    You can modify the page.php file or the template-builder.php file directly, or use the “the_content” filter to insert additional content to the posts.

    // https://developer.wordpress.org/reference/hooks/the_content/

    Example:

    add_filter( 'the_content', 'filter_the_content_in_the_main_loop', 1 );
    
    function filter_the_content_in_the_main_loop( $content ) {
        if ( is_singular() && in_the_loop() && is_main_query() ) {
            return $content . esc_html__( 'I’m filtering the content inside the main loop', 'wporg');
        }
    
        return $content;
    }
    

    Best regards,
    Ismael

    in reply to: Too Many Redirects – Church Demo #1332724

    Hey Martin,

    Thank you for the inquiry

    Did you setup or get an SSL certificate? Please get an SSL certificate, then follow the instructions in the following documentation.

    // https://wordpress.org/support/article/https-for-wordpress/

    You may need to contact your hosting provider and ask them to configure the web server to redirect traffic to https.

    You can also install the Really Simple SSL plugin to automatically convert the site from http to https.

    Best regards,
    Ismael

    in reply to: Diagonal Border in Color Section #1332723

    Hey jaimemerz,

    Thank you for the inquiry.

    Are you referring to this (see private field) section with the image hotspot? Please post the login details in the private field so that we could check the content and the settings.

    Best regards,
    Ismael

    in reply to: Page Margins after Update #1332709

    Hey 2RiversM,

    Thank you for the inquiry.

    Where can we see the issue? We are not seeing any layout issues with the home page. Please provide a direct link to the page containing the grid row element.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Glad to know that you managed to manually import the demos. But there should be a button in the Demo Import panel that will download the demo files first before importing it. This could fail if the server blocks the source of the demo files. You may need to ask your hosting provider to whitelist the URL of the demo source.

    Best regards,
    Ismael

    in reply to: URGENT: LOST FOOTER WITH UPDATE #1332707

    Hi,

    Great! Glad we could be of help. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Google CAPTCHA options not showing up #1332706

    Hey pointpolish,

    Thank you for the inquiry.

    The option for the spam protection is located at the very bottom of the panel. You have to enable it first or select the version. The fields for the public and secret keys will display afterwards. Please check the screenshot in the private field for reference.

    Best regards,
    Ismael

    in reply to: Double Lazy loading function? #1332705

    Hey Alwin,

    Thank you for the inquiry.

    We would recommend using only one of those features or options because they might conflict with one another. Please note that the lazy loading option from the theme enables the default loading attribute, which is a default browser feature.

    // https://web.dev/browser-level-image-lazy-loading/

    Best regards,
    Ismael.

    in reply to: Enfold contactform with SMTP plugin? #1332704

    Hey Alwin,

    Thank you for the inquiry.

    According to the following thread, the plugin reconfigures or filters the wp_mail function based on the values set in the plugin settings before sending the mail. The theme’s contact form is using the wp_mail function, so it should work with the plugin.

    // https://wordpress.org/support/topic/does-wp_mail-use-the-credentials-from-wp-mail-smtp/

    Best regards,
    Ismael

    in reply to: Error in developper tools/console #1332701

    Hey Alwin,

    Thank you for the inquiry.

    The option in the Enfold > Performance panel actually disables the jQuery Migrate library. There might be plugins in the site that are still using older jQuery functions, which are only available via jQuery Migrate. Please leave the option disabled.

    Best regards,
    Ismael

    in reply to: Solidarity support for farmers organizations #1332700

    Hey Jose Luis,

    Thank you for the inquiry.

    Looks like the site contains different versions of the theme and the site might be using an older version instead of the latest one. Please remove the other versions of the theme from the wp-content > themes folder, and leave version 4.8.8. After deleting the other versions, try to disable or toggle the Performance > File Compression settings temporarily, then purge the cache. Also, please make sure to create a site back before deleting the other themes.

    Best regards,
    Ismael

    in reply to: Beitrag in Spalte darstellen #1332696

    Hey smuejae,

    Thank you for the inquiry.

    Where are you trying to embed the post? Have you tried using the Advance Layout Builder (ALB) and add an element (e.g Image, Text Block) that has a link to that particular post?

    Best regards,
    Ismael

    in reply to: Change to Privacy Settings lost all Enfold Theme Options #1332694

    Hey DimitriGarder,

    Thank you for the inquiry.

    We did not see any layout issues when we checked the site. Would you mind providing screenshots of the issue (use imgur or dropbox0? Or post the login details in the private field so that we can toggle the site settings. You may have to temporarily disable the Performance > File Compression settings while we are working on the issue.

    Best regards,
    Ismael

    in reply to: Post format – Link – Read more button #1332689

    Hey Kyle,

    Thank you for the inquiry.

    Looks like the read more button’s link doesn’t go through the same content filter function unlike the link used in the post image. Please try to modify the config-templatebuilder/avia-shortcodes/postslider/postslider.php file and look for this code around line 723.

    	$permalink = '<div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>';
    

    Replace the get_permalink( $the_id ) function with $link, then move it below this code.

    	if( $format == 'link' )
    					{
    						$current_post = array();
    						$current_post['content'] = $entry->post_content;
    						$current_post['title'] = avia_wp_get_the_title( $entry );
    
    						if( function_exists( 'avia_link_content_filter' ) )
    						{
    							$current_post = avia_link_content_filter( $current_post );
    						}
    
    						$link = $current_post['url'];
    					}
    

    Best regards,
    Ismael

    in reply to: WPML & Enfold Child Theme #1332688

    Hey Corina,

    Thank you for the inquiry.

    You may have to export and import the theme options from the base or original language to the other lanuages. Please note that the theme options for each language is different, so you will have to configure them separately but as we have said, you can use the Enfold > Import/Export settings to automatically transfer the theme options from one language to another.

    Best regards,
    Ismael

    Hi,

    No problem. Let us know once you are done optimizing the site and if the issue persists.

    Best regards,
    Ismael

    in reply to: Can I change enfold Menu font size? #1332685

    Hi,

    You can use css media queries to adjust the style of the elements including its font style on mobile view or any screen sizes.

    // https://css-tricks.com/a-complete-guide-to-css-media-queries/

    If you need more help, please feel free to open another thread.

    Best regards,
    Ismael

    Hey nahmialm,

    Thank you for the inquiry.

    Did you enable the Performance > File Compressions settings? Please try to turn it off first, then add this filter in the functions.php file to temporarily disable the post css manager and prevent the theme from creating meta entries in the database.

    /**
     * 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 );

    You should also update PHP to the latest version (8.0 or later) and create a staging or development version of the site so that you can test it while the plugins are disabled.

    Best regards,
    Ismael

    in reply to: Conflict between Enfold Child and WooCommerce #1332682

    Hi,

    Thank you for the info.

    The buttons are displaying properly when we increase the quantity of the product, which makes a lot more sense in terms of stock management. Unfortunately, we are not familiar with the Solid Commerce extension and how they manage the product inventory, and as you may already know, we do not provide support for third party extensions as stated on our support policy. Please keep in touch with the plugin developers for additional help with the issue.

    Best regards,
    Ismael

Viewing 30 posts - 11,221 through 11,250 (of 66,206 total)