Forum Replies Created

Viewing 30 posts - 61 through 90 (of 66,739 total)
  • Author
    Posts
  • in reply to: Animate on Scroll #1490491

    Hi,

    Thank you for the update.

    Sorry, but this will require significant modifications to the theme. You will need to either find a third-party plugin or hire someone to implement these features for you. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Add Time Stamp to CSS files #1490490

    Hi,

    Thank you for the update.

    Unfortunately, that would require modifications beyond the scope of our support. It’s not as simple as prepending a timestamp to the files. You may need to look for a plugin or hire a freelance developer to implement the changes for you. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Masonry Blog Posts no longer sorting date correctly #1490489

    Hi,

    Thank you for the info.

    Did you add the script to the functions.php file? The Appearance > Theme File Editor was not accessible when we checked the dashboard. Please make sure the file editor is enabled so we can test the modification.

    Best regards,
    Ismael

    in reply to: Monster Thumbnails #1490488

    Hey Günter,

    Thank you for the inquiry.

    Did you make any modifications to the child theme’s functions.php file? You can try regenerating the thumbnails using any of the plugins listed below.

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

    Please make sure to create a site backup or restore point before regenerating the thumbnails.

    Best regards,
    Ismael

    in reply to: Reduce Menu Size For Smaller Browser Window #1490486

    Hi,

    You’re quite welcome! Please feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mobile Logo Not Correct #1490485

    Hi,

    Thank you for the update.

    Try to include this css code inside the css media query above:

    #top .av_header_glassy.av_header_transparency #header_main {
        background-image: none;
        background-color: black;
    }

    This will disable the gradient background and replace it with a solid black color.

    Screenshot-2025-10-22-at-12-26-56-PM

    Best regards,
    Ismael

    in reply to: Animate on Scroll #1490482

    Hey Christian,

    Thank you for the inquiry.

    The Column elements have animation settings that can be enabled in the Advanced > Column Animation panel. You can also use the Layer Slider for more advanced layering and effects. Please check the screenshot below.

    Screenshot-2025-10-22-at-12-19-40-PM

    If you need help implementing the animation library, please check this link.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1490447

    Hi,

    Thank you for the screenshot.

    Did you add any images, gallery or slider elements to the page or to the builder canvas? Make sure they have alt and title attributes, which can be added or edited in the Media > Library panel. If the issue persists, please provide the login details in the private field so we can check the issue further.

    Best regards,
    Ismael

    in reply to: Reduce Menu Size For Smaller Browser Window #1490446

    Hi,

    Thank you for the inquiry.

    You can try this css code to force the mobile menu to display on tablet view and smaller screens.

    @media only screen and (max-width: 1366px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
      }
    
      .responsive #top .av-main-nav .menu-item {
        display: none;
      }
    }

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Mobile Logo Not Correct #1490444

    Hi,

    Thank you for the inquiry.

    You can add this css code to hide the default logo and display the alternate one on mobile view:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg {
        opacity: 0;
        display: none;
      }
    
      .responsive #top .av_header_transparency .logo .subtext.avia-svg-logo-sub,
      .responsive #top .av_header_transparency .logo img.alternate {
        display: block;
      }
    }

    Result:

    Screenshot-2025-10-21-at-1-45-30-PM

    Best regards,
    Ismael

    in reply to: Editing issue #1490443

    Hi,

    Thank you for the update.

    Glad to know that you’ve found the issue. We can confirm that the text fields are now working properly.

    Screenshot-2025-10-21-at-1-35-16-PM

    Best regards,
    Ismael

    in reply to: Image and Image Alt Attributes #1490442

    Hey jimmysanjaya,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue or explain it a bit more? You can use platforms like Savvyify, ImgBB, PostImages 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, ImgBB, PostImages 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: Trouble with the w2dc Plugin and Enfold #1490441

    Hi,

    Thank you for the update.

    We added the following code in the Code Snippets plugin, which fixed the map display issue in the directory listing. Please note that this will completely display the map API from the theme.

    function ava_disable_gmap() {
        add_filter('avf_load_google_map_api', '__return_false', 10);
        add_filter('avia_google_maps_widget_load_api', '__return_false', 10);
    }
    
    add_action('admin_init', 'ava_disable_gmap');
    
    add_filter("avf_skip_enqueue_scripts_backend_gmaps", function($skip) {
       return "skip_loading";
    }, 10, 1);
    
    add_filter("avf_load_google_map_api_prohibited", function($prohibit) {
       return true;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: button elements overlapping text #1490439

    Hi,

    Thank you for the screenshots.

    That is normal since the Styling > Appearance > Button Position of the buttons is set to Align Left. If you want the buttons to stack on top of each other, set it to the default Align Center.

    Best regards,
    Ismael

    in reply to: Image in top Logo area Mobile #1490436

    Hey rixi,

    Thank you for the inquiry.

    You can try this code in the Quick CSS field to make the header fixed and move the first section below it.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    
      #top #wrap_all .header_color.av_header_transparency+#main>div.av-1a7rg49-0361ab150500a4dbf4236ca5f8b54140 {
        padding-top: 90px;
      }
    }

    Screenshot-2025-10-21-at-12-55-26-PM

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    For #3, please continue on this thread: https://kriesi.at/support/topic/alignment-issues-with-image-overlay-overlay-type-external-on-hover/

    Another solution for your category pages is to use redirection. You can create a custom page using the Advanced Layout Builder, then set up a 301 redirect from the category page to that custom page. Please check any of these plugins.

    https://wordpress.org/plugins/eps-301-redirects/
    https://wordpress.org/plugins/redirection/

    Let us know if you need more info.

    Best regards,
    Ismael

    Hey milkrow,

    Thank you for the inquiry.

    Try to add this script in the function.php file to correct the overlay issue:

    add_action( 'wp_footer', function() { ?>
      <script type="text/javascript">
        (function($) {
          $('.grid-image').trigger('mouseover');
        })(jQuery);
      </script>
    <?php }, 9999 );
    

    Best regards,
    Ismael

    in reply to: Add Time Stamp to CSS files #1490430

    Hey profumopuntoit,

    Thank you for the inquiry.

    File versioning for resources added by the theme will only be enabled when the compression and merging options are turned on. To make sure that changes are reflected immediately, we recommend disabling the cache plugin while configuring the site. Once you’re done, re-enable it along with the compression options.

    Best regards,
    Ismael

    in reply to: Editing issue #1490429

    Hey Jason,

    Thank you for the inquiry.

    We not unable to reproduce the issue on our own installation, so it’s likely caused by a plugin or a custom script. Have you tried disabling all plugins temporarily? Please clone the site to a staging environment, disable all plugins, and then activate them one by one to identify the culprit.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: header logo not centered #1490390

    Hi,

    The complete css code should look like:

    .html_header_top.html_logo_center .logo {
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
    }
    
    html_header_top.html_logo_center .logo img, html_header_top.html_logo_center .logo svg {
        margin: 0 auto;
    }
    
    .html_header_top.html_logo_center .logo img {
        left: 50%;
        transform: translate(-50%, 0);
    }

    Please review the modification.

    Screenshot-2025-10-20-at-2-23-28-PM

    Best regards,
    Ismael

    in reply to: button elements overlapping text #1490388

    Hi,

    Thank you for the update.

    We tried temporarily adding a text block to the portfolio, then clicked Preview, and the text element immediately displayed on the frontend without saving the page. How can we reproduce the issue with the page preview?

    Screenshot-2025-10-20-at-1-34-10-PM

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1.) You can add this filter in the functions.php file to replace “Archive” in the main title:

    add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3);
    function avf_change_which_archive($output)
    {
        if(is_tax('portfolio_entries')){
            $output = __('REPLACE THIS TEXT:','avia_framework'); 
        } 
    
        return $output;
    }

    2.) Unfortunately, it’s not possible to replace it with a custom layout without significant modifications to the theme.

    3.) We can’t reproduce the same issue on our installation — please provide a screenshot.

    4.) For the widgets, you can install plugins such as Widget Logic to control the visibility of the widgets.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Contact Form Title Issues #1490386

    Hi,

    Thank you for the info.

    The site is requesting a YubiKey OTP. Could you temporarily disable this requirement so we can access the site using only the login credentials?

    Best regards,
    Ismael

    in reply to: Trouble with the w2dc Plugin and Enfold #1490385

    Hey SDUS,

    Thank you for the inquiry.

    The latest version of the theme was not available when we checked. Please upload it to your server so we can activate it. We also recommend contacting the plugin developers for additional assistance with this issue.

    Best regards,
    Ismael

    in reply to: Sorting Posts Differently on Different Pages #1490384

    Hi,

    Thank you for the update.

    We adjusted the filter in the functions.php file.

    add_filter( 'avia_blog_post_query', 'ava_blog_post_query_mod', 10, 2 );
    
    function ava_blog_post_query_mod( $query, $params ) {
        if (is_page(1230)) {
            $query['orderby'] = 'date';
            $query['order']   = 'DESC';
        }
    
        if (is_page(574)) {
            $query['orderby'] = 'modified';
            $query['order']   = 'DESC';
        }
    
        return $query;
    }
    

    Screenshot-2025-10-20-at-12-53-18-PM

    Best regards,
    Ismael

    in reply to: header logo not centered #1490324

    Hey!

    Thank you for the update.

    Try to remove the previous css code, then replace it with this css rule.

    .html_header_top.html_logo_center .logo {
        left: 50%;
        transform: translate(-50%, 0);
        width: 100%;
    }
    
    html_header_top.html_logo_center .logo img, html_header_top.html_logo_center .logo svg {
        margin: 0 auto;
    }

    Let us know the result.

    Regards,
    Ismael

    in reply to: Can’t Upload SVG Icon Set #1490322

    Hi,

    Thank you for the inquiry.

    Are you trying to upload this in Enfold > Import/Export? The name of the top folder in the zip file should be “SVG”. Currently, it’s named “Medical_Icons_SVG”, so the theme can’t recognize it. Please rename the top folder, then archive or zip it again before uploading it to the icon manager.

    Please check this documentation for more info: https://kriesi.at/documentation/enfold/svg-icon-sets/

    Best regards,
    Ismael

    in reply to: header logo size – not big enough #1490320

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Edit sub-sub menu #1490319

    Hi,

    Thank you for the update.

    Adjusting the line spacing of the text doesn’t seem to make a difference on our end, but we’re using a relatively small screen, which might be the reason. If you want to adjust the font size and also limit the height of the mega menu images, try this css code:

    #top #header .avia_mega_div > .sub-menu > li > ul > li a .avia-menu-text {
        line-height: 10px;
        font-size: 10px;
    }
    
    #top #wrap_all .avia_mega_div img {
        height: 64px;
        object-fit: cover;
        width: 100%;
    }

    Result:

    Screenshot-2025-10-17-at-12-41-17-PM

    Best regards,
    Ismael

    in reply to: header logo size – not big enough #1490317

    Hi,

    Thank you for the inquiry.

    Try to add this css code to increase the size of the logo image.

    .html_header_top.html_logo_center .logo {
        left: 0;
        transform: none;
    }

    Result:

    Screenshot-2025-10-17-at-12-33-48-PM

    Best regards,
    Ismael

Viewing 30 posts - 61 through 90 (of 66,739 total)