Forum Replies Created
-
AuthorPosts
-
Hi,
You should also add this css code to shorten the next and previous text.
#top .avia-datepicker-div.ui-datepicker .ui-datepicker-prev span, #top .avia-datepicker-div.ui-datepicker .ui-datepicker-next span { color: transparent; } a.ui-datepicker-prev.ui-corner-all:before { content: 'zurück'; display: block; } a.ui-datepicker-next.ui-corner-all:before { content: 'vor'; display: block; }And add this code in the functions.php file.
add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder'); function new_date_placeholder() { $placeholder = "TT / MM / JJ"; return $placeholder; }Please check the following thread for more info.
Best regards,
IsmaelHi,
Thank you for the update.
We get this error after accepting the cookies.
ReferenceError: _gat is not defined 208xe.js line 3 > eval:2:19 <anonymous> https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js line 3 > eval:2 globalEval https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js:3 globalEval https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js:3 Ga https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js:4 append https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js:4 <anonymous> https://craniosacral-therapie.de/:583 dispatch https://craniosacral-therapie.de/wp-content/cache/wpfc-minified/1ep8xagz/208xe.js:4It seems to be an issue with the WP Fastest Cache plugin. Please try to disable the plugin temporarily and turn off the Performance > File Compression settings.
Best regards,
IsmaelHi,
Sorry for late response. Yes, we made the changes in the Header > Extra Elements > Phone Number field.
Thank you for choosing Enfold and for the kind words. Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
You can use this snippet in the functions.php file to move the product tabs below the gallery.
function av_woo_tabs_below() { remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 ); add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 20 ); } add_action( 'init', 'av_woo_tabs_below');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,
Have you tried looking for “Share on” string or text in the language file? The social app name will just be appended to it.
Best regards,
IsmaelHi,
Thank you for the update.
To fix the issue temporarily, we edited the config-bbpress\config.php > avia_bbpress_before_page_in_footer_compile function to always return true when bbp-view class attribute is included in the body_class array.
if( $forum_page || in_array( $current->post_type, $bbp_post_types ) || in_array( 'bbp-view', $body_class ) ) { bbp_restore_all_filters( 'the_content' ); }We’ll let you know once we found a better conditional function.
Best regards,
IsmaelHi,
We haven’t really figured out what’s causing the issue, but you can override the default-template.php file to fix it temporarily.
// https://kriesi.at/support/topic/issues-with-events-calendar-and-events-calendar-pro/#post-1188354
If you need further help, please create a new ticket and post the details in the private field. We’ll close this one for now.
Best regards,
IsmaelHi,
You should be able to check if the $excerpt contains anything or if it’s empty. Try to replace the code above with this one:
$readmore = $excerpt ? '<a href="'.get_permalink($the_id).'" class="more-link">'.__('read more','avia_framework').'</a>' : ''; $output .= " <div class='grid-entry-excerpt entry-content' $markup>".$readmore." ".$excerpt."</div> ";If it doesn’t work, please open a new thread and post the necessary details in the private field. We’ll close this one for now.
Best regards,
IsmaelHi,
Yes, the default cookie behavior is the only setting that can prevent the GA tracker from loading automatically on page load. You should set it to the first option or second option.
Thank you for your patience.
Best regards,
IsmaelMarch 23, 2020 at 12:12 pm in reply to: Burger/Mobile submenu links / How can I add a further colour for the… #1195436Hi,
We adjusted the code a bit. Please try it again. We tried to adjust it manually but we get an error whenever we try to update the functions.php file.
@guenni007: He’s trying to target the active child menu item of the active parent item.
Best regards,
IsmaelHi,
It’s probably not working because it’s still trying to access the hidden sections with the same id on mobile view. What happens if you change the id of the sections and create a new set of menu items for mobile view?
Best regards,
IsmaelMarch 23, 2020 at 11:44 am in reply to: Image Animations & Tab Sections Not Working Properly #1195423Hi,
Thank you for the update.
It is displaying properly on our end. Can you provide a screenshot of the test page on Chrome? You can use imgur or dropbox.
Best regards,
IsmaelMarch 23, 2020 at 10:35 am in reply to: Portfolio Items Showing in Blog Posts Content Element on Blog Page #1195407Hi,
We created a test page and add a Blog Posts element, but we didn’t see any portfolio items in the page.
The footer page contains a Portfolio Grid element, so every page will display the portfolio items. It is set in the Enfold > Footer panel.
Please check the private field.
Best regards,
IsmaelMarch 23, 2020 at 8:48 am in reply to: Cookie settings: deactivate plugins and scripts until consents are given #1195387Hi,
What is the name of the cookie? The theme doesn’t really generate cookies for twitter, so it’s probably from a plugin. You should contact the plugin author for more info.
Best regards,
IsmaelHi,
Thank you for the clarification.
Edit the includes > loop-author.php file and look for this code around line 134:
//echo the post title echo $title;Above, add this code to render the featured image on top of the post title.
$link = ! empty( $url ) ? $url : get_permalink(); $featured_image = apply_filters( 'avf_post_featured_image_link', get_the_post_thumbnail( $the_id, 'entry_with_sidebar' ) ); $featured_img_title = trim( the_title_attribute( 'echo=0' ) ); $blog_style = ! empty( $avia_config['blog_style'] ) ? $avia_config['blog_style'] : avia_get_option( 'blog_style', 'multi-big' ); if( $featured_image ) { $featured_image = '<a href="' . $link . '" ' . $featured_img_title . '>' . $featured_image . '</a>'; } if( $featured_image ) { echo ' <div class="big-preview ' . $blog_style . '">' . $featured_image . '</div> '; }Best regards,
IsmaelHi,
No problem. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
@enricobaumgart: Do you get the same error when the Performance > File Compression settings are disabled?
@fulanoinc: Please continue here: https://kriesi.at/support/topic/enfold-chrashing-site-by-generating-huge-php-logfileBest regards,
IsmaelMarch 23, 2020 at 8:23 am in reply to: Fatal error caused in enfold/config-woocommerce/woo-loader.php #1195381Hi,
Thank you for the update.
Please try to update the theme again to the latest version, then add this snippet in the functions.php file to disable the plugin configuration.
current_theme_supports( 'avia_exclude_WooCommerce' )Best regards,
IsmaelHi,
Sorry for the delay. This might not be possible with the current implementation of the tab section because the tab titles are rendered before the tab content container, so pressing the tab key will not go directly to the tab content and instead go over each tab title first. You should consider removing the tab section and replace it with another element instead if your main concern is accessibility.
Best regards,
IsmaelHi,
Thank you for the update.
1.) That is the default output of the WordPress media uploader, so we can’t alter it without changing the core functions. If you want to retrieve the image id from its URL, try the custom function provided in the following page.
// https://pippinsplugins.com/retrieve-attachment-id-from-image-url/
You can also try this one:
// https://developer.wordpress.org/reference/functions/attachment_url_to_postid/
2.) You can add the target_id parameter to change the default linkpicker_toggle id.
'target_id' => 'new_target'You can then fetch the $new_target to get the link once the attributes are extracted.
3.) Can you give us a link to the page with the custom element or a screenshot of the issue?
Best regards,
IsmaelHi,
We forgot to mention that the width of the items or columns in the grid is relative to the width of the browser view port or the screen resolution of the device, so the size of the images doesn’t really matter. The items or columns will resize automatically based on the current screen width and the images inside will just inherit the width of their parent container, so it’s not possible to keep the items’ aspect ratio to 1:1 or to keep them square in all screen sizes. It’s still possible, but we have to replace the Portfolio Grid with the Masonry or the Masonry Gallery element and set the Styling > Masonry Settings > Size Settings to Perfect Grid.
Best regards,
IsmaelHi,
Thank you for the update.
We just noticed that the site is using an older version of the theme, v4.5.7. Please try to upgrade it to the latest version, v4.7.3. The upgrade might help fix the issue with the product buttons.
If you can’t see the automatic update in the theme options, try to update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelMarch 23, 2020 at 4:41 am in reply to: WooCommerce product variation picture doesn't load on the product page #1195340Hey philipbrook,
Glad to know that you’re enjoying the theme!
The product gallery automatically changes when we select a variation. Have you tried adjusting the Shop Options > Product gallery settings?
Best regards,
IsmaelHi,
Sorry for the delay. The generated thumbnail is probably larger because the theme automatically sets the default image compression setting to the highest quality possible. If you want to override it, try to add this snippet in the functions.php file.
function av_return_100(){ return 65; } add_filter('jpeg_quality', 'av_return_100'); add_filter('wp_editor_set_quality', 'av_return_100');You can adjust the return value 65 to something else. Default value is 100.
Best regards,
IsmaelHi,
Sorry for the delay. The home page is not translated to Spanish yet when we checked it. Please translate the page to Spanish first and let us know if you’re still having difficulty adjusting the content.
// https://imgur.com/a/CTaT1Yt
Best regards,
IsmaelHi,
Thank you for the update.
Did you enable database caching in your server? This issue is related to the theme’s Performance > File Compression settings, so to temporarily fix the issue, you should consider disabling the option and instead install a third party plugin such as Autoptimize or BWP Minify.
If you want to keep the theme’s file compression settings, you can try this snippet in the functions.php file to remove the appended timestamp in the names of the merged files.
function my_custom_merged_files_unique_id( $uniqid, $file_type, $data, $enqueued, $file_group_name, $conditions ) { return 'my_stamp'; } add_filter( 'avf_merged_files_unique_id', 'my_custom_merged_files_unique_id', 10, 6 );Best regards,
IsmaelMarch 23, 2020 at 4:07 am in reply to: Enfold chrashing site by generating huge php logfile #1195335Hey!
If database caching is enabled in your server, then using a compression plugin is the better option. You should only add the snippet in the functions.php file if you want to keep theme’s compression settings enabled.
Regards,
IsmaelMarch 23, 2020 at 3:54 am in reply to: Look and feel of thumbnails in all product category pages #1195334Hi,
Sorry for the delay. The maximum image width is set to 250px. You should try to increase the value of the Thumbnail width option a bit more in the Customizer > WooCommerce > Product images panel as @Victoria suggested above. You don’t need to regenerate the thumbnails.
Best regards,
IsmaelHi,
Can you give us a link to the page containing the image with the zoom effect? Have you tried disabling the Performance > File Compression settings? The zoom effect should not actually enlarge the image because the image itself is contained inside a container which prohibits any elements to overflow or be visible outside its area.
Best regards,
IsmaelHi,
Sorry for the late response. Can you ask your hosting provider to generate an SFTP account so that we can access the file server? You can usually do it yourself in the cPanel or the server’s dashboard, but if you need assistance, the people in your hosting provider should be able to help. Once the account is generated, post the details here and we’ll try to add the social icons in the product pages.
Best regards,
Ismael -
AuthorPosts
