Forum Replies Created
-
AuthorPosts
-
November 19, 2019 at 9:52 am in reply to: Latest News widget — how to prevent time stamps from rendering? #1158075
Hi,
Thank you for the update.
Yes, that should do the same thing — disable the news info in the avia news box or widget. It will not render the news-time container because the $time_format is set to false:
if($time_format) { echo "<span class='news-time'>".get_the_time($time_format)."</span>"; }Best regards,
IsmaelNovember 19, 2019 at 6:30 am in reply to: Modal Window Cookie Consent deactivated but sourcecode is online! #1158037Hey Biggy,
Thank you for the inquiry.
Did you install any cache or minification plugins in the site? Please make sure the cache is purged, and that the site actually contains the recent changes in the theme options. It’s possible that the site is still using the old minified HTML containing the cookie consent element.
Best regards,
IsmaelHi,
Should not be an issue, data prot. act does NOT forbid ALL cookies from the beginning, just tracking and those stuff.
Yes, cookies are required to enable the spam protection. If you want to keep the contact form from the theme and have the spam protection enabled on page load by default, you have to follow our previous suggestion above.
// https://kriesi.at/support/topic/how-do-i-prevent-ru-from-contact-form/#post-1155461
This will silently store the essential cookies on page load, enabling the services including the spam protection, without requiring the user to consent to the cookies first. Unfortunately, this is the only option available as of this moment.
Best regards,
IsmaelHi,
Thank you for the update.
Is the block editor enabled? The title component in the new editor probably strips HTML tags by default. Please try to disable the block editor and use the classic editor instead. You can toggle that option from the Enfold > Theme Options > Select Your Editor settings.
Best regards,
IsmaelHi,
Thank you for the update.
Did you enable Varnish cache in your installation? According to the following thread, Varnish cache filters out cookies that are required for user login and registration.
You can try the suggested snippet in the wp-config.php file to fix the issue.
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST'] );Best regards,
IsmaelHi!
@-doffine: I was just notified and informed by @Guenter that the removal of the notification is actually embedded in one of the theme’s config file, but it’s only going to work if you’re using the bundled version of the plugin. It has been available since 4.1.3, which is probably why we missed it. It’s located in the config-layerslider > config.php file, look for the handler_remove_layerslider_update_notification function. You can also use the “avf_show_layerslider_update_notification” filter to control the update notification.
Cheers!
IsmaelHi,
Thank you for the update.
It seems to be working properly when we check. Did you remove the browser cache in your mobile device? Also, you might need to disable the minification option temporarily. Turn it on back again once the changes are applied.
Best regards,
IsmaelHi,
Thank you for the clarification.
Is there a staging or development version of the site where we can see the issue? The live domain is still using an older version of the theme and the custom markup still displays properly in the title container. Please upgrade the theme to the latest version or give us access to the dev version of the site.
Best regards,
IsmaelHi,
Thank you for the update.
The video is now playing automatically on page load, and we are not seeing the “NotAllowedError” in the console anymore. We viewed the site in Firefox on Windows 10. Where are you testing it? Please make sure that cache is removed prior to checking the page.
Best regards,
IsmaelHi,
Thank you for the inquiry.
@webmanu: We can’t seem to reproduce the issue on the site — the reCAPTCHA verification or spam protection in the contact form works fine.
@StudioArteimmagine: Where did you add the contact form? We don’t see any contact forms in the site, even in the contact page. Please create a test page and add a contact form element to it, or give us a direct link to the existing page with the element.Best regards,
IsmaelNovember 19, 2019 at 5:19 am in reply to: set image alt tag and title in image media element #1158016Hi,
@guenni007 / @John Roa: Ah yes, you’re right. The custom fields are going to be applied directly to the thumbnail. As of this moment, I can’t think of a way to add new custom meta info for the images that is specific to an element without changing the gallery interface. We might need to modify the gallery editor so that it looks more like a slider containing editor sub elements where you can edit and configure each slide, define custom captions and title and more. Unfortunately, this will require a lot of modifications.
Best regards,
IsmaelNovember 19, 2019 at 5:12 am in reply to: Blog post columns broken with Custom Post Type UI #1158013Hi,
Thank you for the update.
The second column doesn’t have the necessary class attribute, so it breaks the layout of the row. Please add this css code to re-apply the required column style when the “Equal Height” option is enabled.
#top .av-equal-height-column-flextable .flex_column { float: none; display: table-cell; }You might have to toggle the Performance > File compression settings after adding the code.
Best regards,
IsmaelHey mmsdev,
Thank you for the inquiry.
You have to use the following filter to re-enable the builder for the custom post types. It was just added in the theme very recently and replaces the previous “avia_meta_box” filter.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'YOUR CUSTOM POST NAME'; $supported_post_types[] = 'YOUR CUSTOM POST NAME'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);Please visit the documentation for more info. https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type
Best regards,
IsmaelHi,
Sorry for the delay. Applying a minimum height to the icon grid items seem to help. Please add this code in the Quick CSS field or the child theme’s style.css file.
.avia-edge .avia-icongrid-numrow-3 li { min-height: 353px; }You can also apply a custom css class or ID attribute to the element if you don’t want to use the default selectors.
Best regards,
IsmaelHi,
Thank you for the update.
We tried to access the dashboard using the account above, but it just redirects back to the login page without issuing any errors or warnings. Please check the login details and if possible, disable the plugins temporarily so that we can access the site.
Best regards,
IsmaelNovember 19, 2019 at 4:44 am in reply to: Page builder's min-height seems to be causing problems #1158009Hi,
Thank you for the update.
We found a script related to the layer slider, which is also applicable to the revolution slider, but what the script does is remove the “fixed” height so that the slider adapts to the browser view port. It doesn’t apply the height. The function is called layer_slider_height_helper and it is located in the js > shortcodes.js file around line 44:
//layer slider height helper if($.fn.layer_slider_height_helper) $('.avia-layerslider').layer_slider_height_helper();Please contact the plugin author for additional info.
Best regards,
IsmaelHi,
Thank you for the update.
You can add the following css code to adjust the position of the language switcher — move it beside the burger menu and add a thin border between the items.
#lang_sel_list { position: absolute; right: 50px; top: -10px; border: 0; } #lang_sel_list .wpml-ls-item { border-right: 1px solid; } #lang_sel_list .wpml-ls-item:last-child { border-right: 0; }Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
IsmaelNovember 19, 2019 at 4:23 am in reply to: Plugin Visualizer: Tables and Charts Manager for WordPress in combination with E #1158006Hi,
Sorry for the delay. Have you tried to disable the theme’s Performance > File Compression settings? The screenshot above displays the merged file containing the scripts. Toggling the option will regenerate the scripts and it might help fix the issue. You can also try to edit the js > avia-snippet-cookieconsent.js file, look for this code around line 645:
if( window.doNotTrack || navigator.doNotTrack || navigator.msDoNotTrack || 'msTrackingProtectionEnabled' in window.external ).., then replace it with:
if( window.doNotTrack || navigator.doNotTrack || navigator.msDoNotTrack )Let us know how it went.
Best regards,
IsmaelHi,
Sorry for the delay. You can add the following filter in the functions.php file to make the items with the product post type searchable.
function avf_enable_cpt_search( $query ) { if ( $query->is_search ) { $query->set( 'post_type', array( 'post', 'attachment', 'product', 'portfolio', 'page' ) ); $query->set( 'post_status', array( 'publish', 'inherit' ) ); } return $query; } add_filter( 'pre_get_posts', 'avf_enable_cpt_search' );Please make sure that the previous search plugins that you installed are deactivated before testing the changes.
Best regards,
IsmaelNovember 19, 2019 at 4:00 am in reply to: Woocommerce Product image in Avia Builder using wooswatches #1157997Hey stefan30,
Thank you for the inquiry.
Is there a way to load the image container Featured Image or Gallery via the Avia Builder?
This might be possible using a custom shortcode and by calling the get_the_post_thumbnail function within it. The function retrieves the post’s featured image or post thumbnail.
// https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/
And here’s the documentation for a custom shortcode.
// https://codex.wordpress.org/Shortcode_API
After creating the shortcode, you can use it within a text or code block in the advance layout builder. Unfortunately, we can’t help you with the modification because it’s beyond the scope of support.
Best regards,
IsmaelHi,
Sorry for the delay. The dashboard is not loading properly on our end — all we see is text without styling. Can you give us access to the file server so that we see what’s going on?
Screenshot: https://imgur.com/a/uNIE3E9
Best regards,
IsmaelHi,
Thank you for the update.
The column elements don’t have that option by default, but you can apply a custom css attribute and add the following css code to hide it on tablet view.
@media only screen and (max-width: 1024px) { .hide-on-tablet { display: none !important; } }The columns don’t stack up above each other on tablet view, so having that option might break the layout of the rows.
Best regards,
Ismael1November 19, 2019 at 3:17 am in reply to: How do I show blog excerpts only in the "Blog Posts" avia element? #1157993Hey BelIblis,
Thank you for the inquiry.
We set the Enfold > Blog Layout > Blog Layout settings to “Use the advance layout builder…” and configure the Blog Posts element in the “Aktuelles” page. The excerpt of the posts now display instead of the full content.
Best regards,
IsmaelHi,
Thank you for the update.
The code is still in the chimera > style.css file. It doesn’t look like you installed any minification plugins or enabled the file compression option from the theme, so it’s probably cached or it’s still in the file. Please post the login details in the private field so that we can inspect the dashboard.
Best regards,
IsmaelHi,
Thank you for the update.
The options were just added recently, so they are not available on older versions of the theme. You have to upgrade the theme to the latest version in order to get access to the new privacy options.
Best regards,
IsmaelNovember 18, 2019 at 1:06 pm in reply to: Easy Slider Autorotation – Reverse lateral transition #1157862Hi Bruno!
Thank you for the inquiry.
Did you do the changes directly in the parent theme folder? The Performance > File Compression settings are currently enabled, so it’s possible that the changes are still not included in the merged file. Please try to disable the file compression option temporarily, then check the page again. Make sure to remove the browser cache prior to checking the page.
Cheers!
IsmaelHi,
Thank you for opening a new thread. Please continue there. We’ll close this thread for now.
// https://kriesi.at/support/topic/easy-slider-autorotation-reverse-lateral-transition/
Best regards,
IsmaelNovember 18, 2019 at 1:00 pm in reply to: Can't get privacy / cookie consent acceptance to work #1157855Hi,
Thank you for the update.
Did you try to disable the plugins temporarily? The privacy modal popup window doesn’t display because the lightbox script in your installation is not working properly. We didn’t find any errors in the site, so the issue is probably cause by a plugin or a custom script.
Best regards,
IsmaelHey!
Sure thing. He might not respond immediately, so you might wait for a while. Again, if all you want to do is remove the title, you can always edit the includes > loop-index.php template as previously suggested. Look for this code around line 154:
$featured_img_desc = ( $desc != "" ) ? $desc : the_title_attribute( 'echo=0' );Replace it with:
$featured_img_desc = ( $desc != "" ) ? $desc : '';This modification will keep the $featured_img_desc variable empty when the description field is empty.
Regards,
IsmaelHi,
Thank you for the update.
So, do you know any plugin that analyzes the size resolutions
We don’t know of any plugin that does that, unfortunately. You have to analyze the site yourself and take note of the thumbnails that are frequently used and those that are not. You can then decide whether to keep, or remove them using the suggested plugin. You can also use a filter to unset the predefined thumbnails that you’re not planning to use — same filter that we suggested in the following thread.
This is the plugin.
// https://wordpress.org/plugins/simple-image-sizes/
The plugin does its job perfectly, but make sure to create a site restore point just in case. And you shouldn’t worry about removing a specific thumbnail because WordPress automatically falls back to the original image when the specified thumbnail does not exists.
Best regards,
Ismael -
AuthorPosts
