Forum Replies Created

Viewing 30 posts - 5,761 through 5,790 (of 67,591 total)
  • Author
    Posts
  • 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

    Hi,

    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: Mobile Menu Items #1437661

    Hey imagestudios,

    Thank you for the inquiry.

    The color of the menu items, both for the default and mobile menu, can be adjusted in the Enfold > General Styling > Logo Area tab. Adjust the color values in the Logo Area Font Color and the Logo Area Secondary Font Color field. You can also go to the Enfold > Advanced Styling panel and adjust the style of Main Menu (icon) > Menu Links in overlay/slide out element.

    Best regards,
    Ismael

    in reply to: Bullet Columns on mobile #1437660

    Hey khrntanya,

    Thank you for the inquiry.

    In the Styling > Text Block Styling section of the Text Block element, you can choose a Mobile Breakpoint to transition to a single column on smaller screens.

    Best regards,
    Ismael

    in reply to: Mobile optimization #1437536

    Hey Andrea,

    Thank you for the inquiry.

    The cells of the table do not respond or resize correctly on mobile view due to the height adjustment in the following css code:

    .pricing-table>li {
        border-color: var(--base1-color)!important;
        font-size: 18px!important;
        font-weight: bold!important;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        resize: vertical;
        margin: 0 auto;
    }

    Please adjust the height property from 100px to auto and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    Best regards,
    Ismael

    in reply to: Serach Bar in Header Styling #1437530

    Hi,

    Thank you for the screenshot.

    The background of the search box icon is already red. Did you figure out the settings? If you prefer to adjust it manually, please use this css code.

    div .header_color .button, .header_color #submit, .header_color input[type='submit'] {
        background-color: #d90f38;
        color: #ffffff;
        border-color: #b70d16;
    }

    Best regards,
    Ismael

    in reply to: Enfold Classic Restaurant Demo problems #1437529

    Hi,


    @jmjwebsites
    : You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adjusting the settings, and make sure to purge the cache. Please open a new thread here: https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: Category page do not showing the right categories #1437462

    Hi,

    We may need to access the file server in order check the issue further. Please provide the S/FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Minify kills PHP service #1437461

    Hi,

    Thank you for the update.

    The error is generated from the avia_backend_create_file function within the enfold/framework/php/function-set-avia-backend.php. The function is triggered when the theme has to generate the minified and compressed files. Is the issue occurring when the Enfold > Performance > File Compression settings are disabled?

    To temporarily fix the issue, please look for the avia_backend_create_file function and replace it with:

    function avia_backend_create_file( $file, $content = '', $verifycontent = true )
    {
        $handle = @fopen( $file, 'w' );
        if( $handle )
        {
            $created = fwrite( $handle, $content );
            fclose( $handle );
    
            if( $verifycontent === true )
            {
                $handle = fopen( $file, 'r' );
                $fileSize = filesize( $file );
    
                if ($fileSize > 0) {
                    $filecontent = fread( $handle, $fileSize );
                    $created = ( $filecontent == $content ) ? true : false;
                } else {
                    $created = false; 
                }
    
                fclose( $handle );
            }
        }
        else
        {
            $created  = false;
        }
    
        return $created;
    }
    

    Best regards,
    Ismael

    Hey StephenStamp,

    Thank you for the inquiry.

    Did you select the page as the base or default shop page? Please note that attributes or product filters will only display on default WooCommerce templates such as the base shop page, archive pages, or product category pages. These filters will not display on non-WooCommerce templates, such as a custom shop page, regardless of whether it’s built using the Advanced Layout Builder or the default editor.

    Best regards,
    Ismael

    in reply to: Layer Slider Plugin Update #1437453

    Hi,

    Great! Glad to know that you’ve found a working solution. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    It doesn’t matter if it’s new or if I try and just update the page with new content. If I update, I lose all my work.

    Are you manually adding html tags to the page? Please make sure that there are no invalid tags and that all tags are properly closed. Also, please avoid inserting angle brackets (greater or less than symbols) directly into the content, as they may break the layout of the page and cause the loss of all content after those symbols.

    Best regards,
    Ismael

    in reply to: Social Media Icons (not Share!) in Footer #1437451

    Hey Monika,

    Thank you for the inquiry.

    You can create a custom shortcode for the social icons and then place this shortcode in a text widget. Please refer to this thread for more info.: https://kriesi.at/support/topic/social-media-icons-in-footer-8/#post-1397164

    Best regards,
    Ismael

    in reply to: Attributes not showing up in shop #1437450

    Hi,

    We replied to this issue in the other thread. Please continue the discussion here. https://kriesi.at/support/topic/custom-shop-page-sort-by/#post-1437448

    Best regards,
    Ismael

    in reply to: Custom Shop Page sort By #1437448

    Hi,

    Thank you for the update.

    This is the default behavior of the category filter. Once a category is selected, it will automatically redirect to the archive page of the selected term or category. Please note that the product category filter is a default WooCommerce filter and is not part of the theme.

    Best regards,
    Ismael

    in reply to: change logo #1437446

    Hey schweg33,

    Thank you for the inquiry.

    Look for the Image element on the page and replace the current image with your own. You should find the Image element nested inside a 1/4 Column element.

    Best regards,
    Ismael

    in reply to: Info Bar #1437445

    Hi,

    Thank you for the update.

    Did you create a widget area named Header in the Appearance > Widgets panel? If not, please create one, add the widgets you’d like to display in the header, and then replace the modification in the functions.php file with the following code:

    function ava_function_after_main_container() {
    
    	dynamic_sidebar('Header');
    
    }
    add_action('ava_after_main_container', 'ava_function_after_main_container');
    

    For more info, please review the instructions in the following documentation: https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Hover effect to increase the column #1437432

    Hi,

    Is it possible to apply a 1px yellow border to the hover effect?

    Yes, that should be possible. Please replace the modification with the following code:

    #top .flex_column:hover {
    	animation: grow 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes grow {
      to {
          transform: scale(1.2);
          border: 1px solid yellow;
      }
    }

    Best regards,
    Ismael

    in reply to: Deactivate from date for contributions #1437269

    Hi,

    Thank you for the update.

    To remove the date on a grid layout added using the Blog Posts element, please add the following css code:

    .responsive #top.slide-meta time, .responsive #top.slide-meta time  + .slide-meta-del {
        display: none;
    }

    This should hide the date in the grid layout while retaining the date within the individual posts.

    Best regards,
    Ismael

    in reply to: Change the name of Archive for category #1437268

    Hi,

    Thank you for the update.

    You can use this filter in the functions.php file to adjust the format of the category title.

    function avf_which_archive_output_mod($output) {
    	if ( is_category() ) {
    		$output = __('Category:','avia_framework').' '.single_cat_title('',false);
    	}
    
    	return $output;
    }
    
    add_filter('avf_which_archive_output', 'avf_which_archive_output_mod');
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    If you want to target the link in the list with the dark background, please try this css code:

    .single-post li a:hover {
        color: red;
    }

    To target the ol element specifically, you can add a unique class name to it.

    Example:

    
    <ol class="av-ol-list-with-links">.. li list here</ol>
    

    You can then use this css code;

    .single-post .av-ol-list-with-links li a:hover {
        color: red;
    }

    Best regards,
    Ismael

    in reply to: Header and slider not responsive #1437266

    Hi,

    Glad to know that the header background is resizing correctly now. As for the slider, consider using the Fullwidth Easy slider, or alternatively, add another slider and ensure the images are resized specifically for mobile view. You can control the visibility of the sliders on various screen sizes by adjusting the options in the Advanced > Responsive > Element Visibility section.

    Best regards,
    Ismael

    in reply to: Portfolio Raster Font Too Big #1437265

    Hi,

    Great! Glad to know that the suggestion worked. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 5,761 through 5,790 (of 67,591 total)