Forum Replies Created

Viewing 30 posts - 23,221 through 23,250 (of 67,510 total)
  • Author
    Posts
  • Hi,

    Glad to hear. We’ll close this thread then.

    Einen schönen Tag noch!

    Best regards,
    Ismael

    in reply to: How to add a custom field to a portfolio with ACF? " #1104389

    Hi,

    Thanks for the update.

    Looks for this code around line 709:

    $output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
    

    Replace it with:

    $acf_provacat = get_field('provacategorie');
    $output .= "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt.$acf_provacat."</div>";
    

    That should render the value of the provacategorie inside the excerpt container. If you want to place another custom field below the feature image, look for this line:

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
    

    Just assign the custom field in a variable and render it inside the container as shown above.

    Best regards,
    Ismael

    Hey Ullrich,

    Thanks for the update.

    We manually set the background color of the 1/1 column to #ffffff or white, instead of using the default theme color which was somehow used in the frontend even if it’s not set.

    Best regards,
    Ismael

    in reply to: Text not in line #1104386

    Hi,

    We would like to apologize for the late response.

    The login info seems to be invalid. Please check it carefully. If possible, we would like to ask you to create a new thread because this one is getting a bit too long and is actually off the original topic. We will continue there.

    Best regards,
    Ismaelz

    Hi,

    Sorry for the confusion.

    The post or product navigation is created using the “get_adjacent_post” function and as the name suggests, it retrieves the next/previous post. The default order is by date, but you can use the “get_{$adjacent}_post_sort” filter to change it. The $adjacent refers to the type of adjacency, which is either “next” or “previous”.

    Example:

    function avf_get_previous_post_sort_mod( $sort ) {
    	if ( 'product' === get_post_type() )
    		return "ORDER BY p.post_title DESC LIMIT 1";
    	else
    		return $sort;
    }
    add_filter( 'get_previous_post_sort', 'avf_get_previous_post_sort_mod' );

    That should sort the previous post by title instead of date.

    Best regards,
    Ismael

    in reply to: Adjustments with Events Calendar plugin #1103546

    Hey Niklas,

    Thank you for using Enfold.

    1.) You cannot modify the calendar page using the advance layout builder, so you can’t add a color section. It’s possible but you have to modify the calendar template file manually, which is not something we can help you with.

    2.) Use the following css code to change the style of the headline.

    h1.tribe-events-page-title {
       /* styles here */
    }

    3.) Yes, it’s possible. You have to modify the theme’s \config-events-calendar\views\default-template.php file. Place the text right after this container. Or utilize the “tribe_events_before_html” filter.

    Example:

    /*
    * The Events Calendar - Add Content to Month View Only
    * @version 1.0
    */
    add_filter( 'tribe_events_before_html', 'tribe_events_before_html_mod', 10 );
    function tribe_events_before_html_mod( $tribe_events_before_html ) {
    	if ( tribe_is_month() ) {
    		$tribe_events_before_html .= 'Add your custom text here.';
    	}
    
    	return $tribe_events_before_html;
    
    }

    Best regards,
    Ismael

    in reply to: Theme not working with php 7.0 #1103545

    Hi,

    Thanks for the update.

    Can you delete the other Enfold folder and leave the latest version? There are 4 copies of Enfold in the themes folder.

    Best regards,
    Ismael

    in reply to: Updating from 4.1.2 #1103544

    Hey!

    Thanks for the update.

    The site is still using version 3.5.2. Please upload the latest version inside the “themes-old” folder. We’ll check it again afterwards.

    Regards,
    Ismael

    Hey jjsanderson,

    Thank you for using Enfold.

    Are you referring to this filter?

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    in reply to: Fixing custom 404 page not being displayed #1103528

    Hi,

    Thanks for the update.

    It works when the “Maintenance Mode” option is disabled. This behavior is probably not intended but if you think about it, it doesn’t really necessary to have 404 page yet when the site is not even accessible or on maintenance mode. But we’ll still report the issue to our dev.

    Best regards,
    Ismael

    in reply to: Social share icons for section ID #1103521

    Hi,

    Thanks for the update.

    That is not possible with the current option as @Mike explained. You may need to look for a different social plugin.

    Best regards,
    Ismael

    in reply to: Vertical navigation menu edit #1103517

    Hi,

    Thanks for the update.

    You should replace the action name “ava_after_main_menu” with “ava_main_header_sidebar” if you’re not using the default top header.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    The login details are invalid. Please check them carefully.

    Best regards,
    Ismael

    in reply to: Newsletter: adding legal information #1103515

    Hi,

    UPDATE: Unfortunately, you can’t add a checkbox to the subscribe form because the current script doesn’t support that element. You may need to use a different newsletter plugin for that.

    Best regards,
    Ismael

    in reply to: Newsletter: adding legal information #1103513

    Hi,

    Thank you for the update.

    Have you tried adding a text block before or after the mailchimp subscribe element? That should be sufficient to direct users to your privacy policy page.

    Best regards,
    Ismael

    in reply to: Mobile responsive top social media icons #1103510

    Hi,

    Thanks for the update.

    Do you want to reverse the order of the social icons and the phone number? This css code should help.

    @media only screen and (max-width: 767px) {
    .responsive #top #header_meta .container {
        display: flex;
        flex-direction: column;
    }
    
    .responsive #top #header_meta .container .social_bookmarks {
        order: 2;
    }
    }

    Best regards,
    Ismael

    Hey OriginsSpeak,

    Thank you for using Enfold.

    The site looks different from the screenshot, probably because the boxed layout is disabled. Is that intentional? Is the Performance > File Compression settings enabled? Please disable it temporarily while you configure the site.

    Best regards,
    Ismael

    in reply to: Issue uploading cutom font via 'custom font manager' #1103508

    Hey superteam_io,

    Thank you for using Enfold.

    You should check the uploads directory and make sure that it has the correct folder/file permissions.

    // https://wordpress.org/support/article/changing-file-permissions/

    And make sure that the ZipArchive module is enabled.

    // https://www.php.net/manual/en/class.ziparchive.php

    If it still doesn’t work, try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: Updating from 4.1.2 #1102826

    Hi,

    Thanks for the update.

    The site is using a very old version of the theme, 3.5.2. You have to delete the current theme folder first before uploading the latest one. You may need to reconfigure some of the theme options again after the update because a lot has changed since. Don’t forget to create a backup or a restore point.

    Please update the theme regularly to avoid this issue.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Can we access the file server? We can’t edit the files in the Appearance > Editor panel. Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: New Message (sent by contact form at Enfold) #1102813

    Hi,

    Thanks for the update.

    Have you tried the reCAPTCHA option for the contact form element? That should block the spams, unless they have found a way to work around that security. A few users reported that the spam emails stopped when they activated that option.

    // https://kriesi.at/support/topic/contact-form-changes-after-enfold-update/#post-1094615
    // https://kriesi.at/support/topic/contact-form-sending-me-spam-messages/#post-1081352

    Best regards,
    Ismael

    in reply to: flyout menu coloring #1102805

    Hey!

    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!

    Regards,
    Ismael

    in reply to: flyout menu coloring #1102799

    Hi,

    Can you give me some advice on why my fullwidth submenu is not sticky, although I set it to sticky?

    1.) We provided a possible solution in the following thread. Please refrain from veering away from the original topic because the thread might get confusing.

    // https://kriesi.at/support/topic/submenu-not-sticky/#post-1101745

    – is there a way to make SPORTLER also linkable,

    2.) You can only clone the parent menu item if you chose to display the sub menu items on click.

    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: Change Main Menu Background Color #1102796

    Hi,

    We can’t access the site using the credentials that you provided in the previous thread. Please open a new ticket and post the necessary details in the private field. We’ll continue there.

    Related thread: https://kriesi.at/support/topic/styling-header-main-menu-breaks-image-animations-counters-and-rollovers/#post-1088409

    Best regards,
    Ismael

    in reply to: Text not in line #1102792

    Hi,

    Thanks for the update.

    Would you mind posting the FTP details ? We can’t edit the files in the Appearance > Theme Editor panel.

    Best regards,
    Ismael

    in reply to: How to add a custom field to a portfolio with ACF? " #1102789

    Hi,

    Thanks for the update.

    Are you using the posts or the portfolio?
    What is the name of the ACF field that you want to add?
    Where exactly do you want to place it?

    We should be able to replicate it in on our own installation without visiting your site. We can then post the solution here afterward.

    Best regards,
    Ismael

    in reply to: Preview shows not the updated draft of a post #1102782

    Hi,

    Thanks for the update.

    1.) If you’re intention is to use the advance layout builder (ALB), then you should switch to it immediately. You don’t need to start with the classic editor.

    2.) Are you using the ALB for the previous posts? If you are, then you can save the content as template so that you can use the same content again for new posts.

    3.) It doesn’t affect the website at all. It just displays the actual shortcodes below the ALB.

    4.) We’ll forward the issue to our devs.

    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: Safari Video Slider does not work proper #1102779

    Hi,

    Glad that you found that fix. We’ll forward this again to our dev. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Google Adwords Conversion Tracking #1102679

    Hi,

    Thank you for using Enfold.

    Have you tried adding the gtag function or script inside a code block element? It doesn’t really have to be located before the closing tag.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Do you have a test page where we can see the issue? We tried it on our end, but we could not reproduce the error.

    <a href="http://www.test.com?location=val1&region=val2">Test</a>
    
    <iframe src="http://localhost/kriesi/enfold/test-2?location=val&region=val2"></iframe> 

    The text and the iframe displayed properly in the text block preview.

    Best regards,
    Ismael

    in reply to: How to customize new woocommerce filters #1102672

    Hey Peter,

    Thank you for using Enfold.

    The default or standard order is alphabetical. You can change the default by editing the “avia_woocommerce_frontend_search_params” in the config-woocommerce > config.php file, which is located around line 1382. Please note that the default WooCommerce filters are not going to work with the theme’s product grid element.

    Best regards,
    Ismael

Viewing 30 posts - 23,221 through 23,250 (of 67,510 total)