Forum Replies Created

Viewing 30 posts - 5,611 through 5,640 (of 67,463 total)
  • Author
    Posts
  • in reply to: I would like to hide this button. #1437775

    Hi,

    Thank you for the update.

    Please use this css code instead:

    #top .tribe-events-c-subscribe-dropdown__button-text {
       display: none !important;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code and make sure to purge the cache.

    Best regards,
    Ismael

    in reply to: Can't edit any block (Hi Element) #1437774

    Hi,

    Thank you for the update.

    We’ll provide you with the shortcodes for the Construction demo’s home page. You can place these shortcodes in the designated shortcode field, but first, you’ll need to switch the builder to debug mode. Please refer to the documentation below for more info:

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    This is the shortcode: https://wtools.io/paste-code/bUnL

    Best regards,
    Ismael

    in reply to: Applying flex to a column & contained elements #1437750

    Hey Jason,

    Thank you for the inquiry.

    You can manually add this html in a Text or Code Block element to create a two column container:

    
    <div class="av-column-custom-container">
       <div class="column"><img src="image.jpg" alt="Image"></div>
       <div class="column">
          <h2>Title</h2>
          Job Sector: IT Excerpt: Lorem ipsum dolor sit amet,
          consectetur adipiscing elit. Ut eget placerat enim. <a href="#">Read More</a>
       </div>
    </div>
    

    Then use this css code:

    .av-column-custom-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    
    .av-column-custom-container .column {
      width: 48%;
      margin-bottom: 20px;
    }
    
    .av-column-custom-container img {
      max-width: 100%;
      height: auto;
    }

    Adjust the styles as needed.

    Best regards,
    Ismael

    Hey bmcinternet,

    Thank you for the inquiry.

    The error occurs due to the Enfold > Performance > File Compression settings. We recommend disabling the default compression options from the theme and use WP Rocket’s compression settings as an alternative.

    Best regards,
    Ismael

    in reply to: Broken Enfold layout after updating a random plugin #1437741

    Hi,

    We are not really sure if that is the issue because the path of the other file (post-17.css) is different. The theme specifically looks for the dynamic css in the /wp-content/dynamic_avia/avia_posts_css/ folder. Please feel free to open another thread if you encounter the issue again.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: All page elements disappears when changing something. #1437739

    Hey Akhurst,

    Thank you for the inquiry.

    Did you add any HTML tags to the page? Please make sure that there are no invalid tags and that they are properly closed. Otherwise, they could break the layout of the page and result in missing content.

    You could save the content as template and switch the builder to debug mode so that you can inspect the content properly. Please check the documentation below for more info:

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: change logo #1437738

    Hi,

    Great! Glad it worked. Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: changes in fonts, buttons and css are not updating #1437737

    Hey apostrophe,

    Thank you for the inquiry.

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Links and text in footer not changing #1437735

    Hey jmjwebsites,

    Thank you for the inquiry.

    Are you referring to the links within the socket container? If that’s the case, you can use this css rule to adjust the style of the menu items.

    #socket .sub_menu_socket li {
        float: left;
        display: block;
        padding: 0 10px;
        border-left-style: solid;
        border-left-width: 1px;
        line-height: 10px;
        font-size: 18px;
    }

    For the copyright text, please add this code:

    #socket .copyright {
        float: left;
        font-size: 18px;
    }
    

    Best regards,
    Ismael

    in reply to: Footer overlap testimonials on mobile homepage #1437734

    Hi,

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

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can also apply Custom CSS Class names to the sections where you need to implement this modification. This should allow you to target them specifically without affecting other elements of the same type. Please refer to the documentation below for more information:

    Best regards,
    Ismael

    in reply to: ENFOLD theme #1437732

    Hey Kacper,

    Thank you for the inquiry.

    Yes, it is the same theme. However, you may encounter a few errors after updating to version 5.6.12 since the site contains a very old version (3.6.1) of the theme. We recommend cloning the site to another environment, upgrading the theme there, and fixing any errors before uploading it to the live site.

    Best regards,
    Ismael

    in reply to: How to safely duplicate pages #1437731

    Hi,

    Great! Glad to know that this has been resolved. 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: Wrong display of the accordeon-slider #1437730

    Hi,

    Thank you for the update.

    Good to know that you managed to identify the cause of the issue. Did you enable the compression or minification option of the cache plugin? If so, you may need to deactivate the Enfold > Performance > File Compression settings to avoid any unexpected results from redundant compression.

    Best regards,
    Ismael

    in reply to: How to change size of #1437729

    Hey AuroraArcus,

    Thank you for the inquiry.

    You can adjust the style of the main menu links in the Enfold > Advanced Styling panel. Look for the elements within the Main Menu section and make the necessary edits.

    Best regards,
    Ismael

    in reply to: Blog category page #1437728

    Hey Stefan,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to adjust the layout of the archive or category pages:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }

    Best regards,
    Ismael

    in reply to: Textblock Font Sizes ignored by some browsers #1437682

    Hi,

    Thank you for the clarification.

    What happens when you toggle or temporarily disable the Enfold > Performance > File Compression settings? Please disable the compression settings, then deactivate the cache plugin temporarily. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Wrong display of the accordeon-slider #1437681

    Hi,

    Thank you for the update.

    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: Blurry images #1437680

    Hey carmen,

    Thank you for the inquiry.

    https://faceclinic.es/equipo-medico/ – but I have only select medium size – but is blurry, h

    Have you tried selecting the full-sized or the original version of the image instead of the medium size? Please note that WordPress automatically compresses images, resulting in a minor decrease in image quality, especially noticeable on smaller thumbnails.

    Best regards,
    Ismael

    in reply to: Logo Not Displaying & Video Player Issue #1437679

    Hey FokeOne,

    Thank you for the inquiry.

    Did you set the Layout > Header visibility and transparency settings to the 5th option? Please note that this option will initially hide the header and only display it on scroll. If you need the logo to display without scrolling, try to add this css code:

    #top .av_header_transparency.av_alternate_logo_active .logo a > img, #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
        opacity: 1;
    }

    Did you try muting the video? We may need to access the site in order to properly check the issue with the video element. Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Favicon not working #1437672

    Hey bemodesign,

    Thank you for the inquiry.

    How did you add the favicon? Please make sure to upload it in the Enfold > Theme Options > Favicon settings. You can use the following tool to convert the image to an actual .ico file: https://favicon.io/

    Best regards,
    Ismael

    in reply to: Icon grid with photos instead of icons #1437671

    Hey Aleksandra,

    Thank you for the inquiry.

    There is no option for this by default, but you can disable the default icon and manually embed your own image in the Grid Item Content editor.

    You can also upload your own icon fonts if necessary. Please check the documentation below.

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

    Best regards,
    Ismael

    in reply to: Broken Enfold layout after updating a random plugin #1437670

    Hi,

    Failed to load resource: the server responded with a status of 404 () post-206.css:1
    https://www.option-webdesign.nl/wp-content/uploads/dynamic_avia/avia_posts_css/post-206.css?ver=ver-1710774338

    If your server fails to generate the dynamic posts css file when the plugins are updated, try to disable the feature and allow the theme to instead add the custom styles inline. 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 );

    Best regards,
    Ismael

    in reply to: Minify kills PHP service #1437669

    Hi,

    Alright! Please feel free to open another thread if you encounter more issues in the future. We’ll close the thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Textblock Font Sizes ignored by some browsers #1437668

    Hi,

    Thank you for the update.

    Are you referring to the h3 tags in the Text Block element? The font size of the heading element is set to 30px when we checked the site on Chrome and Safari. Please check the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: Footer overlap testimonials on mobile homepage #1437667

    Hey khrntanya,

    Thank you for the inquiry.

    It’s the same issue as you have here: https://kriesi.at/support/topic/several-ninjaforms-in-grid-being-cut-off-by-footer/

    The following css limits the height of the Grid Row cells:

    .responsive #top #wrap_all .av-flex-cells .avia-builder-el-last.no_margin {
        height: 500px !important;
    }
    

    Please remove the css code or adjust it appropriately.

    Best regards,
    Ismael

    Hey khrntanya,

    Thank you for the inquiry.

    Did you add this css code?

    .responsive #top #wrap_all .av-flex-cells .avia-builder-el-last.no_margin {
        height: 500px !important;
    }

    This limit the cell height to 500px, cutting off taller content or elements.

    Best regards,
    Ismael

    in reply to: Can not edit pages #1437665

    Hey jenzai,

    Thank you for the inquiry.

    We noticed several script errors in the console when we edit one of the pages. Did you install any plugins recently? To troubleshoot this issue, please follow these steps:

    1. Temporarily deactivate all plugins.
    2. Reload the page and check if the script errors persist.
    3. If the errors disappear, reactivate the plugins one at a time.
    4. After activating each plugin, reload the page and observe if the script errors reoccur.
    5. By activating plugins individually, you can isolate the plugin causing the issue.

    This process will help identify the specific plugin responsible for the script errors.

    Best regards,
    Ismael

    in reply to: How to remove Header completly #1437664

    Hey edgeofcinema,

    Thank you for the inquiry.

    In the page editor, you can select the Blank – No Header, No Footer template in the Page Attributes > Template dropdown to create a page without the header and footer container. You can also decrease the top and bottom padding of the Color Section by adjusting the Layout > Margin and Padding > Section Padding settings to further decrease the space above the section.

    Best regards,
    Ismael

    in reply to: Image compression #1437663

    Hey navindesigns,

    Thank you for the inquiry.

    Please note that the theme does not compress the images. Compression is a default feature of WordPress, which defaults to 90% image quality (only for jpeg images), but the theme increase this to 100%. If you want to adjust it manually, you can add these filters in the functions.php file:

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1);
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1);
    function avf_set_quality_mod($quality) { $quality = 55; return $quality;}
    

    Did you install any image compression plugin?

    Best regards,
    Ismael

Viewing 30 posts - 5,611 through 5,640 (of 67,463 total)