Forum Replies Created

Viewing 30 posts - 2,311 through 2,340 (of 66,134 total)
  • Author
    Posts
  • 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

    in reply to: Hiding elements in Advanced Layout Elements. #1470612

    Hi,

    Thank you for the inquiry.

    There is no option for this by default, but you might be able to accomplish it with a plugin. You’ll need to create two separate pages and then restrict access based on user roles. One of these plugins can help you set up the restrictions

    // https://wordpress.org/plugins/restrict-user-access/
    // https://wordpress.org/plugins/content-control/

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    Try to use this filter in the functions.php file to display the modification date:

    function avf_custom_post_slider_meta_content( $meta_content, $entry, $index, $atts, $meta_array ) {
        $updated_date = get_the_modified_date( 'F j, Y', $entry->ID );
        $meta_array[] = '<div class="updated-date">Updated: ' . esc_html( $updated_date ) . '</div>';
        $meta_content = implode( '<div class="slide-meta-del">/</div>', $meta_array );
    
        return $meta_content;
    }
    
    add_filter( 'avf_post_slider_meta_content', 'avf_custom_post_slider_meta_content', 10, 5 );
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Question: I would like to set up the links on my Secondary Menu to be such that when someone hovers on them, the link word gets underlined (and thus the user can easily see that these ARE links).

    You can add this css code to underline the menu items on hover:

    #top #header_meta a:hover {
        text-decoration: underline;
    }

    Best regards,
    Ismael

    in reply to: “critical error on website” only on homepage #1470541

    Hi,

    Thank you for the info.

    Maybe you have an idea what the cause of the original problem was? Maybe an insight if the above mentioned debug log error with action_scheduler_run_queue is related?

    Glad to know that the issue has been resolved. Unfortunately, we haven’t encountered this same issue before, so we’re not sure what could have caused it, and it might be unique to your installation. Please let us know if the issue occurs again so we can check it.

    Best regards,
    Ismael

    Hey ibuzaev,

    Thank you for the inquiry.

    We are not sure what caused this issue, but according to the documentation, this feature will be removed in the future, making it impossible to display a dedicated search box for any site in Google search results.

    // https://developers.google.com/search/docs/appearance/structured-data/sitelinks-searchbox
    // https://developers.google.com/search/blog/2024/10/sitelinks-search-box

    Best regards,
    Ismael

Viewing 30 posts - 2,311 through 2,340 (of 66,134 total)