Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for update.
1.) The slideshow in the catalogue page is now full width. How did you fix the issue?
2.) Which widgets are you referring to? You should be able to edit the sidebar widgets in the Appearance > Widgets panel.
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,
You are welcome! Please do not hesitate to open a new thread should you need anything else.
Have a nice day.
Best regards,
IsmaelJanuary 18, 2021 at 3:45 am in reply to: Blog post image sizes suddenly all different sizes? #1273190Hi,
The Preview Image settings is inside the Blog Posts element in the page. Did you adjust the dimension of the entry_with_sidebar thumbnail? This is the name of the thumbnail used in the single post pages. By default, the size of the thumbnail should be 845x321px.
Thank you for your patience.
Best regards,
IsmaelHi,
Sorry for the delay. We are still not sure why the product elements from the Advance Layout Builder (ALB) are not working. Can we deactivate the plugins temporarily while checking the issue?
Best regards,
IsmaelHi,
Based on your descriptions, it seems to be an issue with the membership plugins. Does it work properly when those plugins are disabled? It is possible that one of the options from the plugin is causing that issue.
We do not encounter a lot of reports regarding this but we will forward the issue to our channel if it continues to be a problem.
Best regards,
IsmaelHi,
The snippet should not affect the media uploader because it only sets the size of the lightbox image link for the masonry items. It Looks like a server issue though. What is the usual size of the images that you are trying to upload? It might be too large, so uploading a smaller one should prevent that error from occuring. Increasing the PHP memory limit should help as well.
Processing of the image failed. The server might be busy or not have enough resources. It may help if you upload a smaller picture. The suggested maximum size is 2500 pixels.
Best regards,
IsmaelJanuary 15, 2021 at 4:14 pm in reply to: Background image in Advanced layer slider doesn’t resize on tablet or phone #1272766Hi,
Thank you for the info.
Could you provide a screenshot the issue? If what you see is the same as the screenshot below, then it is quite normal because the aspect ratio of the parallax image has to be retained relative to the section height. Please check the screenshot below.
Screenshot: https://imgur.com/Wu98LP6
We could set it so that the background image is fully visible within the section, but it will get distorted.
@media only screen and (max-width: 767px) { .av-parallax-inner { background-size: 100% 100% !important; } }
One solution is to show a different section on mobile view by toggling the element’s Advanced > Responsive > Element Visibility options and use a background image that is specifically resize for smaller screens.
Best regards,
IsmaelHi,
Thank you for the clarification. And quite sorry for the delay.
Paypal works when all plugins, except for Woocommerce and jQuery Migrate, are disabled, so there seems to be a plugin conflict somewhere. You could search for the conflict by activating the plugins one at a time. We kept them disabled for now.
You should also update the plugins including Woocommerce to their latest versions.
Best regards,
IsmaelHi,
Are you referring to the space between the header and the content? That is the default top padding of the content container and if you want to remove it, please use this css code.
.content, .sidebar { padding-top: 0; }
Please copy the provided modifications or snippets directly from the forum to avoid converting the symbols to their html entity code.
Best regards,
IsmaelHi,
Unfortunately, this will require custom modifications that we will not be able to provide here, and as stated on our support policy, we do not provide support for third party plugins that is not natively integrated in the theme.
As explained above, the shortcode from the plugin can only be used on elements with text editors, and so the only content that you may be able to hide are those that is within that text editors.
Thank you for understanding.
Best regards,
IsmaelHi,
@kavaliauskas: We found a few script errors in the console which might be causing the issue and it looks like you have added an incorrect anchor or value for the The Cost of Bad Credit menu item.
#How%20Much%20Does%20Bad%20Credit%20Cost
You should not use any symbols for anchors and as much as possible, they should be in lowercase format.
Best regards,
IsmaelHi,
@thinkjarvis: Thank you for your input.
@Freediver2011: We created a copy of the post (see private field), remove some of the elements including the lazy loaded images and videos and the CLS improves from 0.059 to 0. We also removed the cp-module or the subscription form from the page, but we do not know if this actually helps with the improvement. Please check the screenshot of the lab data.Original post: https://imgur.com/83OPI6S
Copied post without the lazy loaded images and videos: https://imgur.com/gZEX38bThe current CLS score (0.059) is actually good but disabling lazy loading of the WP blocks should help improve it even further.
Best regards,
IsmaelHi,
Try to edit the open-popup-link in the slide content, then include the class name “no-scroll” to prevent the smoothscroll script from executing when the link is clicked. Have you considered making the background darker or remove the transparency so that the site content is not visible when lightbox is enabled?
Best regards,
IsmaelHi,
1.) Unfortunately, this is not possible and we do not know of any plugins that enables this functionality. You may need to look for a custom solution from a third party developer or contact our partner, Codeable.
2.) We are not really sure what causes that error but it looks like it is not something that we could control on our end. Have you tried setting the widget’s Link to facebook settings to the third option (Only open facebook page – no data is sent)? You have to provide a banner image as preview if this option is enabled.
Best regards,
IsmaelHi,
Sorry about that. We renamed the wp-content > plugins folder to completely disable the plugins, but we forgot to change it back. Before doing the search and replace, did you set the Settings > General > WordPress Address (URL) & Site Address (URL) from http to https?
You should also configure the .htaccess file so that any http requests redirect to https. Please disable the cache and security plugins, then create a backup of the .htaccess file. After creating the backup, remove everything from the file, then replace it with the following.
RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE] Header always set Content-Security-Policy "upgrade-insecure-requests;" # BEGIN WordPress # The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
You can now do the search and replace afterwards.
Best regards,
IsmaelHi,
Glad to know that the solution that we provided above works.
To delete unused images, you could either do it manually by deleting the image from the Media > Library panel — this will also delete the thumbnails for that particular image — or use the following plugin.
// https://wordpress.org/plugins/media-cleaner/
Again it is very IMPORTANT that you have a site backup or a restore point before using the plugin.
Best regards,
IsmaelHi,
Thank you for the update.
It looks fine on our end. Does your laptop have a retina display? You might have to double the size of the logo so that it still looks sharp on devices with higher PPI or screen resolutions.
Best regards,
IsmaelHi,
1.) You might have to keep it enabled for now because there are a lot of plugins and custom scripts that are not yet fully compatible with the latest version of jQuery. The theme also contains old or deprecated functions that are no longer supported in the latest version, but they will be replaced with the latest ones gradually.
2.) Yes, just ignore it. It is a notice from the plugin that shows existing errors if there are any.
Best regards,
IsmaelJanuary 15, 2021 at 8:26 am in reply to: is it possible to load reCAPTCHA v3 only on needed Pages #1272609Hi,
Great! Glad to know that you have found the solution. Please do not hesitate to open a new thread should you need anything else.
Have a nice day.
Best regards,
IsmaelJanuary 15, 2021 at 8:23 am in reply to: Woocommerce category image disappears after filtering #1272608Hi,
Thank you for the info.
Glad to know that you are able to find a working solution. Are you using the pre_get_posts hook for this? Posting the actual solution in the forum will surely help a lot of users who might be experiencing the same issue on their sites.
Best regards,
IsmaelHi,
Sorry about the delay. We cannot seem to reproduce the issue on our end. The video in the 4th slide plays automatically after sliding in, same as the video in the 2nd slide. We checked the site on Firefox Dev Windows 10. Please check the screenshot below.
Screenshot: https://imgur.com/Mo89Jqa
Best regards,
IsmaelHi,
Thank you for following up.
Did you regenerate the images after adjusting the thumbnail size? You could also upload the images again manually, but regenerating the images is probably much faster and easier. The thumbnail regeneration option is in the same panel as the thumbnail adjustment options. But if you cannot find it in the same panel, try to install this plugin instead.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
Thank you for the update.
1.) It is not possible to move the widgets below the banner without editing the template files, but you could make the page full width by disabling the Sidebar on Single Post Entries in the Enfold > Sidebar Settings panel.
2.) To adjust the height of the header, please go to the Enfold > Header > Header Layout panel, then look for the Header Size settings.
Best regards,
IsmaelJanuary 15, 2021 at 7:45 am in reply to: Global saved elements possible solutions // plugins? #1272599Hi,
Thank you for the update.
The upcoming version of the theme will contain a Custom Elements option which is a more advanced template system for the advance layout builder elements. You might be able to use that feature in the future to create global elements or create a base element that you can reuse across the site.
Best regards,
IsmaelJanuary 15, 2021 at 7:40 am in reply to: Target="_top" for link when redirecting after submit of contact form in iframe #1272597Hi,
Thank you for the inquiry.
The script that is responsible for the contact form redirect is independently executed in the iframe, so the actual or main page does not refreshed after sending the form. We might be able to adjust the script so that it opens in a new tab or force a page refresh, but we have to modify the enfold\config-templatebuilder\avia-shortcodes\contact\contact.js directly around line 219.
This is the redirect script.
if(redirect_to && action != redirect_to) { form.attr('action', redirect_to); location.href = redirect_to; // form.submit(); }
We should be able to instead use the window.open function and add the _blank attribute so that it opens a new tab.
if(redirect_to && action != redirect_to) { form.attr('action', redirect_to); window.open( redirect_to, '_blank' ); // form.submit(); }
You may have to use the absolute URL of the video page in order for this to work correctly.
Best regards,
IsmaelHi,
What exactly is the issue that you have with the plugin? Please explain the issue further and provide links to the pages displaying the problem so that we could check it properly.
Best regards,
IsmaelHi,
Glad to know that the initial issue is fixed. And regarding the other issue, for some reason we cannot properly check the page or open the browser inspector. Did you disallow it using a plugin? If so, please disable the plugin and provide a screenshot of the issue. You can use imgur or dropbox for the screenshot.
Best regards,
IsmaelHi,
Thank you for the update.
Is it OK for us to disable the plugins while checking the site? Another thing that could help is by setting jQuery to the legacy or the old version. Please install the following plugin, then set the jQuery version accordingly.
// https://wordpress.org/plugins/enable-jquery-migrate-helper/
Best regards,
IsmaelJanuary 14, 2021 at 6:43 pm in reply to: Icon grid with images not working anymore because of special characters? #1272509Hi,
@waterwalk: Please try to use the snippet or line that @lenalavendel provided above.
@lenalavendel: Thank you for the info. You should be able to override the default elements by creating another shortcode folder or path in the child theme directory. For more info on how to do that, please check the following documentation.// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
IsmaelJanuary 14, 2021 at 6:40 pm in reply to: Blog post image sizes suddenly all different sizes? #1272507Hi,
We just realized that most of the thumbnails generated by the theme are scaled instead of cropped, so the size of those thumbnails might differ depending on the size of the original images. Fortunately, there is a thumbnail called “Shop Catalog” with the crop parameter enabled, so we selected that thumbnail from the Styling > Appearance > Preview Image Size settings to keep the height of the images the same.
FYI, the login info above is incorrect.
Best regards,
Ismael -
AuthorPosts