Forum Replies Created
-
AuthorPosts
-
April 27, 2021 at 5:35 am in reply to: woocommerce category description displayed in title header #1296884
Hi,
Can we access the site? We would like to check how the product categories are setup and inspect the theme options. Please post the login details in the private field.
Best regards,
IsmaelHi,
Thank you for following up.
Can we access the site? Please post the WordPress and FTP details in the private field, and disable the cache and minification plugins temporarily.
Best regards,
IsmaelHi,
Thank you for the clarification.
Instead of using the borlabs shortcode, try to apply the class names “_brlbs-btn-cookie-preference borlabs-cookie-preference” to the menu item, and leave a hashtag in the URL field. Borlabs script should be able to recognize the menu item with that class attribute and open the cookie preference box when clicked.
This is based on the documentation.
// https://borlabs.io/kb/opt-out-infos-setup/#
Best regards,
IsmaelHey Dave,
Thank you for the inquiry.
You can apply a negative left or right margin to the column element to pull them sideways to make the images overlap each other. There is an option or settings in the column element where you can apply these margins, but you can also use a custom css code to accomplish the same thing.
Best regards,
IsmaelHey havi,
Thank you for the inquiry.
Did you set the Enfold > Performance > Disabling of template builder elements settings to the second option (Load only used elements)? This should filter out unused scripts and stylesheets and prevent them from loading. However, please note that this option will only work if the Performance > File Compression settings are disabled.
Best regards,
IsmaelHi,
The input field is only clickable within the lower portion and it seems like there is something covering the upper area, but we cannot find it in the document, which is odd. It works when the screen width is lower than 989px.
Temporarily, you may want to consider removing the search widget and enable the default search icon instead.
Best regards,
IsmaelHey kellyCraftMedia,
Thank you for the inquiry.
The product gallery looks totally fine on our end, as shown in the screenshot below.
Screenshot: https://imgur.com/UW43gxc
Is that how you see the gallery?
The snippets in the following documentation might help.
// https://docs.woocommerce.com/document/image-sizes-theme-developers/
The filters there should adjust the size of the thumbnails.
Best regards,
IsmaelHi,
No problem! Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for following up.
You do not have to create a destination anchor inside the tab section, the script will handle that. The anchor should be based on the tab section title’s href attribute value, so for Behavioral Health for example, the menu item should have this URL.
http://site.com/what-we-do/#behavioral-health
And you have to remove the custom ID (behavioral) that you applied to the column element inside the Behavioral Health section.
Again, the anchor #behavioral-health is based on the href attribute value of the tab section title.
<a href="#behavioral-health" data-av-tab-section-title="2" class="av-section-tab-title av-tab-with-icon av-tab-no-image av-active-tab-title" role="tab" tabindex="0" aria-controls="av-tab-section-1-2" style="color: rgb(0, 0, 0);"><span class="av-tab-section-icon" aria-hidden="true" data-av_icon="" data-av_iconfont="fontello"></span><span class="av-outer-tab-title"><span class="av-inner-tab-title">Behavioral Health</span></span><span class="av-tab-arrow-container"><span style="background-color: rgb(53, 56, 60);"></span></span></a>
Best regards,
IsmaelHi,
@bigamist: You could create the same layout using multiple color sections with fixed background. With layer slider, you have to use the Pro version with the play-by-scroll option.// https://layerslider.kreaturamedia.com/sliders/play-by-scroll/
@filipro: Good job. Thanks for sharing!
Best regards,
IsmaelApril 26, 2021 at 9:48 am in reply to: woocommerce category description displayed in title header #1296697Hi,
The description should display automatically when the Enfold Child Category Styling is set to Default. Please try to edit one of the product categories and look for the styling just below the Thumbnail option.
Best regards,
IsmaelApril 26, 2021 at 9:45 am in reply to: Elementor anchor one page menu/nav wrong current items highlighting #1296695Hi,
Alright. We will close the thread for now. Please do not hesitate to open another should you need anything else. Thank you for your patience.
Have a nice day.
Best regards,
IsmaelApril 26, 2021 at 9:44 am in reply to: Google Analytics Cookies are set before accepting the cookie consent #1296694Hi,
It should be possible, but for now you have to modify the functions-enfold.php file directly and around line 1109, look for this code.
window['ga-disable-{$UAID}'] = true;
Below, add this.
document.cookie = '_ga=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;'; document.cookie = '_gid=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;'; document.cookie = '_gat_gtag_UA_{$UAID}=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;';
This should unset or remove the previous ga cookies.
Best regards,
IsmaelHi,
Sorry for the confusion. The Styling > Preview Image Size settings is only available on the Blog Posts element. For the masonry element, the theme will automatically assign the masonry thumbnail which has a maximum size of 705x705px.
If you want to adjust the size of the thumbnail, try to install the plugin below and go to the Settings > Media panel where you can adjust the size of the masonry thumbnail. You have to regenerate the images afterwards.
// https://wordpress.org/plugins/simple-image-sizes/
Best regards,
IsmaelApril 26, 2021 at 8:12 am in reply to: Accessibility Issue for Menu with Sub-items of sub-items #1296686Hi,
It looks like you’re not tabbing but then the next menu will pop open.
Yes, it will continue to jump to the next item as long as it is available, going through sub menu items first before jumping back to the next parent item. However, it will not focus or scroll to that item and make it visible in the view port if that is what you are expecting. People who are using accessibility tools such as voice prompts or screen readers are usually the ones who will tab through these items, so it is not really necessary to make them visible in the view port.
Also, if a person has started navigating the menu using tabs and then tries to use the mouse after that,
Yes, it is one of the limitations but I am not sure if there is anyone who uses a tab key when they have a mouse. That is time consuming and unnecessary.
You should also consider restructuring your whole menu, limiting the sub menu to first or second level and consider moving some of the navigation to a sub page instead.
There are also third party plugins such as UberMenu or Max Mega Menu if you want to build a more complex menu, which does not rely on deeply nested drop downs.
Best regards,
IsmaelHi,
You have to set the Header visibility and transparency to the second option (Transparent Header) to make it transparent initially. And to bring back the background color on scroll, the General Styling > Logo Area > Logo Area background color should be set to any hex color. We set it to pure white temporarily and use this css code to change the menu item color to black on scroll.
.html_header_transparency .header-scrolled-full .main_menu li a { color: #000000 !important; }
We also removed the following code from the Quick CSS field because it removes the logo on scroll.
.header-scrolled .logo img { display: none; }
Best regards,
IsmaelHi,
The custom ID is based on the tab title, so for Coffee & Pastries tab, the ID will be coffee–pastries, and for Ice Cream, it will be ice-cream. As we noted above, spaces and special characters such as “&” will be automatically converted to hyphens.
This syntax is invalid.
scrollToTab( ‘.avia-button’, ‘click’ );
You have to replace the curly quotes with straight ones.
scrollToTab('.avia-button', 'click' );
Best regards,
IsmaelHi,
but doesn’t do the trick on larger screens or responsive
You can create more css media queries to adjust the bottom padding value on different screen sizes or devices. Example:
@media only screen and (min-width: 1300px) { .av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 200%; } }
The code above will apply the changes when the screen width is larger than 1300px. You may also need to control the number of characters in the excerpt, the maximum and minimum characters allowed, to make sure that the masonry grid is consistent.
Other solution is to use a different masonry size settings as we suggested above. You could also hide the excerpt and add a read more text instead.
// https://kriesi.at/support/topic/read-more-buttin-in-masonry-blogelement/#post-1282623
Best regards,
IsmaelHi,
No problem. Yes, all changes have been done in the functions.php file and displaying the contact form’s background back should be a matter of adding a few css modifications.
Best regards,
IsmaelHi,
The product category widget is now displaying properly in the single product page. How did you fix it?
Thank you for your patience.
Best regards,
IsmaelApril 23, 2021 at 2:48 pm in reply to: Add/Edit Images in Portfolio Gallery- changes not saving #1296351Hey Sharon_W,
Thank you for the inquiry.
The portfolio items are there but they do not have featured images, so it looks like nothing is displaying. We edited two of the portfolio items and randomly selected images as their featured image. Please purge the cache and check the page again.
Best regards,
IsmaelHey studiocomunico,
Thank you for the inquiry.
Is this happening on every page? We created a test page, added an image element to it, but we are not able to reproduce the same issue that you described above. The save button works properly and the element updates correctly. (see private field)
Please provide a direct link to the page with the issue. We will try to check it again.
Best regards,
IsmaelHi,
Thank you for the update.
Content mismatch: Missing embedded video
Unfortunately, we have no idea what that means. The theme is not compatible with AMP or does not contain any AMP markup, so we are not that familiar with AMP errors. Installing a plugin should help, but there is no guarantee that it will work completely with the theme.
We tried to check the page above but for some reason, it is not loading properly on our end. It might be the firewall or a security feature from one of the plugins.
Best regards,
IsmaelHey mocreate,
Thank you for the inquiry.
You will have to increase the size of the entry_without_sidebar thumbnail, which is the thumbnail or image used on posts without sidebar, and make sure that the new width and height are larger than those of the uploaded images. To do that, install the following plugin, then go to the Settings > Media panel.
// https://wordpress.org/plugins/simple-image-sizes/
Please do not forget to regenerate the thumbnails after adjusting the thumbnail size.
Best regards,
IsmaelApril 23, 2021 at 2:10 pm in reply to: Google Analytics Cookies are set before accepting the cookie consent #1296341Hey Tobias,
Thank you for the inquiry.
The google cookies are still set.
That is correct. The cookie will stay but further tracking from Google Analytics will not occur because once the user chose to block the tracker, the analytics script will no longer load. The remaining cookies in the local storage are not usable or has no effect from that point onward.
Best regards,
IsmaelHi,
To hide the social icons beside the menu, please use this css code.
.avia-menu + .social_bookmarks { opacity: 0; }
We edited the script a bit. Please try this one instead.
// move social icons inside icon or mobile menu function ava_custom_script_mod_social() { ?> <script> (function($) { $(document).ready(function() { var burger_wrap = $('.av-burger-menu-main a'); var social = $('.social_bookmarks'); $(burger_wrap).on('avia_burger_list_created', function() { setTimeout(() => { social.appendTo('#av-burger-menu-ul').addClass("mobile_social_bookmarks"); }, 150); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod_social', 10000);
Best regards,
IsmaelHi,
Thank you for the update.
We found the issue in the enfold/js/avia-snippet-cookieconsent.js file around line 628 and modified it a bit. It should be working properly now.
if( window.doNotTrack || navigator.doNotTrack || navigator.msDoNotTrack || (window.external && 'msTrackingProtectionEnabled' in window.external) )
Please purge the cache before checking the page. We have also disabled the Autoptimize plugin temporarily.
Best regards,
IsmaelApril 23, 2021 at 6:17 am in reply to: Language flag icons in menu are not aligned with text #1296190Hi!
Thank you for the update.
1.) In DE version, the ID of the menu flags in the default menu is 11478. Please replace the css code with this.
#menu-item-11470-en, #menu-item-11470-de, #menu-item-11478-en, #menu-item-11478-de{ top: 8px!important; }
2.) You do not have to set anything in the Settings > Reading panel, which is why we reset it back to default. We reset it again back to the default. Just make sure that the correct home page is set in the Enfold > Frontpage settings.
The DE version is now displaying properly on our end. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
@guenni007: You are right. When I inspected the page I did not notice that I was inspecting the footer container and thought it was a grid row because it looks like it, but it is a default footer.
@whdsolutions: Would you mind providing a screenshot of the grid row? We cannot find it in the home page.
Best regards,
IsmaelApril 23, 2021 at 5:54 am in reply to: Theme updated: Warning: Cannot modify header information #1296181Hi,
According to the stack trace, the remaining issue is from a default PHP network function called inet_pton, which is receiving an unsupported IPv6 address. Unfortunately, we are not that familiar with that function and with the current server configuration. You may need to ask your server administrator for additional info regarding this issue. You should also ask them if they could upgrade PHP from version 7.2 to the latest version.
Thank you for your patience.
Best regards,
Ismael -
AuthorPosts