Forum Replies Created
-
AuthorPosts
-
April 2, 2019 at 12:56 am in reply to: Highlighting active parent menu item on subitem opening #1085762
Hi,
PARENT = also ALL. In other words, ALL and PARENT are identical.
That is not the case for every installation. Some installations are not using sub or child categories from a single parent category, some are using multiple parent categories.
if you have 2 different portfolio cats, each with subcats, and both have a subcat with the exact same name, say “sour fruits”,
Yes, both categories will display regardless of their name. The sort script relies on the category slugs, not the actual category names, so the sorting will still work.
Best regards,
IsmaelHey Antonio,
Thank you for using Enfold.
Are you referring to the event blocks? Those elements or blocks are not going to be usable on the advance layout builder. They are created and intended for the block editor. Unfortunately, the theme has no native configuration for the plugin and there are no event elements available in the builder, so you need to switch to the block editor if you need to manually control the layout of the page.
Best regards,
IsmaelHi,
Alright. We’ll keep the thread open in case anything comes up.
Have a nice day.
Best regards,
IsmaelApril 2, 2019 at 12:24 am in reply to: cross icon on mobile menu (to go back) – need to change the colour to white plea #1085757Hi,
Thanks for the update.
Try to set the initial opacity to 0 and then set it back to 1 on hover.
.av-hamburger:hover strong { opacity: 1 }
If you want a little animation, use this css code.
// https://www.w3schools.com/css/css3_animations.asp
Best regards,
IsmaelHi!
Sorry about that. The forum automatically converts the “woocommerce” string to links. We also corrected the function name. Please try it again.
Best regards,
IsmaelHi,
Thanks for the update.
The remaining white space or gap is created by this css code.
.page-id-399 .avia-builder-el-6 { height: 400px !important; min-height: 400px !important; }
You have to adjust height value.
Best regards,
IsmaelHi,
You have to remove that code, not add it. And don’t forget to toggle the Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Thanks for the update.
Is “home” the actual slug or name of your home/front page? Try is_home instead of is_page or use the actual name or id of your home page.
Best regards,
IsmaelApril 2, 2019 at 12:11 am in reply to: WooCommerce 'Return to Cart' button to link to new page #1085749Hi,
Awesome. Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi!
UPDATE: The solution in the following thread might help.
// https://kriesi.at/support/topic/possible-css-rendering-bug-in-4-5-5/#post-1083761
Regards,
IsmaelHi,
Thanks for the update.
We’ll forward the issue to our developers. Please use the css code temporarily until the issue is fixed.
Best regards,
IsmaelHi,
Can you give us a direct link to the tool so that we can run the test? We can’t find it on the home page of the site.
Best regards,
IsmaelHi,
I see. Please remove the top padding and then use this css code instead.
.avia-menu-text { top: 40%; position: relative; }
The menu items’ position will be calculated based on the header height preventing them from going outside the header container.
Best regards,
IsmaelHi,
Try to do a manual update of the theme for now.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHi,
Thank you for understanding. We hope that we would be able help you properly next time.
Best regards,
IsmaelApril 1, 2019 at 11:30 pm in reply to: Customizing Woocommerce single product product template? #1085737Hi,
Thanks for the update.
Is that from a plugin? Looks like the plugin is using the same hook to render those add ons. Please ask the plugin authors for the exact hook and callback name so that we can remove them if necessary.
Best regards,
IsmaelHi,
You can’t use that particular css code because the html or structure of the theme’s mailchimp signup element is different from the embedded ones. You have to use the embed version of the form because that is where the css code is intended for. Would you mind providing a screenshot of the layout that you want to have? You can upload the screenshot to imgur or dropbox.
Best regards,
IsmaelApril 1, 2019 at 11:23 pm in reply to: 404 Error when updating pages after editing or adding links #1085735Hi,
Sorry about that. We didn’t notice the listed pages. Anyway, we edited those pages and they seem to update properly without errors or redirects. How can we reproduce the issue? (see private field)
Best regards,
IsmaelHi,
Are you following the tool’s recommendations? Most of the recommendations are not directly related to the videos. Let’s try to tackle them one at a time.
1-2.) Eliminate render-blocking resources & Defer unused CSS- Enable the theme’s Performance > File Compression settings to merge the scripts and stylesheets, allowing the site to render faster by combining the files into a single request.
3.) Reduce server response times (TTFB) – Is the site running on a shared server or hosting plan? You may need to consider upgrading that plan or move to a faster server.
4.) Minify CSS & Minify – The file compression should take care of this.
5.) Avoid an excessive DOM size – This occurs when there’s a lot of content in the page than is necessary. You should consider removing some of the content in the home page and distributing them to other areas or pages in the site.
There are other recommendations from the tool that you can take advantage of to improve the site speed. Unfortunately, this is beyond the scope of support. We recommend that you read the whole article or research more about site optimization.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
Best regards,
IsmaelApril 1, 2019 at 10:49 pm in reply to: Issue with anchor ID and navigation overlapping content #1085727Hi,
Thanks for the update.
It seems to be an issue with the parallax container. The container is not resizing properly or as expected. We added the following script in the functions.php file to force the window to trigger a resize event until the page is fully loaded, leading the parallax container to resize correctly.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ console.log('tick'); $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 1000); $(window).on('load', function() { clearInterval(int); }); })(jQuery); </script> <?php }
Best regards,
IsmaelApril 1, 2019 at 10:38 pm in reply to: General Styling: Background images not working because of wrong path #1085724Hi,
@millertimesites: Did you set jQuery to load in the footer? This is the error in the console.(index):64 Uncaught ReferenceError: jQuery is not defined
at (index):64Looks like an issue with html minification. Please disable the plugins temporarily.
Best regards,
IsmaelApril 1, 2019 at 12:27 pm in reply to: Enfold with "The Events Calendar" – Buttons not working #1085454Hi,
Are you referring to the debug mode — the actual shortcodes below the builder? Did you happen to add this snippet before?
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/
That snippet sets the builder to debug mode, allowing users to see the actual shortcodes.
Best regards,
IsmaelHi,
Thanks for the update. We hope that you had a good night sleep. Anyway, we found the culprit. It’s this css code added inside the Quick CSS field or the style.css file.
#av-burger-menu-ul > li:nth-child(n+8) { display: none; }
Please remove that code and then toggle the Performance > File Compression settings.
Best regards,
IsmaelHi,
Have you tried disabling the “Remove HTTP” plugin? We can’t reproduce the issue on our end, so the problem in your installation is probably related to a plugin or a custom script. Let us know if disabling that plugin works.
Best regards,
IsmaelHi,
Sorry about that. The theme doesn’t use that function in its template overrides and we don’t think it’s actually related to the issue unless you’re having problem with the cart. What is the template hook used by the plugin to render the mm products? You may need to ask that question from the plugin developers.
Best regards,
IsmaelApril 1, 2019 at 11:59 am in reply to: Updated to Enfold 4.5.4 and now get admin-ajax 400 error #1085441Hi,
We are really not that familiar with server configs and we usually deal with users using standard or preconfigured hosting plans, not custom ones like yours, so we may not be able to help you with this one. Only thing we noticed that is worth noting is the PHP version. Have you tried enabling the WP debug mode?
// https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_LOG
Best regards,
IsmaelHi,
Thank you for using Enfold.
This css code should limit the height of the slider.
.home #full_slider_1 .avia-slideshow-inner { max-height: 75vh; }
The height of the slider is going to be 75% of the browser or view port height.
Best regards,
IsmaelHi,
That icon or symbol just represents the shortcode used by the sliders. If you’re using the smart slider, the shortcode can be added inside a text or code block and they’ll work the same. You can’t however edit the sliders directly from the advance layout builder. You will have to edit them in their own slider editor.
Best regards,
Ismael -
AuthorPosts