Forum Replies Created
-
AuthorPosts
-
Hey schweg33,
Thank you for the inquiry.
You can add this css code to display the search text beside the icon on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top .avia_hidden_link_text { display: inline; margin-left: 5px; } }
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
I have added a tospur here Link below:
What do you mean by “tospur”? Please provide a screenshot of the element that you’d like to modify.
Best regards,
IsmaelHi,
Glad to know that this has been resolved. Please feel free to open anotehr thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Unfortunately, WordPress crops the images based on the theme’s or plugin’s predefined settings, and there’s no way to set specific cropping parameters for each image individually through WordPress.
To achieve a consistent grid where each logo occupies the same space without being cut off, the only reliable solution is to upload images that have the same size or aspect ratio. This will ensure that all logos are displayed uniformly without cropping issues.
Thank you for your patience.
Best regards,
IsmaelAugust 30, 2024 at 11:32 am in reply to: Problems with Mobile View on Shop and Product Pages (WooWommce) #1465756Hey Martin,
Thank you for the inquiry.
1.) Did you add this css code?
.sidebar_left .content { float: right; border-left-style: solid; border-left-width: 1px; border-right: none; margin-right: -50px; margin-left: -1px; padding-left: 50px; }
If not, try to override left padding with this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .sidebar_left .content { padding-left: 50px; } }
2.) Adding this css code might help:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #main>.container_wrap_first.template-shop.shop_columns_3>.container { display: block !important; } }
Best regards,
IsmaelHey Leeonella,
Thank you for the inquiry.
We may need to inspect the site in order to properly check the issue. Please provide the login details in the private field. In the meantime, you can try this script in the functions.php file:
// script to scroll to the active tab section function ava_custom_script_tab_section_scroll() { ?> <script type="text/javascript"> (function($) { function avTriggerScrollToTab(selector, event) { $(selector).on(event, function() { var isLoadEvent = event === 'load'; var locationHash = isLoadEvent ? window.location.hash : $(this).attr('href'); var hash = isLoadEvent ? locationHash : locationHash.substring(locationHash.indexOf('#')); var tab = $('.av-section-tab-title[href="' + hash + '"]'); var parentContainer = tab.closest('.av-tab-section-outer-container'); if (tab.length && parentContainer.length) { var position = parentContainer.offset().top; tab.trigger('click'); if (hash) { setTimeout(function() { $('html, body').animate({ scrollTop: position - 100 }, 500); }, 300); } } }); } $(document).ready(function() { var tabs = $('.av-tab-section-container'); if (tabs.length === 0) return; avTriggerScrollToTab('.menu-item a', 'click'); avTriggerScrollToTab(window, 'load'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_tab_section_scroll', 9999);
Best regards,
IsmaelAugust 30, 2024 at 11:21 am in reply to: Google Analytics Cookies Loading Before User Consent #1465751Hey thomasg156,
Thank you for the inquiry.
Did you add the tracking code in the Enfold > Google Services > Google Analytics Tracking Code field? We would like to check the issue but we encountered a fatal error when we tried to login in to the site.
Best regards,
IsmaelHey Stefan,
Thank you for the inquiry.
You may need to set the Enfold > Main Menu > Burger Menu > Clone Title Menu Items To Submenu items settings to the second option (Create a clone for the title menu item). Let us know of the result.
Best regards,
IsmaelAugust 29, 2024 at 7:32 am in reply to: why are pages with the author name after the post title being created? #1465642Hey williamslyd,
Thank you for the inquiry.
We haven’t encountered this issue before. Did you install any special plugins for authors or posts, or did you adjust the permalink structure to include the author name?
Best regards,
IsmaelHey williamslyd,
Thank you for the inquiry.
You can turn off the AJAX search by toggling the Append Search Icon To Main Menu option in the Enfold > Main Menu panel. Let us know how it goes.
Best regards,
IsmaelHi,
Thank you for the update.
There must be an issue with how you transferred the site. In the future, please make sure to create a restore point before pushing any updates to the live site. If you have more questions, please feel free to open another thread.
Best regards,
IsmaelHey laptophobo,
Thank you for the inquiry.
Have you tried using the Image element’s Custom Field Image option? You can use the {wp_custom_field:_thumbnail_id} placeholder to automatically fetch the ID of the featured image. Please check the link below:
// https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
Best regards,
IsmaelHey jmjwebsites,
Thank you for the inquiry.
The images on the homepage seem to be loading correctly when we checked the site. Did you fix the issue?
Best regards,
IsmaelAugust 29, 2024 at 6:58 am in reply to: Advanced Layout Editor button not visible on new pages #1465637Hey NutmeggerPR,
Thank you for the inquiry.
What is the current version of the theme? Make sure to update theme to version 6.0.3. If the issue persists, please provide the login details in the private field.
Best regards,
IsmaelHi,
@hitrev: In the live site, you have this code in the custom.css file which adjusts the maximum width of the container:.responsive .container { max-width: 1510px; }
@Louisekoch: This might have nothing to do with the theme, but rather with the plugins you’re using. Make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings, and make sure to purge the cache after every update. If the issue occurs again in the future, please open another thread and post the login details in the private field.Best regards,
IsmaelHi,
Have you tried purging the cache or temporarily disabling the cache plugin? The video played the last time we checked, but the test page we created is now gone. Did you remove it?
Best regards,
IsmaelHi,
Thank you for the update.
You can try this filter in the functions.php file:
function avia_breadcrumbs_trail_mod($trail) { if (is_singular('post')) { unset($trail[1]); unset($trail[2]); $end = $trail['trail_end']; unset($trail['trail_end']); $trail[] = '<a href="' . home_url('/blog') . '" title="Blog" rel="">Blog</a>'; $trail[] = $end; } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);
Best regards,
IsmaelAugust 29, 2024 at 6:22 am in reply to: Custom Taxonomy Archive Pages Issue After Updating to Enfold Theme 6.0 #1465633Hi,
Thank you for the info.
According to @Guenter, in the latest version, we added the taxonomy.php template, which might be the reason why your custom templates are not being used. Please try moving the modifications to the taxonomy.php template.
// https://developer.wordpress.org/themes/basics/template-hierarchy/#custom-taxonomies
Best regards,
IsmaelHey cuccarini,
Thank you for the inquiry.
Unfortunately, your only option in this case is to make sure to upload images that have the same size and aspect ratio. As you observed, if you choose to select a specific thumbnail, some of the images will get cropped and may not display in full. You can also try the Masonry element but it may not work as you expect.
Best regards,
IsmaelHi,
Thank you for the update.
The cache plugin has its own file compression options, so you don’t need to enable the theme’s Performance -> File Compression settings. You could, of course, disable the cache plugin’s compression settings and use the theme’s if you prefer, but they don’t differ much.
Best regards,
IsmaelHi,
how did you disable them?
Please check the following link: https://www.inmotionhosting.com/support/edu/wordpress/disable-wordpress-plugins/
Best regards,
IsmaelHi,
Thank you for the update.
Did you set the builder to debug mode? Once debug mode is activated, edit the page, look for the shortcode fields below the Advanced Layout Builder, paste the shortcode from the demo, and then update the page. You don’t need to change anything in the shortcode. Let us know how it goes.
Best regards,
IsmaelHey CityCollege,
Thank you for the inquiry.
1.) Why do you need the search query string on your pages? This is a special parameter that can only be used on the root page of the site. All other query parameters should work for other pages. Example:
https://kriesi.at/themes/enfold-2017?s=test
For other pages:
https://kriesi.at/themes/enfold-2017/pages/pricing/?test=test
2.) Where do you see this warning? You can temporarily hide it by setting the WP_DEBUG_DISPLAY to false.
Best regards,
IsmaelHey Munford,
Thank you for the inquiry.
You can use a plugin to control the visibility of the menu items based on certain conditions. Please check the link below:
// https://wordpress.org/plugins/if-menu/
Basic set of visibility rules
– User state User is logged in
– User roles Admin Editor Author etc
– Page type Front page Single page Single post
– Is Archive page (year, category, search results, etc)
– Visitor device Is MobileBest regards,
IsmaelHi,
we only got this error randomly, we don’t know how reproduce it.
Please let us know once you encounter the error again. Make sure not to update the page so that we can check the issue.
Best regards,
IsmaelHey CharlieTh,
Thank you for the inquiry.
Have you tried disabling the plugins temporarily? Please create a test page and provide the login details in the private field so that we can check the issue.
Best regards,
IsmaelHi,
Sorry about that. The expiration of the snippet was set to 1 hour. We have provided another link in the private field with a one-week expiration.
Best regards,
IsmaelHi,
Thank you for the update.
On our end, the pagination displays correctly when we implement the modifications. We may need to access the site to check the issue properly. Please clone the site to a staging environment and provide the WP and S/FTP details in the private field.
Best regards,
IsmaelHi,
Thank you for the clarification.
The video must be muted (Style > Video Settings > Mute video player) for it to play automatically. We created a test page and posted the link in the private field. Please make sure to purge the cache before checking. You may also need to accept the privacy cookies first and refresh the page.
Best regards,
IsmaelHey Lara Abbink,
Thank you for the inquiry.
If you don’t have access to the purchase code or the account used to purchase the theme, you may need to create a new Themeforest account and get a new theme license to update the theme to the latest version. Unfortunately, the automatic update will no longer work in version 4.5, so you will have to download the latest version from your Themeforest account and update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
Ismael -
AuthorPosts