Forum Replies Created
-
AuthorPosts
-
Hi,
Glad to hear. We’ll close this thread then.
Einen schönen Tag noch!
Best regards,
IsmaelHi,
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,
IsmaelMay 27, 2019 at 3:18 am in reply to: Enfold – preview page looks perfect, but saved page is wrong and different #1104387Hey 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,
IsmaelHi,
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,
IsmaelzHi,
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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelHey!
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,
IsmaelMay 23, 2019 at 4:57 am in reply to: Documentation missing for avf_alb_supported_post_types: ALB on CPTs #1103536Hey 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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelMay 23, 2019 at 4:05 am in reply to: Quick question, how do I change the background color when using the boxed layout #1103509Hey 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,
IsmaelHey 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,
IsmaelHi,
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,
IsmaelMay 21, 2019 at 12:00 pm in reply to: recaptcha v3 keeps authenticating in non ENG languages #1102820Hi,
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,
IsmaelHi,
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-1081352Best regards,
IsmaelHey!
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelMay 21, 2019 at 5:12 am in reply to: Inserting URLs in text tab with a parameter named 'region' #1102673Hi,
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®ion=val2">Test</a> <iframe src="http://localhost/kriesi/enfold/test-2?location=val®ion=val2"></iframe>The text and the iframe displayed properly in the text block preview.
Best regards,
IsmaelHey 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 -
AuthorPosts
