Forum Replies Created

Viewing 30 posts - 6,481 through 6,510 (of 67,597 total)
  • Author
    Posts
  • Hi,

    Have you tried disabling the compression and cache plugin temporarily? It’s possible that the site is still loading the older version of the stylesheets without the recent modification. If the issue persists after disabling the plugins, please provide the login details in the private field so that we can test the modification.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to see the site so that we can inspect the elements and check the current settings. Please provide the site URL in the private field. A screenshot will also help.

    Best regards,
    Ismael

    in reply to: Open Lightbox directly #1429897

    Hey Antonio,

    Thank you for the inquiry.

    This should be possible with a custom script. Please add this code in the functions.php file.

    function ava_custom_script()
    {
        ?>
    	<script>
    		(function($) {
    	           $(document).ready(function () {
                           // trigger masonry lightbox on load
                           $('.av-masonry-container .av-masonry-entry:nth-child(1)').trigger('click')
                       });
    		}(jQuery)); 
    	</script>
    	<?php
    }
    add_action('wp_footer', 'ava_custom_script');
    

    If you need to apply this modification to a specific Masonry element, you could apply a Custom CSS Class name to it and adjust the script accordingly.

    // https://kriesi.at/documentation/enfold/add-custom-css/

    Best regards,
    Ismael

    in reply to: Validation of Enfold contact form #1429895

    Hey Michael,

    Thank you for the inquiry.

    The validation “valid positive number including 0” checks if the value is not negative and is not less than 0. This should be useful if you want to control the integer value of an input field and make sure that the user doesn’t specify negative numbers.

    Best regards,
    Ismael

    in reply to: customer reviews – align the text at the top #1429894

    Hey ebenanders,

    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: Video Not Appearing Properly As Color Section Background #1429866

    Hi,

    Thank you for the clarification.

    It seems to be an issue with the avia_html5_activation script in the js > avia.js file. Please edit the file and look for this code around line 664:

    features = [ 'playpause', 'progress', 'current', 'duration', 'tracks', 'volume' ],
    

    Replace it with:

    features = $(this).prop('controls') ? [ 'playpause', 'progress', 'current', 'duration', 'tracks', 'volume' ] : [],
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modification. We will forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Header widget margins help follow up #1429863

    Hi,

    Thank you for the update.

    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: Menu problems – underline and dividers are not there #1429862

    Hi,

    Thank you for the info.

    We are still not sure why this is happening. Please provide the login details in the private field so that we can check the site settings.

    Best regards,
    Ismael

    in reply to: loop back to first post in category #1429861

    Hi,

    Glad to know that @Guenni007 was able to assist you! Please don’t hesitate to start a new thread if you have any further questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Duplicate H1 on Category Pages #1429860

    Hi,

    Thank you for the update.

    The post below contains an h1 tag, which was added manually in the editor. Please check the private field, or provide the login info so that we can check the post further.

    Best regards,
    Ismael

    in reply to: Toggle problem on Chrome with some Android Device #1429859

    Hi,

    Thank you for the update.

    As long as the modifications are made in the child theme, they should be preserved after the update. However, since the site is still using a very old version of the theme (4.8.6.2), you will need to update the theme manually via FTP.

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

    Please make sure to create a site backup or a restore point before proceeding with the update.

    Best regards,
    Ismael

    Hi,

    Should I simply replace the “nth-child(1)” with “nth-child(2)”

    Yes, that should work. Is the second column a 1/3 column element?

    Best regards,
    Ismael

    in reply to: Website für Schule #1429857

    Hello Erhan Lale,

    Thank you for your inquiry.

    Unfortunately, we do not manage sales inquiries or handle discount offers through this channel. Kindly direct your request to the Themeforest team.

    Thank you for your understanding.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Please make sure to place this css code:

    #top #header .av-main-nav > .av-burger-menu-main, #top #header .av-main-nav > .menu-item-search-dropdown {
        cursor: pointer;
        display: block!important;
    }
    

    .. after this code:

    #top #header .av-main-nav > li.menu-item {
        display: none!important;
    }
    

    You may need to purge the cache after applying the modification, or disable the compression settings temporarily.

    Best regards,
    Ismael

    in reply to: Checkbox im Bestellformular (Surecart) #1429855

    Hey michael_zocholl,

    Thank you for the inquiry.

    Are you trying to add a privacy policy checkbox in the checkout page? With Woocommerce, you add this manually using a template hook. Please check the link below.

    // https://wpbeaches.com/add-a-required-checkbox-field-in-woocommerce-checkout-page/

    Best regards,
    Ismael

    in reply to: Cache keeps the old song coming to the fore. #1429854

    Hey Jeroen,

    Thank you for the inquiry.

    The new number displayed correctly after purging the cache. Please check the link in the private field.

    Best regards,
    Ismael

    in reply to: Editing blog page issues #1429853

    Hey Anouk,

    Thank you for the inquiry.

    We edited the Enfold > Blog Layout settings so that you can use the Advance Layout Builder when editing the blog page. We also provided the link to default blog page in the private field.

    Best regards,
    Ismael

    in reply to: Google Maps – Nothing working #1429852

    Hey whdsolutions,

    Thank you for the inquiry.

    The map in the footer container seems to be loading correctly when we checked the site. Did you figure out the issue?

    Best regards,
    Ismael

    in reply to: Changing Theme Options Breaks Element Loading #1429851

    Hey jmkreege,

    Thank you for the inquiry.

    The issue might be due this error generated by the siteground-optimizer plugin.

    siteground-optimizer…367fda7c0dcaf.js:72 Uncaught SyntaxError: Unexpected string
    

    Please check the css modifications and make sure that there are no invalid css rules. To fix the issue temporarily, consider disabling the compression or cache plugin.

    Best regards,
    Ismael

    in reply to: Downloading a demo #1429802

    Hi,

    Thank you for the update.

    These are the shortcodes of the pages above.

    1.) https://pastebin.com/2RCWamq6
    2.) This is a default blog layout, which can be adjusted in the Enfold > Blog Layout panel.
    3.) https://pastebin.com/kW9cJTaq
    4.) https://controlc.com/1bf2ab16

    Best regards,
    Ismael

    in reply to: Object-fit for images in magazine style #1429798

    Hi!

    No problem! Please don’t hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Regards,
    Ismael

    in reply to: H3 title on masonry blocks #1429796

    Hi,

    Thanks @Guenni007!

    Best regards,
    Ismael

    in reply to: Color set for Menu and Burger Menu #1429794

    Hi,

    No problem! 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: Object-fit for images in magazine style #1429792

    Hi,

    Thank you for the update.

    Looks like you’ve managed to fix the issue by uploading square images (300x300px). If you still want to adjust the size of the magazine thumbnails using css, you can try this code.

    .av-magazine-thumbnail-link > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    Best regards,
    Ismael

    in reply to: Problem with all styling in advanced layout builder #1429791

    Hi,

    Thank you for the info.

    The issue occurs because the server fails to generate the post css files. These files contain the custom styles of the elements in the builder for a specific post or page. To temporarily fix the issue, we added this filter 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 );

    Best regards,
    Ismael

    Hey Dave,

    Thank you for the inquiry.

    As mentioned in the Product Info description, the element displays overview of the product attributes. It will not display anything if the product doesn’t have any attributes. To learn more about product attributes, please check the link below.

    // https://woo.com/document/managing-product-taxonomies/#product-attributes

    Best regards,
    Ismael

    in reply to: Help: Request Entity Too Large #1429788

    Hey ermington,

    Thank you for the inquiry.

    Where do you see this info? Would you mind providing a screenshot of it? 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: Align Buttons #1429787

    Hi,

    Thank you for the screenshot.

    We edited the script in the functions.php file to enable cells to readjust when the browser size changes. Here is the updated code.

    
    function grid_row_special_headings_and_text_blocks_equal_heights() { ?>
        <script>
        (function($){
            function resizeGridCells()
            {
                var width = $(window).width();
                if (width > 767) {
                    $('.page-id-3083 .av-layout-grid-container').each(function(){  
                        var $specialHeading = $('.flex_cell .av-special-heading-tag',this);
                        var $textBlock = $('.flex_cell .av_textblock_section p',this);
                        var specialHeadingHeight = Math.max.apply(Math, $specialHeading.map(function(){
                            return $(this).height();
                        }).get());
    
                        var textBlockHeight = Math.max.apply(Math, $textBlock.map(function(){
                            return $(this).height();
                        }).get());
    
                        $specialHeading.height(specialHeadingHeight);
                        $textBlock.height(textBlockHeight);
                    });
                } 
            }
        
            $(window).on('debouncedresize', function() {
                resizeGridCells();
            });
    
            resizeGridCells();
        })(jQuery);
      </script>
        <?php
      }
      add_action( 'wp_footer', 'grid_row_special_headings_and_text_blocks_equal_heights', 99 );

    Best regards,
    Ismael

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    We made slight adjustments to the css code to make sure that the search icon remains visible alongside the burger menu icon.

    
    /* Activate burger menu */
    @media only screen and (max-width: 1224px) {
      #top #header .av-main-nav>li.menu-item {
        display: none !important;
      }
    
      #top #header .av-burger-menu-main,
      #top #header .menu-item-search-dropdown {
        cursor: pointer;
        display: block !important;
      }
    }

    Best regards,
    Ismael

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    Move the columns inside a Color Section element and apply a custom class name (Advanced > Developer Settings . Custom CSS Class) to it, “av-custom-flex-column ” for example. You can then add this css code to apply a minimum width to the first column.

    .av-custom-flex-column .entry-content-wrapper {
        display: flex;
        flex-direction: row;
    }
    
    .av-custom-flex-column .entry-content-wrapper .flex_column:nth-child(1) {
        min-width: 300px;
    }

    Best regards,
    Ismael

Viewing 30 posts - 6,481 through 6,510 (of 67,597 total)