Forum Replies Created

Viewing 30 posts - 12,601 through 12,630 (of 67,591 total)
  • Author
    Posts
  • in reply to: Privacy Policy link Left aligned on mobile #1332914

    Hey hitrev,

    Thank you for the inquiry.

    You can use this css code to adjust the alignment of the text on mobile view. You may need to apply a unique class name or ID to the text block and use that instead of the css selector below.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #av_section_5
        .flex_column.av_one_third.
        .avia_textblock
        p {
        text-align: left !important;
      }
    }
    
    

    And please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the screenshot.

    You may be using an older version of the theme. Please make sure to update the theme to version 4.8.8. If the new version does not come up in the Theme Options > Updates panel, try to download the latest files from your Themeforest account, then update the theme manually via FTP. You can check the documentation below for more info.

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

    Best regards,
    Ismael

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

    Hey!

    Thank you for the update.

    What was the error? Would you mind testing it again using this bit of code?

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

    Place it around line 727, just below the code that we mentioned above.

    Best regards,
    Ismael

    in reply to: burger menu not activating on small mobile screens #1332909

    Hey hostworks,

    Thank you for the inquiry.

    Where do you want to place the search widget? There seems to be no space for it in the header. Temporarily, you use this css code to adjust the style of the search form a bit.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive #top #header .search-form {
        display: flex;
        flex-direction: row;
        width: 100%;
      }
    
      .responsive #top #header .search-form > form {
        display: block !important;
        width: 50%;
      }
    
      #header_meta { 
        background: #162c40 !important;
      }
    }

    Best regards,
    Ismael

    in reply to: PHP Version 8.0 Compatibility #1332905

    Hey stoneroad,

    Thank you for the inquiry.

    The theme is compatible with the latest version of PHP, so the site should not break after the update. There might be plugins in those sites that are not compatible with PHP 8.0, which might have caused the issue instead.

    Do you see any errors after updating PHP? You may need to enable debugging to see the errors or check them in the error logs.

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

    Best regards,
    Ismael

    in reply to: progress bar animation #1332902

    Hi,

    Thank you for the info.

    The items or the progress bars are still inside a single Progress Bars element when we checked the site again today (see private field). Again, you have to add a separate progress bar element for each bar, task, item or skill if you want them to animate in sequence or separately.The animation sequence will not be that obvious or it will still look like they are animating together because the elements are close to each other. Please note that the animation is triggered once the element is partially visible in the page.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to set the installation to debug mode. Again, we would recommend creating a clone of the site on a subdomain for testing. To enable the debug mode and the error logs, please check this documentation.

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

    You have to add this code in the wp-config.php file to enable debugging.

    // Enable WP_DEBUG mode
    define( 'WP_DEBUG', true );
    
    // Enable Debug logging to the /wp-content/debug.log file
    define( 'WP_DEBUG_LOG', true );
    
    // Disable display of errors and warnings
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 1 );
    
    // Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
    define( 'SCRIPT_DEBUG', true );
    

    We tried to login using the account above but the info are invalid. Please check the account details or provide another admin account so that we can check the dashboard.

    Best regards,
    Ismael

    in reply to: Contact Form autorespond WITHOUT including form data? #1332897

    Hey Steve,

    Thank you for the inquiry.

    Did you manually input the Autorespond Text and Autorespond Subject? These fields are located in the contact form element’s Backend panel.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    Have you tried purging the cache? We cannot find any functions in the theme that add versioning or hash to the wp-embed script, so it might be from a plugin or a custom function.

    Please try to add this filter in the functions.php file to exclude wp-embed from the file compression, but we are not sure if this will actually change anything or if this will affect the wp-embed versioning.

    add_filter("avf_force_include_asset", function($force_include) {
       unset($force_include["js"][0]");
       return $force_include;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: License ENFOLD for our HP // how to implement an own font #1332891

    Hey Bastian Lee Jones,

    Thank you for the inquiry.

    1.) Yes, you would have to buy a license in order to use the theme in your site. Please check the documentation for more info about theme registration.

    // https://kriesi.at/documentation/enfold/theme-registration/

    2.) Did you use the Custom Font Manager to upload the font? Please note that this feature is intended for Google Fonts, fonts that are not available on Google can be added using the @font-face rule instead.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face

    Best regards,
    Ismael

    in reply to: Overwriting Meta Title fails #1332889

    Hi,

    Do you remove the cache and disable the compression after adjusting the code? Declaring the avia_set_title_tag should override the default function and return the value specified, so if you do this for example..

    function avia_set_title_tag()
    {
        return "ECHO";
    }
    

    .. all page title should be set to “ECHO”. You can also disable the default title tag by adding this code.

    remove_action( 'wp_head', 'av_theme_slug_render_title' );
    

    Or this..

    add_action("init", function() {
        remove_action( 'wp_head', 'av_theme_slug_render_title' );
    }, 10);
    

    You can then display your own title tag.

    function av_theme_slug_render_title_mod()
    {
        echo '<title>' . wp_get_document_title() . '</title>';
    }
    add_action( 'wp_head', 'av_theme_slug_render_title_mod' );
    

    Or..

    function av_theme_slug_render_title_mod()
    {
        echo '<title>' . get_the_title(get_the_ID()) . '</title>';
    }
    add_action( 'wp_head', 'av_theme_slug_render_title_mod' );
    

    Unfortunately, we cannot find any reference about how to retrieve the page or post title value set in the AIOSEO settings.

    Best regards,
    Ismael

    in reply to: WPML & Enfold Child Theme #1332887

    Hi,

    No problem. Please feel free to open another thread if you have more questions. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Product Grid / Product Slider Customization #1332885

    Hi,

    Thank you for the inquiry.

    We adjusted the script a bit so that the maxHeight value is recalculated on browser resize. Please try this again.

    
    function ava_custom_product_height_script()
    {?>
        <script>
    	(function($){
    		var win = $(window);
    
    		$(document).ready(function() {
    			// just make sure that the column resizes
    			win.trigger("debouncedresize");
    		});
    
    		win.on("debouncedresize", function(){
    			console.log("test");
    			$('.avia-content-slider-inner').each(function(){
    				var $columns = $('li.product .inner_product',this);
    				var maxHeight = Math.max.apply(Math, $columns.map(function(){
    					return $(this).height();
    				}).get());
    				$columns.height(maxHeight);
    			});
    		});
    	})(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_product_height_script', 9999);
    

    Best regards,
    Ismael

    in reply to: Color section: background 100% #1332884

    Hi,

    Thank you for the inquiry.

    You may need to adjust the background size value for that particular color section so that the image always inherits the actual width and height of the container.

    .avia-full-stretch {
        background-size: 100% 100% !important;
    }

    Please note that the selector avia-full-stretch is a common css class name, which is applied to all color sections or sliders with backgrounds that is set to Background Repeat > Stretch to fit. You will have to apply a unique ID or class name to the element and replace the selector above so that you can directly target or adjust the style of that particular section.

    Best regards,
    Ismael

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

    Hi,

    BTW Solid Commerce is not an extension, it’s a global inventory management system for marketplaces.

    Thank you for that info. Just goes to show that we are not familiar with the plugin. Please keep in touch with the developers for additional help.

    Best regards,
    Ismael

    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

Viewing 30 posts - 12,601 through 12,630 (of 67,591 total)