Forum Replies Created

Viewing 30 posts - 151 through 180 (of 63,979 total)
  • Author
    Posts
  • in reply to: Masonry – Sort options as list #1470730

    Hi,


    @Guenni007
    : If I understand correctly, he wanted to convert the sorting buttons into a dropdown. Thanks for sharing, anyway.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The diagnostic part of the LCP is indeed the logo

    Did you try preloading the images? It seems that LCP is no longer an issue when we checked the site again today. Please review the screenshot in the private field.

    Best regards,
    Ismael

    in reply to: Need code to put button right under the menu #1470727

    Hi,

    Thank you for the inquiry.

    You can use this css code to move the button up closer to the header:

    @media only screen and (min-width: 768px) {
    	/* Add your Desktop Styles here */
    	#top .avia-button-wrap.av-232tvi-166076b32a0c965820e82261d552fa95-wrap {
    		top: -150px;
    		position: relative;
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Gutenberg Editor not showing Font Styles #1470726

    Hey benjamins132,

    Thank you for the inquiry.

    We recommend using the Advanced Layout Builder for especially for pages, as it provides more styling options and flexibility for creating advanced layouts. The post appears to be displaying correctly, and the lightbox is working as expected. Could you share a screenshot of the styling issue? You can upload it using platforms like Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Pluggin Glossary for WP and Avia Layout Builder #1470725

    Hi,

    Thank you for the info.

    You may also need to activate the layout metabox for the the glossary post type using the avf_metabox_layout_post_types filter:

    add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
    function avf_metabox_layout_post_types_mod( array $supported_post_types ) {
         $supported_post_types[] = 'your-cpt';
         return $supported_post_types;
    }

    Make sure to replace “your-cpt” with the glossary post type slug.

    Best regards,
    Ismael

    in reply to: ENFOLD DEFAULT DEMO #1470723

    Hi,

    Thank you for the update.

    Have you tried deactivating the plugins temporarily? It’s also possible that the custom server setup is affecting the installation. Is there any way you can clone the site to a temporary domain with a standard WordPress setup?

    Best regards,
    Ismael

    in reply to: PHP Calculator in WordPress #1470722

    Hi,

    Thank you for the update.

    We’re unable to download the zipfile for some reason. As suggested above, you may need to implement it as a shortcode, as a custom plugin or directly include the PHP files in your child theme. Unfortunately, this type of customization is beyond the scope of our support. Consider hiring a freelancer to assist with the customization. You can find freelancers who specialize in theme customization on our customization page.

    If you have any other questions or need further assistance, please feel free to let us know.

    Best regards,
    Ismael

    in reply to: Trying to build blog with Grid Layout #1470721

    Hey MysticMimi,

    Thank you for the inquiry.

    To activate the Advanced Layout Builder (ALB) for the blog page, go to Enfold > Blog Layout > Blog Layout and select the last option, ‘Use the Advanced Layout Builder…’. This will allow you to edit the blog page using the ALB.

    Best regards,
    Ismael

    in reply to: Scrollsnap with Color Section #1470720

    Hey Monika,

    Thank you for the inquiry.

    Could you provide an example of what you’re trying to do? What should happen when you add the class name “scrollsnap”? If you want the color section to snap to a fixed position and only display when the user scrolls down, you may need to create a custom script or use a plugin. This feature is not available out of the box

    Best regards,
    Ismael

    in reply to: footer #1470719

    Hey Mariarita,

    Thank you for the inquiry.

    Instead of adding the heading “CON IL PATROCINIO DI:” in a text widget, try to use this code in the functions.php file:

    function avia_before_footer_columns_mod() {
        echo '<div class="av-custom-footer-heading" style="text-align: center; padding: 20px 0;">';
            echo 'CON IL PATROCINIO DI:';
        echo '</div>';
    }
    add_action( 'avia_before_footer_columns', 'avia_before_footer_columns_mod' );
    

    To remove the hyphen, edit the widgets then adjust the value in the Widget Title field.

    Best regards,
    Ismael

    in reply to: Center Subheading when text default is justify #1470643

    Hi,

    Great! Glad to know that this has been resolved. Thanks to @Guenni007. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470642

    Hi!


    @Guenni007
    : This seems to work:

    function avf_custom_masonry_loop_prepare( $key, $entries ) {
    	$separator = ' / ';
    	$updated_date = get_the_modified_date( get_option('date_format') , $key['ID'] );
    	$output .= '<span class="updated-date meta-color av-masonry-date">'.$separator.'Updated on: ' . esc_html( $updated_date ) . '</span>';
        $post_type = get_post_type( $key['ID'] );
    
        if ($post_type !== 'attachment') {
            $key['text_after'] .= trim( $output, $separator  );
        } 
    	
    	return $key;
    }
    add_filter( 'avf_masonry_loop_prepare', 'avf_custom_masonry_loop_prepare', 10, 2 );

    Best regards,
    Ismael

    in reply to: No Laybout Builder #1470639

    Hi,

    Thank you for the info.

    You need to update the theme from version 6.0.1 to version 6.0.6. Please let us know if the issue persists after the update.

    Best regards,
    Ismael

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470638

    Hi,

    Only Masonry Entries should be doing that. I tried $context == ‘av_masonry_entries’ but again with no success.

    Have you tried checking if the item is a post, attachment or media?

    Example:

       $post_type = get_post_type( $key['ID'] );
    
        if ($post_type === 'attachment') {
           // masonry gallery
        } else 
           // post
        }
    

    Best regards,
    Ismael

    Hi,

    If you’re using the Upcoming Events Dountdown element, please note that this element can display only the original event, not recurring events.

    As mentioned above, this is the intended behavior but you can try the filter that another user suggested in order to adjust the upcoming events query.

    add_filter('avia_tribe_events_upcoming', 'fcfc_upcoming_events_query_fix', 10, 2);
    
    function fcfc_upcoming_events_query_fix($query, $params) {
        $query['ends_after'] = 'now';
        $query['start_date'] = null;
        return $query;
    }
    
    

    Thread: https://kriesi.at/support/topic/upcoming-events-shortcode-not-showing-events-that-have-a-valid-date-range/#post-1470477

    Best regards,
    Ismael

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470635

    Hi,


    @gatehealing
    : We get the same error when we add the code in the functions.php file. Have you tried adding this via SFTP?

    how do i hamper the masonry-gallery to do that too. – i see that switch( $entry->post_type ) on line 1049 but can not bring it to a working snippet inclusion ( by case post or portfolio ).


    @Guenni007
    : What do you mean? The callback for the avf_masonry_loop_prepare filter that you posted above seems to be correct.

    Best regards,
    Ismael

    in reply to: ENFOLD DEFAULT DEMO #1470634

    Hey!

    Thank you for the update.

    You may need to exclude the subdomain from these redirections. Please contact your hosting provider for more info. We’ll keep the thread open for updates.

    Best regards,
    Ismael

    Hey!

    Apologies for my previous reply. I was looking at the CLS score, not the LCP. Have you tried preloading the images used as the logo or slider image? You can try this plugin: https://wordpress.org/plugins/preload-lcp-image/

    Best regards,
    Ismael

    in reply to: Woocommerce – – billing adress fields not showing #1470630

    Hey Yannick77,

    Thank you for the inquiry.

    Did you add these fields manually? How did you do it? Please try disabling the modifications in the functions.php file, except for the function or filter that adds the extra fields.

    Best regards,
    Ismael

    in reply to: How to submit and use custom fonts #1470629

    Hi,

    Thank you for the update.

    Please upload the fonts to any sharing site. We’ll try to zip them without the unnecessary files and return the archive to you for uploading.

    Best regards,
    Ismael

    in reply to: Font size #1470628

    Hey magdazafeir,

    Thank you for the inquiry.

    You can adjust the default font size in the Enfold > General Styling > Typography panel. You can also set values for different sizes. If you need more styling options, you can configure the style of the paragraph element in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Icon list vertical spacing #1470627

    Hi,

    Thank you for the update.

    The value “iconpadding” is used as the ID attribute instead of class name. Try to use this css code:

    #top #iconpadding .av-iconlist-small li {
       padding: 10px 0;
    }

    If you want to use it as a class name, move “iconpadding” to the Custom CSS Class field, then use this css:

    #top .iconpadding .av-iconlist-small li {
       padding: 10px 0;
    }
    

    Best regards,
    Ismael

    in reply to: Manu Button text hover color #1470626

    Hi,

    Thank you for the update.

    The button displays differently on our end. Have you tried clearing your browser history completely or checking it in incognito mode?

    Best regards,
    Ismael

    Hey Hank,

    Thank you for the inquiry.

    Yes, you can reinstall the theme, but you might lose your current theme options. Be sure to export the theme options first from the Enfold > Import/Export panel so that you can import them back once you reinstall the theme. Also, don’t forget to create a site backup or restore point before proceeding just in case.

    Best regards,
    Ismael

    in reply to: Website for Realtor #1470624

    Hey John,

    Thank you for the inquiry.

    The theme doesn’t have a demo specifically for a real estate website, but you can use the Portfolio Items to showcase listings. While we haven’t tested any real estate plugins with the theme, they should work with a few modifications. You can find a list plugins at the following link:

    // https://wordpress.org/plugins/search/real+estate/

    Regarding the map, you cannot directly attach links to them but you can add content that will display in a tooltip.

    Best regards,
    Ismael

    Hey TTI,

    Thank you for the inquiry.

    Did you figure out the issue? The LCP score is now 0, with only a 1010ms delay from the first Layer Slider on the page.

    Best regards,
    Ismael

    in reply to: Append all blog posts with Updated MM/DD/YYYY #1470616

    Hi,

    Thank you for the update.

    Did you copy the code from your email? Please try to restore the previous functions.php file, copy the code directly from this forum, then paste it to the functions.php file. Let us know if this works for you.

    Thank you for the info @Gueni007.

    Best regards,
    Ismael

    in reply to: Masonry – Sort options as list #1470615

    Hey Uli,

    Thank you for the inquiry.

    Unfortunately, there’s no option for this by default, and adding this customization would require significant modifications to the theme, which isn’t covered by our support. If this functionality is essential, you might consider hiring a freelancer to assist with the customization. You can find specialized freelancers on our customization page.

    If you have any other questions, feel free to let us know.

    Best regards,
    Ismael

    Hi,

    Currently, we’re using the “upcoming events” element under the “plugin additions” tab. This works perfectly with a default theme, but we’re experiencing issues when using it with the Enfold theme.

    This element is only available in the theme. How are you trying to use it in a default theme? As mentioned above, the element can only display upcoming events, not events that have already started or recurring events.

    Best regards,
    Ismael

    in reply to: ENFOLD DEFAULT DEMO #1470613

    Hey M-Graphics24,

    Thank you for the inquiry.

    What do you mean by “become the custom link home page”? Are you trying to adjust the menus? If so, try to go to the Appearance > Menus panel and make sure that the new home page is properly set as the front page in the Enfold > Theme Options.

    Also, I have opened a sub-domain

    How did you open a sub-domain? Did you import the database from the live site? Please provide the link to the subdomain so that we can check it.

    Best regards,
    Ismael

Viewing 30 posts - 151 through 180 (of 63,979 total)