Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the info.
For some reason, we are getting a 403 forbidden error when we try to access the dashboard or the login page. Did you change the login URL? Please make sure that the dashboard is accessible from the following countries (see private field), or just disable the security plugin temporarily.
Best regards,
IsmaelHi,
Yes, that should be enough, and as @Guenni007 pointed out above the Amazon menu is not really that intuitive and the site would be better off with a simple menu.
Thank you for your patience.
Best regards,
IsmaelFebruary 18, 2022 at 5:54 am in reply to: Can't get rid of alert saying "Failed to initialize plugin: avia_builder_button" #1341272Hi,
No problem. Let us know in a different thread if you have more questions. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
Did you purge the Litespeed cache and disabled the Enfold > Performance > File Compression settings after upgrading the theme? Doing this will ensure that latest scripts and stylesheets are loaded. If the issue persists, please enable the error logs and set the installation to debug mode so that we can check for errors.
// https://wordpress.org/support/article/debugging-in-wordpress/#example-wp-config-php-for-debugging
Best regards,
IsmaelHi,
Thank you for the update.
The Advance Layout Builder (ALB) is actually active when we edited the page but for some reason, it is still using the default template instead of the template-builder.php file. We had to access the ALB and update the page manually. We are not really sure why the ALB status was not active in that particular page. Is this happening on a lot of pages?
Best regards,
IsmaelFebruary 18, 2022 at 5:44 am in reply to: Correct way to use video element in avia builder using WebM and MP4 file #1341268Hi,
Thank you for the update.
So this implies that the expected fallback should be somehow implemented right ?
Yes, you are correct. But it looks like the option is not yet available and upon reviewing the code, the video doesn’t actually look for fallbacks or I just missed something. We will forward this issue to our channel.
For the meantime, please try to edit the enfold/framework/php/function-set-avia-frontend.php file and look for this code around line 898.
$html5_files = $video;
We will add a filter by replacing the code with:
$html5_files = apply_filters( "avia_html5_video_files", $video );
You can then use this code in the functions.php file to manually define fallbacks for a specific video.
add_filter("avia_html5_video_files", function($videos) { if ( ! strpos($videos["web"], "world-video.web") === false) { $videos["mp4"] = "https://site.com/wp-content/uploads/world-video.mp4"; $videos["ogv"] = "https://site.com/wp-content/uploads/world-video.ogv"; } return $videos; }, 10, 1);
This checks if the name of the video is “world-video.webm”, then assign fallbacks for mp4 or ogv.
Best regards,
IsmaelFebruary 18, 2022 at 5:25 am in reply to: Fullwidth Easy Slider problem after update 4.8.9.1 #1341266Hi,
Thank you for the update.
I only use the slider that comes in enfold. “Fullwidth Easy Slider”.
You have to override the config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php file using this code https://pastebin.com/qgNqLvkR.
We tried to access the dashboard but we got locked out (423 error). Did you change the login URL? Please try to disable the security plugin or option temporarily so that we can check the site properly.
Best regards,
IsmaelHi,
Thank you for the info.
Did you set jQuery to load in your footer? The script is not working because according to the browser console “jQuery is not defined”, which means that either jQuery is actually not loaded or the script loads before the jQuery library. To fix the issue, we adjusted the priority of the wp_footer hook to 999 to make sure that the script loads after the library.
Best regards,
IsmaelHi,
No problem! Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Great! Good to know that you have found the issue. Let us know if you have more questions.
Best regards,
IsmaelHi,
Thank you for following up.
The code is actually working, the robots meta tag is added to the page but the default meta tag is still there. Did you install an SEO plugin? Please try to set the Enfold > SEO Support > Meta tag “robots” to the second option and let your plugin set the appropriate tags.
Best regards,
IsmaelHi,
Thank you for the info.
The following script should create the quantity buttons once the shop table has been loaded. Please add it in the functions.php and make sure to remove the cache before checking the page.
function ava_custom_js_script() { ?> <script> (function($) { // apply quantity button to otfw shop table // https://kriesi.at/support/topic/woocomerce-wholesale-tabel-problem/ $(document).on("otfwtable_shown", function() { setTimeout( function() { avia_apply_quant_btn(); }, 150); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_js_script', 999);
Best regards,
IsmaelFebruary 18, 2022 at 4:47 am in reply to: Cookies toggles on custom content and categorization #1341256Hi,
Is there a shortcode that list all cookies found by your scanner with their toggles (not one by one listed by me)?
There is nothing like that in the theme, unfortunately. You will have to manually add the privacy shortcodes one at a time. Again, the list of privacy shortcodes can be found in the Enfold > Performance > Privacy & Cookies > Privacy Shortcodes tab.
Best regards,
IsmaelHi,
Have you tried using this filter to disable lazy loading for a specific image?
function avf_skip_loading_lazy_image_42_large( $value, $image, $context ) { if ( 'the_content' === $context ) { $image_url = wp_get_attachment_image_url( 42, 'large' ); if ( false !== strpos( $image, ' src="' . $image_url . '"' ) { return false; } } return $value; } add_filter( 'wp_img_tag_add_loading_attr', 'avf_skip_loading_lazy_image_42_large', 10, 3 );
This will disable the lazy loading attribute for the image with the ID 42.
Best regards,
IsmaelHi,
it kicks the sidebar down below the product loop. Am I missing something obvious to avoid this? Here is the code I adapted from your’s.
Sorry for the delay. We are not seeing this issue on our end. The sidebar is perfectly positioned beside the content even though the fixed submenu is there. Would you mind providing a screenshot?
Best regards,
IsmaelHey Leo,
Thank you for the inquiry.
Looks like you are using the Advance Layout Builder (ALB) for the products, which is why they are not displaying in their default style or layout. Which part of the product page are you trying to adjust?
You can open a new thread or ticket in this inquiry form.
// https://kriesi.at/support/forum/enfold/#new-post
Best regards,
IsmaelFebruary 18, 2022 at 4:21 am in reply to: Text Displayed in Browser Window, when sharing page on Social Media, etc. #1341252Hey markus-fischer,
Thank you for the inquiry.
You may need to adjust the Homepage and Social settings in the Yoast > Search Appearance > General tab. Please note that the changes here will not take effect immediately. You may have to wait for a while for the changes to propagate. Make sure to remove the cache before checking it again.
Best regards,
IsmaelHi,
We tested the parallax effect of the layer slider on mobile view but it seems to be disabled, which is probably due to performance reasons. Parallax effects could degrade the rendering performance of the page a bit specially on devices with limited resources because it has to transform the element dynamically based on the cursor or scroll position. This is probably why the effect is disabled on mobile devices.
Best regards,
IsmaelFebruary 18, 2022 at 4:03 am in reply to: Favicon vs. Logo being displayed when sharing website on WhatsApp, FB, etc. #1341250Hi,
It might be cached or it is still updating. Please try it again after a while, or test the entry in this link.
// https://developers.facebook.com/tools/debug/
Best regards,
IsmaelHey!
UPDATE: You can also adjust the css > layout.css file using the code below.
// https://pastebin.com/93FsnV6f
Best regards,
IsmaelFebruary 17, 2022 at 1:19 pm in reply to: Search page possibly creating outgoing internal links contain nofollow attribute #1341141Hi,
We have checked the links in the screenshot above and the robots meta tag are properly set to “index,follow”, which makes the semrush “nofollow” warnings seem inaccurate. Did you try to run the semrush test again?
We have also found this old thread, which might be related to this issue.
// https://kriesi.at/support/topic/improved-added-relnofollow-excuse-me-what-this-is-the-biggest-nonsense/#post-1052624
// https://kriesi.at/support/topic/how-to-remove-s-from-search-url/In the later versions of the theme, we have added the rel=”nofollow” attribute to the search icon to prevent duplicate URLs, but based on your screenshot above, the rel attribute is not included in the search icon html. Did you modify the avia_append_search_nav function?
Best regards,
IsmaelHi,
Thank you for the info.
Did you set the (Email address hidden if logged out) as the from address? This should automatically whitelist any messages coming from the contact form. If you are not seeing the messages in your inbox, please try to check the junk or spam folder. If this is still not working, please post the login details in the private field so that we can check the issue further.
Best regards,
IsmaelHey jaimemerz,
Thank you for the inquiry.
This is possible but you have to directly edit the enfold/config-templatebuilder/avia-shortcodes/contact/contact.js around line 234, look for this code..
form.attr('action', redirect_to); location.href = redirect_to;
.. and replace it with:
form.attr('action', redirect_to); window.open( redirect_to, '_blank );
This should open the redirect link in a new tab. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.
Best regards,
IsmaelHey jnightingale,
Thank you for the inquiry.
The site is actually using a very old version of the theme, 4.6.1, which is probably why the auto-update is not working. The latest version is now 4.8.9.1, which is available from your Themeforest account. You may need to manually update the theme via FTP this once. Please check this documentation for more info on how to manually update the theme.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
I checked on Google how it is being displayed
It might be an old Google search entry, which will be updated eventually once the site has been re-crawled or re-indexed by Google. Just make sure to update regularly and add new content to it. This is what we see when we google or search for the site.
screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwDDN4kFqGGvfPEcT?e=9SZZ5F
The link in the search result also redirects to https properly.
Best regards,
IsmaelFebruary 17, 2022 at 12:37 pm in reply to: Avia Layout builder – post title is displayed above the gallery images #1341121Hi,
Thank you for the info.
We updated the enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file as instructed in the previous thread. The title of the page should not display above the gallery anymore.
Best regards,
IsmaelFebruary 17, 2022 at 12:31 pm in reply to: Remove Content from Kriesi Support that mentions my page URL or name #1341109Hey markus-fischer,
Thank you for the inquiry.
We are not seeing any support links in the search results above. You can just ignore this for now because Google will eventually update the search entries as long as the site is regularly updated. If you want, you can a submit a sitemap to Google to provide more information about the site.
// https://developers.google.com/search/docs/advanced/sitemaps/build-sitemap
Best regards,
IsmaelFebruary 17, 2022 at 12:26 pm in reply to: White space between footer socket and main content #1341107Hey aboderc,
Thank you for the inquiry.
The password for the username above is invalid, so we were not able to check the post. Please check the info carefully or create a different login account. A screenshot of the layout issue will also help.
Best regards,
IsmaelFebruary 17, 2022 at 12:20 pm in reply to: email spam coming through even though using enfold numeric captcha #1341105Hey mebi,
Thank you for the inquiry.
The default contact form element have only two options for security, the default number captcha and the Google reCAPTCHA option. If you want to avoid using Google’s captcha widget, you may have to improve the site’s security in other ways such as installing a security plugin like Sucuri or Wordfence to monitor the site and block harmful traffic. You can also use a different contact form such as Contact Form 7 and install a honeypot plugin to add another layer of security to the contact form.
// https://wordpress.org/plugins/contact-form-7-honeypot/
Best regards,
IsmaelHey tonyiatridis,
Thank you for the inquiry.
This issue will be fixed on WordPress 5.9.1. For the meantime, you have to add this code in the functions.php file to enable the gallery sorting back.
function ava_custom_css_admin_mod() { echo '<style> .wp-core-ui .attachments:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } </style>'; } add_action('admin_head', 'ava_custom_css_admin_mod');
Best regards,
Ismael -
AuthorPosts