Forum Replies Created
-
AuthorPosts
-
Hi,
No problem. Please feel free to open another thread should you need anything else.
Have a nice day.
Best regards,
IsmaelAugust 27, 2021 at 9:31 am in reply to: Where can I change the responsive setting for smartphones, tablets and desktop? #1318605Hi,
Thank you for following up.
Did you toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code? Also, please make sure to remove the browser history or try to check the site on incognito mode to ensure that you are actually viewing an uncached version of the page with the updated stylesheets.
A list of css media queries for specific devices can be found here.
// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
IsmaelHi,
Thank you for the update.
Looks like the expand button is not available when the Block Editor is active. Are you actually using the new block editor? If not, you can switch back to the classic editor by adjusting the Enfold > Theme Options > Select your editor settings.
We will forward the issue to our channel.
Best regards,
IsmaelHi,
No problem. Hope that we could help you better in the future. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
The shop_catalogue thumbnail, which is the default thumbnail used in the product grid, has a maximum width of 300px by default. And as we mentioned above, you could change it by adjusting the Thumbnail width option in the Appearance > Customize > Woocommerce > Product Images panel. Did you try to adjust the width value?
Best regards,
IsmaelHi,
@hypergolica (Tim): Setting the thumbnail size or name to “full” should return the source image with the original dimension or size (unresized/uncropped). You should replace the above line with this.$size = strpos( $blog_style, 'big' ) ? ( ( strpos( $current_post['post_layout'], 'sidebar' ) !== false ) ? 'full' : 'full' ) : 'square';
.. or with this:
$size = strpos( $blog_style, 'big' ) ? 'full' : 'square';
Thanks @Guenni007 for the info.
Best regards,
IsmaelAugust 27, 2021 at 9:04 am in reply to: Pagination not working on avia_product_slider in search.php #1318596Hi,
Glad to know that it is working properly now. We will forward this thread to our channel for further considerations. Please keep the modifications for now.
Thank you for your patience.
Best regards,
IsmaelAugust 27, 2021 at 8:55 am in reply to: Woocommerce single product layout issue (sidebar below product info) #1318595Hi,
There was a minor syntax error in the snippet. Please try it again.
/* zijbalk op productpagina */ function ava534345953_init() { add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25); add_action( 'woocommerce_after_single_product_summary', 'avia_close_image_div_mod', 20); add_action( 'woocommerce_before_single_product_summary', 'avia_open_image_div_mod', 1 ); } function avia_open_image_div_mod() { echo "<div class='product-main-container'>"; } function avia_close_image_div_mod() { echo "</div>"; } function avia_add_sidebar() { if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } } add_action('init','ava534345953_init', 50);
Do not forget to add the css code. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
You may have to ask your hosting provider to adjust the above SFTP account and give it the proper permissions so that we could modify the wp-config.php file in the root directory and enable debugging, or just ask them to enable debugging.
I turned on the WP Debug in my raidboxes account
We are not really sure if enabling that option will enable both WP_DEBUG_DISPLAY or just the error log. Anyway, we have checked the error logs and found the error in the enfold/framework/php/function-set-avia-frontend.php file around line 74. We also noticed that the theme is outdated. You will have to upgrade the theme from version 4.6 to the latest version, 4.8.6.1. The upgrade should help fix the issue.
Thank you for your patience.
Best regards,
IsmaelHi,
Alright. Regarding handling it via child theme, you can deregister the script file, copy it to your child theme and register it back using its new path. Examples in the following link.
// https://kriesi.at/support/topic/is-it-possible-to-whitelist-a-custom-cookie/#post-1310899
// https://kriesi.at/support/topic/google-map-marker-size-increase/#post-1308434
// https://kriesi.at/support/topic/tabs-select-on-hover/#post-1307497You will need these functions.
// https://developer.wordpress.org/reference/functions/wp_deregister_script/
// https://developer.wordpress.org/reference/functions/wp_enqueue_script/If you do not want to override the script file, you might still be able to add the attribute with a custom script.
// https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-footer-section
Best regards,
IsmaelHi,
Thank you for the test page.
You can use this css code to change the background color of the table and the cells within to transparent.
.main_color table, .main_color table tbody, .main_color table tr, .main_color table td { background-color: transparent !important; }
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelAugust 27, 2021 at 8:31 am in reply to: Copyright mit Datenschutz jeweils extra für deutsche und englische Website #1318589Hi,
That is not possible without significant modification in the theme or without additional code, unfortunately. You may need to look for a plugin but I doubt there is one with that functionality. You may have to hire a freelance developer to implement that kind of feature.
Thank you for your understanding.
Best regards,
IsmaelHi,
Thank you for the update.
If you want to override it in your child theme, you will have to deregister the script file first and register it back using its new path in the child theme directory. The handle of the script is “avia-sticky-header”.
// https://developer.wordpress.org/reference/functions/wp_deregister_script/
A few examples can be found in the following threads.
// https://kriesi.at/support/topic/is-it-possible-to-whitelist-a-custom-cookie/#post-1310899
// https://kriesi.at/support/topic/google-map-marker-size-increase/#post-1308434
// https://kriesi.at/support/topic/tabs-select-on-hover/#post-1307497Best regards,
IsmaelHey Michelle,
Thank you for the inquiry.
You can use the expand option to make the builder fullscreen. It is located right beside the Templates button. The builder tab sticks to the top when the builder is expanded.
Best regards,
IsmaelHey flow2b,
Thank you for the inquiry.
That option is not available in the default implementation of the OSM Leaflet element in the theme, unfortunately. It is possible with a plugin but you will have to hire a third party developer to help you with the implementation.
// https://github.com/stefanocudini/leaflet-search#examples
Best regards,
IsmaelAugust 26, 2021 at 12:50 pm in reply to: Aditonal text under products on the product category page #1318450Hey Gilbert,
Thank you for the inquiry.
You can use the woocommerce_after_main_content hook to insert additional content after the product loop, or you can override the wp-content/plugins/woocommerce/templates/archive-product.php file by creating a copy of it in your child theme directory. For more info, please check the following documentation.
// https://docs.woocommerce.com/document/template-structure/
Best regards,
IsmaelAugust 26, 2021 at 7:46 am in reply to: The Events Calendar "Disable the Event Search Bar" Option Disabled by Enfold? #1318395Hey Lance,
Thank you for the inquiry.
You can add this snippet in the functions.php file to disable the function that removes the additional settings.
remove_action( 'tribe_display_settings_tab_fields', 'avia_events_display_tab', 10 );
This function is created to keep the layout of the calendar view intact.
Best regards,
IsmaelHi,
Thank you for the update.
When logging in, there is a security question asking for the name of your first pet. I was tempted to input the name of my first pet, but I am quite sure that it is asking for yours. Please include it in the private field.
Regarding the database issue, it might be due to the Performance > File Compression settings as discussed in the following threads.
// https://kriesi.at/support/topic/wp_options-table-is-too-large-40-gb
// https://kriesi.at/support/topic/dynamic_avia-swedish-help/You might have to disable the Enfold > Performance > File Compression settings and use other compression plugins such as Autoptimize or BWP Minify.
Best regards,
IsmaelHey koraytastan,
Thank you for the inquiry.
We are not really sure what you are trying to do here. Are you trying to extract or capture the data sent from the contact form? If yes, then you might be able to use the avf_form_send filter to do something with the form data (ex. save it to the database) before sending it to the recipient. There are also other filters that you can use to adjust the email subject, message, from address etc.
Best regards,
IsmaelHey walhai,
Thank you for the inquiry.
The theme automatically strips html tags from the masonry excerpt, so you will not be able to add the span tags without modifying the theme. You could try this filter in the functions.php file but we are not sure if this will help return the unmodified excerpt.
add_filter("avf_masonry_entry_content", function($content, $entry, $atts) { return $entry->post_content; }, 10, 3);
Best regards,
IsmaelAugust 26, 2021 at 7:06 am in reply to: The woocommerce variation product images doesn't change. #1318387Hi,
No problem. Please feel free to open another thread if you have questions regarding the theme. We will close this one for now.
Have a nice day.
Best regards,
IsmaelAugust 26, 2021 at 7:05 am in reply to: Where can I change the responsive setting for smartphones, tablets and desktop? #1318386Hi,
Thank you for the info.
is still shown on the tablet.
A lot of tablet devices today have almost the same screen resolution as desktop or laptop screens (e.g iPad Pro). Enabling the tablet option in the Element Visibility settings will only hide the element when the screen width is lower than 989px and higher than 768px. Some tablet devices have wider screens, so the color section still displays.
What is the actual model of the tablet device where you are checking the page?
You can use this css code if you really need to hide the element on tablets with higher screen resolutions.
/* Wider Tablets */ @media only screen and (min-width: 768px) and (max-width: 1366px) { .responsive #top .av-hide-on-tablet{display:none !important;} }
Best regards,
IsmaelHey Gabriele Forster,
Thank you for the inquiry.
Unfortunately, the Propulsion theme is no longer available on Themeforest and we no longer provide updates or support for it. If you want to continue using the theme, you will have to retain the current working state of the site and preserve its configuration.
And if you want to know more why the older themes such as Propulsion have been removed, please check the following article.
// https://kriesi.at/archives/wordpress-5-0-and-enfold-4-5-1
Best regards,
IsmaelAugust 26, 2021 at 6:22 am in reply to: All Enfold sites crash because of wrong CSS MIME type #1318380Hi,
Sorry for the delay. To temporarily fix the issue, please disable the Enfold > Performance > File Compression settings, the cache and minification/compression plugins temporarily, then add this filter in the functions.php file to skip generation of the post css files, and add it as inline styles instead.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Do not forget to purge the cache (if still enabled) and remove the browser history before checking page. Let us know how it goes. The following thread might also help clear things up.
// https://kriesi.at/support/topic/post-css-and-caching-issue/#post-1316048
Thank you for your patience.
Best regards,
IsmaelHi,
Alright! Thank you all for the update. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHey zimbo,
Thank you for the inquiry.
Maximum number of posts in the related section is set to 6 to 8, depending on the style selected, but it can be adjusted by editing the themes/enfold/includes/related-posts.php file directly (line 20 and 32). And if you want to display posts based on category instead of tags, please check the following thread.
// https://kriesi.at/support/topic/related-posts-based-on-category-2/#post-275519
Best regards,
IsmaelHey zimbo,
Thank you for the inquiry.
Have you tried using hooks such as ava_main_header or ava_inside_main_menu? These hooks are inside the includes > helper-main-menu.php file, which is where most of the header elements such as the main menu, logo and social icons are located.
Best regards,
IsmaelHi,
Thank you for the update.
Above line 57, after the if condition that we mentioned above, you have to remove the aria-expanded attribute, because that is when the burger menu is closing.
burger.removeAttr("aria-expanded");
And around line 481, inside the else statement or above this code,..
burger.addClass("is-active");
.., you have to add the attribute again because that is the time the burger opens.
burger.attr("aria-expanded");
Please toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the modifications. Let us know if that helps.
Best regards,
IsmaelHey profumopuntoit,
Thank you for the inquiry.
There is no option for it by default, unfortunately. You might have to modify the enfold/js/avia-snippet-sticky-header.js file directly around line 128. This checks if the scroll position is more than 50px.
if( st > 50 )
You might be able to do what you are after adjusting the condition, so that it checks if the scroll position is more than the window height. Something like this.
if( st > $(window).height() )
Best regards,
IsmaelHi,
Good to know that you have found the option. I am not sure if it is possible to move the settings though, because by default all link settings are under the Advanced panel. We will probably add an extra text under the Heading Text field to inform users about the link settings.
Best regards,
Ismael -
AuthorPosts