Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
Oops, forgot to include more information that would help getting to it. (below)
Good day all!
I got to play around with this briefly a week or so ago, but was not able to get it working and after trying a few different things, am still not getting it to work properly.
I kept getting No slides available, the response if it does not get a slideshow id. After messing around with pulling other parameters, I noticed it would pull the number 3 when I queries using dynamic data for the “av_acf_slideshow_ids” which happens to be the number of slides I have assigned to that records repeater field. So, I think we are really close to it working, but my attempts to adjust it did not work. So, I am hoping you might take a quick look at it (link and creds provided below).
-jason
It is going to be worth it and probably the best thing to happen to Enfold since it came onto the market! Really, really excited to unlock a whole new way of managing and displaying content in a more meaningful, sustainable and organized way!
Thank you Team Kriesi for finally making this possible! It has been a long time, but think this will unlock a sorts of new use cases for Enfold.
-jason
Good day, Günter!
I just wanted to check in and see how progress was going. Any updates?
-jason
Hi team Kriesi,
I hate to continue to be a persistent pest, but I continue to be asked about it and don’t have any answer to give anyone. Any timeline yet? With that functionality being actively advertised, used and showcased on many other themes/builders/frameworks, it is really hard to not be looking to other frameworks to achieve this functionality.
-jasonSeptember 7, 2023 at 8:35 pm in reply to: Still fighting with managing default image sizes. #1418400Guenni,
So, I am trying to do this step-by-step, removing the default Enfold-based image sizes first. I kept the bulk of your framework, but made a few little changes. I applied the code below to my child themes functions file, and then did a full regeneration of the images, and removed any images that did not have sizes anymore.
// Start Removing Image Sizes - Rev 20230907-3 // // Remove or unregister unused WordPress Image Sizes (via Enfold) // Disable loads of Enfold & WP image sizes upon upload // do image sizes manually, double-size with high compression for retina screens // use Photoshop to set exact double size and quality between Q30 and Q40 add_action('init', 'remove_enfold_image_sizes'); function remove_enfold_image_sizes() { remove_image_size('square'); remove_image_size('featured'); remove_image_size('featured_large'); remove_image_size('portfolio'); remove_image_size('portfolio_small'); remove_image_size('gallery'); remove_image_size('magazine'); remove_image_size('masonry'); remove_image_size('entry_without_sidebar'); remove_image_size('entry_with_sidebar'); remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single'); remove_image_size('shop_gallery_thumbnail'); } // Remove unneeded WP image sizes add_filter( 'intermediate_image_sizes_advanced', 'prefix_remove_default_images' ); // Remove default image sizes here. function prefix_remove_default_images( $sizes ) { // do NOT remove small and medium sizes, they are used in backend Media Library! // unset( $sizes['small']); // 150px // unset( $sizes['medium']); // 300px unset( $sizes['large']); // 1024px unset( $sizes['medium_large']); // 768px unset( $sizes['1536*1536']); // 1536x1536px unset( $sizes['2048*2048']); // 2048x2048px return $sizes; } // Moduly Image Sizes add_image_size('Moduly-Square', 1080, 1080, false); add_image_size('Moduly-Horizontal', 1920, 1080, false);
This is the result (on Performance Tab > Responsive Images Overview section), after the above adjustments.
I do see the couple added image sizes, but unless I am a complete idiot, it still looks like the image sizes above are still being injected.Images aspect ratio: 1 : 1
36*36 – Widget (added by theme)
108*108 – thumbnail (WP default size)
180*180 – Square (added by theme)
540*540 – medium (WP default size)
705*705 – Masonry (added by theme)
1080*1080 – large (WP default size)
1080*1080 – Moduly-Square (added by a plugin)
1500*1500 – Fullscreen Sections/Sliders (added by theme)
1536*1536 – 1536×1536 (WP default size)
2048*2048 – 2048×2048 (WP default size)
Images aspect ratio: 52 : 37
260*185 – Portfolio small (added by theme)
Images aspect ratio: 99 : 80
495*400 – Portfolio (added by theme)
845*684 – Gallery (added by theme)
Images aspect ratio: 142 : 75
710*375 – Magazine (added by theme)
Images keeping original aspect ratio
768*0 – medium_large (WP default size)
Images aspect ratio: 845 : 321
845*321 – Entry with Sidebar (added by theme)
Images aspect ratio: 1210 : 423
1210*423 – Entry without Sidebar (added by theme)
Images aspect ratio: 150 : 43
1500*430 – Featured Thin (added by theme)
Images aspect ratio: 50 : 21
1500*630 – Featured Large (added by theme)
Images aspect ratio: 16 : 9
1920*1080 – Moduly-Horizontal (added by a plugin)Guenni,
I feel like an idiot on this, because it seems like I am doing it right, but am just not getting it to do what it would appear it should be doing. Any ideas where I have gone wrong?
September 7, 2023 at 7:38 pm in reply to: Still fighting with managing default image sizes. #1418396Wow! Thank you Guenni! Lots to look over here, but thank you very much for this help!
Okay, so I think I might have figured it out, and hopefully this can be of benefit to others as well.
I ran across this article from WordPress:
To sum it up, the template files need to be in the Child Theme directory, using the WordPress/Enfold default templates as basis starting points.
But, you need to add the following lines at the top (right below the first if switch that follows the open php tag.
/*
Template Name: Full-width layout (Rename to appropriate template name)
Template Post Type: post, page, (insert your new cpts here)
*/Remainder of template follows, but that will finally add the Post Attributes meta box to the right side of the screen.
Can something similar/related-to to this be added to the Enfold Docs?
Good day, Ismael.
I generally turn off the block editor, as it confuses people and I would rather have them learn Avia through the Classic editor, so they gain the benefits of Enfold.Is the Block editor the only way we are able to switch templates at all?
This reply has been marked as private.This reply has been marked as private.Hi Mike.
I am not trying to use the news element or the magazine element. I am trying to use the core functionality of a post format that links directly to the url content in the post content field. We have done it in the past on other sites, and sometimes it works, sometimes it does not. A couple plugin developers have suggested that the theme is trying to wrap a template around it, but suggested I start with looking at Enfold, first.
The link I gave was to the post link, which should transparently redirect the user to the url within the post content of that post.
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.May 2, 2023 at 6:11 pm in reply to: 5.6 vs 5.5 upgrade breaks site – functions.php avia_lang_setup(); #1406228For those experiencing problems with Enfold 5.6, what version of WordPress is everyone here running?
Is your Enfold running as the main theme? (On the left sidebar as Enfold)
Or are you running a child theme with Enfold as the parent theme?
What language is your default?May 2, 2023 at 5:15 pm in reply to: 5.6 vs 5.5 upgrade breaks site – functions.php avia_lang_setup(); #1406221Quick question for everyone. Are you using the Enfold theme directly, or as a parent theme to a custom child theme?
May 2, 2023 at 4:24 pm in reply to: 5.6 vs 5.5 upgrade breaks site – functions.php avia_lang_setup(); #1406208Is this due to changes between WP 6.1.1 and 6.2?
Follow-up question…
Looking at Image Sizes Controller, this appears to be very similar to the other plugin, but it only has a handful of users, compared to Simple Image Sizes, which has a rather large installed base. Have you encountered problems with SIS, versus the ISC? Functionally, I don’t see much difference to what I am looking to do between the two plugins, other than interface and conditional, which I am not sure I want the overhead for. I would really like to better understand your recommendation more.
Thank you, Ismael, for the suggestion. I will take a look at that.
What I was really hoping for was clarification on what sizes Enfold is responsible for and/or drawing from. Some of them appear to be directly associated with Enfold and others, it is har to tell the source.
Thank you again for any help and guidance,
-jasonThis reply has been marked as private.This reply has been marked as private.Nope, this was in response to the following threads:
While not glamorous threads, these threads are incredible important. I keep hoping for a better feature requests system, but maybe some day. In the mean time, these two threads are ones I constantly refer to, along with the changelog.
Thank you, Günter!
This is what we need, and it will benefit a lot of other Enfold proponents, too.
We eagerly look forward to a whole new chapter unfolding with the new functionality!
Thank you, Günter, for the response and more clarification of the status of this within the Enfold platform.
My trouble with this, is that it feels like just another message that will allow the can to be kicked down the road for another indeterminate point of time. Many of us have been asking for field support for years, and we continue to be told that it will recommended and for us to be patient. Rikard acknowledged this back in October, as have others over the years.
Günter, we need this.
Yes, I am making this statement more than just a request.We have been asking, begging, pleading for support, so that we can continue to use a tool that is capable for current needs, when the clientele come to us and ask for functionality they can get in other tools. We have found every possible way to work around it, but are running out of reasons (and at this point, excuses) that the centerpiece of our toolset, Enfold, still does not even have a plan to integrate, despite continuing to tell us it will be a consideration.
We have worked with, promoted, developed, and championed Enfold since nearly the beginning of it. We do more than just purchase Enfold. We are coming to you now, begging for you to put more than just thought into this. We are asking, so that we may remain using it.
We don’t want to use Gutenberg. We don’t want to use Elementor. We don’t want to use Avada. We want to see Enfold do what we know it can do, and do it better than the others, just like it used to. Fields integration may not be glamorous like display functionalities, but it will lead to entirely new ways we can do incredible things with Enfold, and that results in new audiences, who also grow the capabilities of the Enfold platform.
We don’t care if you have to charge more for it. We just can’t keep waiting for someone to finally realize its importance and make it real.
-jason
- This reply was modified 1 year, 7 months ago by Jason E. Reason: Clarification
Can we get an update to this? We are at a crossroads where we need to determine whether Enfold still works for us. I love Enfold and promote it every place I can, but websites are not just posts, pages and portfolios anymore. Websites need to be more, and while adding animation is cool and glitzy, it does not account for the need for more solid data-handling capabilities that most other major themes have baked in at this point. Enfold led the way with one of the best implementations for showing taxonomies, but that was over a half decade ago.
Hi, Rikard!
I think the biggest challenge for us is the inability to easily add custom content without resorting to digging in templates. My hope was that Avia could use the normal post type taxonomy selector, and then it would pull up a list of the fields available under that taxonomy. To me, it feels like Avia is so close to solving this, but the one thing missing is the bridge between taxonomies and ACF data. I am probably way over-simplifying things, but I have found in the past that sometimes the answer is right in front of us.
That said, with the constant need for custom content and content types, was the intended technique always to hand-code templates for CPTs? There are several good and established options out there (CPTUI, ACF, Pods, etc.), with a ton more coming. I guess what I am asking is instead of waiting for our theme competition to seize on it, can we find a way to lead the charge with a solution that is equally as powerful as Enfold?
If it is a matter of time or cost, let developers like us find a solution for that. I would have no problem paying more to have a more enhanced feature set, and I have said that many times in the past. We need tools to continue to promote Enfold as the best solution, especially with WordPress trying to eat everyone’s lunch these days. I don’t want to be stuck with only Automattic solutions, and the idea of Elementor and its bloat scares me almost equally.
If you build a solution for CPTs and Custom Fields, or even a solution that ties in with them, we will have no problem with additional licenses to support those efforts. It would open tons of opportunities to push Enfold way beyond the scope it was designed for.
Additionally, we would have no problem paying for a Pro version of Enfold. In fact, we would welcome it with open arms, as it would be a way to contribute to building out Enfold with more resources, rather than just the recurring support residuals. Let us know what it would take.
-jason
September 30, 2022 at 9:08 pm in reply to: Customizing Search Results, Particularly in WooCommerce Products #1367154Thank you, Mike!
That is an interesting idea. It would be really cool, if there are some way to catalog all css, js, frameworks, etc. within a site. I have not used Rocket, but it sounds like it has part of what you are seeking, but I can definitely see merit in either a tool to discover all css/js references within a site, or more of a site repository that was almost like a cvs.
From a tech support angle, I can see huge benefits, but also for compliance and development as well.
I know that many larger plugins have tools to pull all of the plugins, themes, etc. on an active site, but to take it one step further could prove incredibly useful.
@Ismael, what are the toolsets you are using to get information like this when trying to isolate issues/incompatibilities? Is there something already out there? -
AuthorPosts