Forum Replies Created
-
AuthorPosts
-
Seeing the same problems on WP 5.9.3. Not sure if it is related, but same output.
June 1, 2022 at 2:48 pm in reply to: Help! Suddenly unable to pull certain categories of posts on a city site #1353762Update… I wanted you to know as you might look at it that I am making changes and trying to find a way to get it back working. At this point, I am essentially trying to find a way to at least get the content visible.
I was finally able to get the masonry element to show, after cloning it again from the working page, but the look is not ideal for the purpose. I will continue to try to discern what is happening and update it here.
Update: I think I figured it out. In the documentation, there is a css snippet for making the footer full width, but it does not really do much, unless it is a single-column footer, which most footers are not. So, I added div in the selector and it now performs as desired. Feel free to adjust the documentation to help others that might be facing similar issues with mobile footer display.
/* Full width footer columns */
@media only screen and (max-width: 767px) {
#footer .container div {
width: 100vw;
max-width: 100%!important;
} }Any update to this?
April 2, 2022 at 5:29 pm in reply to: Correct way to integrate custom post types with Enfold in 2022 #1346994Thank you, Ismael. The last part was what I was looking for. It sounded like things were changing in the recent past as to how Enfold handled CPTs, so before digging into a potentially deep project, I wanted to make sure I was in line with the best practices for Enfold compatibility.
March 29, 2022 at 6:07 pm in reply to: WooCommerce Select Options/Add to Cart button insanity #1346460Nikko, Thank You! I cannot believe I missed that!
I had to do a bunch of css work to fix the issue.
I still would be very interested in seeing a method to accomplish this as a main menu, rather than as a shortcode attached subnavbar element. Can there be some consideration for making the main nav its own for formatting? Currently, it resides within the Header element, which means it affects the entire header along with the navbar. For those using navbars below the logo, it would be really useful to be able to style that element on its own.
Hope this helps!
-jasonThis reply has been marked as private.Hi, Rikard!
I eventually find it, after searching and searching, but for someone that knows the Kriesi site, that may be ok, but for new users, which I think we all want more Enfold users, they’d have absolutely no idea where to look. We can do better than that. If we really want to kick things up a bit, here are some places that I think would really benefit both new users and seasoned ones.
Intro screen for those first installing Enfold. Include a welcome, links to Docs, Tutorials, Snippets, and Examples for those looking for a creative kick-start.
Add a Help tab to the Theme Options, with links to the various areas. Make it able to be disabled, for those with embedded solutions using Enfold, but on by default.
Support Navbar link should NOT go straight to the forums. It makes users feel like they always have to look through volumes of information to solve what might be a quick answer to a question. It also makes support staff the central focus, rather than giving people and opportunity to quickly find what might be their solution, or lead them in the right direction.
Support should be drop-down, with individual links to Documentation, Tutorials, Examples, Integrations, Latest Release (links to release notes), Forums, and direct link to Ask a Question.
Demos should link to page that displays Demo content, but also great examples of Enfold used in the wild. With themes like Elementor getting massive national press, the least we can do is showcase some of the best and most innovative Enfold-driven websites. Lastly, a link to submit your own site for showcasing. I know it is in the forums, but do you really want people to have to dig to showcase an Enfold site?
Let’s come up with a real and working solution for integrations. How may “Does Enfold work with…” questions do you get? There are a ton of us that regularly use sets of plugins that we know either work out-of-the-box or have created ways to integrate them. Let’s build a repository of those and spur on a new group of integrations. If we don’t call it out, how can we ever expect to make that “works with…” list longer? We want it so those products that we integrate look to promote Enfold as a great option for utilizing their solutions. We also need a way to suggest or request an integration.
Also, is there any way to funnel the other Kriesi-based theme users into the Enfold trunk and simplify the support, enhancement and growth of Enfold as a platform, rather than just a theme? Would it be worth considering offering a license of Enfold to any other Kriesi theme user to encourage switching to the Enfold platform? It may cost a few sales, but at the same time, it gets them into a highly versatile platform that keeps growing, and might just spur on their creative spirits to do new things with Enfold. Just a crazy thought.
I know I am asking for you all to add more work to your plates, but at the same time, I would be happy to help on some of it. We all want Enfold to continue to grow and flourish, but we have to also be willing to put effort into the Kriesi site to support those sales, support and promotional efforts. It also will help users in ways that will alleviate some service and support issues before they even get to the forums.
I guess the bottom line is let’s work together as a community to showcase Enfold, grow our audience, which drives sales, which drives the ability to do even greater things.
-jason
Thank you again. I think it was a plugin conflict, even though it should not have been.
So, I took your suggested code for adding the subnavbar to the shop pages global, as it looks more in line with the client’s content site. It looks nice, but has an odd issue on the store main page — 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.
add_action(“woocommerce_before_main_content”, function() {
$menu = do_shortcode(“[av_submenu which_menu='' menu='23' position='center' sticky='aviaTBsticky' color='footer_color' mobile='disabled' mobile_switch='av-switch-768' alb_description='' id='subnav' custom_class='subnav' template_class='' av_uid='av-ndlzm' sc_version='1.0'] [av_submenu_item title='Menu Item 1' button_style='' link='' linktarget='' av_uid='av-gg26y' sc_version='1.0'] [av_submenu_item title='Menu Item 2' button_style='' link='' linktarget='' av_uid='av-ba2z6' sc_version='1.0'][/av_submenu]“);
echo “<div class=’av-shop-sub-nav’>” . $menu . “</div>”;
}, 10);Beyond the sidebar issue, it brings me to wonder if there would be any way to achieve this as the primary navbar? I have tried and as you know with all the sites we do, we have experimented with lots of designs and customizations. But, what is getting me is how to have two separate color sections: one for the header and one for the navbar. It sounds easy, and maybe it is, but for the life of me, the process is eluding me.
Any ideas?
Thanks again for all of the help!
-jasonOkay, so I have been digging into this more and more. Does Enfold save the short description field in a different place, like it does for post content in the meta table?
Oops, this is the function WooCommerce offers to allow shortcodes in the descriptions…
/**
* Allow shortcodes in product excerpts
*/
if (!function_exists(‘woocommerce_template_single_excerpt’)) {
function woocommerce_template_single_excerpt( $post ) {
global $post;
if ($post->post_excerpt) echo ‘<div itemprop=”description”>’ . do_shortcode(wpautop(wptexturize($post->post_excerpt))) . ‘</div>’;
}
}Thank you! That works beautifully!
Sorta related question. Is there anything within Enfold/Avia that would strip shortcodes from a product short description field? I have used the function WooCommerce gives to allow shortcodes in them, but something continues to strip any/all shortcodes/code out of the field upon save/update.
December 3, 2021 at 6:25 pm in reply to: Enfold and Paid Memberships Pro issue with blog posts element #1331503This reply has been marked as private.December 2, 2021 at 6:50 pm in reply to: Enfold and Paid Memberships Pro issue with blog posts element #1331355This reply has been marked as private.December 2, 2021 at 6:47 pm in reply to: Enfold and Paid Memberships Pro issue with blog posts element #1331353This reply has been marked as private.I forgot to note that I have done a re-install of both WP (in-place) and Enfold (fresh copy + saved settings).
This reply has been marked as private.Ok, so I think I figured part of it out. I was looking for what was manipulating the images to 400×400, but what was affecting them first was WooCommrce setting them to 300×300.
I would suggest that it might be beneficial to place a link in the Enfold settings that links to the Customizer for WooCommerce. I can see where it would be very confusing for a new Enfold / WooCommerce user to go in circles looking for why their images are blurry. It threw me off, and I have been working with Enfold for a very long time now.
What I still do not know, though, is what is trying to resize to 400×400. I wish we could just override all of the settings and choose an image size directly within the enfold Product Grid element. It would be far more consistent with other ALB elements that have this functionality.
Can we get an update, please?
Hi Ismael,
I was trying various methods to get it to work. I did try separate widgets and combined widgets. They both try to load the footer formatting and it also closed the element before the code is finished.
I was very interested in getting some guidance on creating Avia Elements like what was done for Events Calendar Pro, but have not had much luck getting any guidance to that end. I ended up hiring a developer that has experience modifying these elements, but wish there was a better way to create them. There is so much opportunity to grow the capabilities of Enfold, if we had a better developer resource. This is why other platforms have success, because they allow for extensibility. Visual Composer, Gutenberg, Avada, Beaver Builder, etc., all welcome development of new modules. Please, give us the capability to build upon the platform we love, so we don’t have to eventually look elsewhere.
We have been asking for years to either have a Pro version of Enfold that has more capabilities or the option of creating our own elements, but at this point, we are watching other frameworks grow by leaps and bounds while Enfold is still limited to only what you want to build into it. We love Enfold, and promote it every single chance we can, but the arguments that we used to have that Enfold had so much more and was so much easier are getting less and less compared to other frameworks. We want you back on top. Please.
I know I am pushing you, but it is only because we want to see Enfold do incredible things again.
Thank you for the starting point. Is there an example Avia Element template? Who and how was the Events Calendar Pro element built? Did they build it, or was it built there?
I would much rather you see things are they are before me making changes, so I have included access for you.
It would be awesome to find a solution, because Enfold, Events Calendar Pro, GeoDirectory and Gravity Forms are the most important tools across any site I build. With all of them, almost anything is possible. Enfold and css have always been the thing that brings everything together.
Thank you for all of the help and insight,
-jasonHi Ismael,
Here is what is odd. I completely disabled all plugins the other night. Every last one except Classic Editor, but that line of code still was in there.
<script type=’text/javascript’ src=’//maps.googleapis.com/maps/api/js?’></script>
I am going to continue to search for the cause of this, but I have a bigger question… How are these plugins supposed to work together at this point? They used to without issue, but not now. If someone needs the functionality of these plugins, it seems like a no-win scenario. I have to believe there is a viable solution to this, because there is no way we are the only ones utilizing multiple plugins with Google Maps API calls. I love the Google Maps integration for Enfold, but I also need the integration to show location maps for GeoDirectory and Events Calendar Pro. These are not small-audience plugins, they are widely used ones, like Enfold. The problem is that each developer involved just says to disable the other ones. As usual, Google is absolutely no help.
This reply has been marked as private.I removed my reply, because my response was with a lot of frustration. It would not allow me to delete the response entirely, or I would have. I should have left a different message, I apologize.
I posted in my previous responses some of the very answers Vinnay was requesting. I said at the beginning of the thread I am used to doing this and had done the normal troubleshooting. The problem did not occur on older versions of Enfold. I cannot pin down exactly what version it changed, but will try to do some more investigating today to get detailed answers.
I will work to compose a better response later this morning.
In the mean time, can you ask if there is a function to remove the GoogleMaps API call from the normal Enfold page load?
This reply has been marked as private.Yes, billing is all setup, and it works on other sites. This is the first case where Enfold is not passing through the api key variable, as I showed in the screenshot. The plugin is loading it first and then Enfold, which is not putting in the key correctly. Disabling the plugin does not change anything.
This reply has been marked as private.I think I am going to use Uber, but would still like to know what the selector is for getting the whole div of the main navbar dropdown.
-
AuthorPosts