Ilias Antonopoulos
Forum Replies Created
-
Forum: Reviews
In reply to: [YUZO] Greate, unless you use it with Profile Builder pluginHello Lenin!
The problem I faced was in the admin side.
With Yuzo enabled, Profile Builder was unable to save changes in Profile Builder -> Form Fields.
I checked one by one all installed plugins.
Only when Yuzo was disabled PB managed to save changes.
I haven’t spotted a compatibility issue in frontend.
I hope that helps.I think I found the reason of this erratic behaviour.
What I forgot to mention is that we are using the Divi theme.
Divi has a parameter that controls the number of products per page. We had this set to 20 products per page.While investigating the problem, I deactivated your plugin and tried 2 others.
Both were not able to change the number of products per page.
What ever value we choose, they were always shown 20 products.
When I changed the theme to Twenty Twenty, both worked as expected.
So it was Divi that was preventing them to work.I’ve found a function that overrides the Products Per Page setting from Divi.
I added it to functions.php, and now your plugin as both the other 2, work without problems in Chrome and Firedox browser, both in Desktop and Mobile views.I found the function in this post
https://www.ads-software.com/support/topic/divi-solution-wppp_divi_override-breaks-theme-customizer/You are welcome Oleg.
Hi,
I’ve found a solution to this problem. Perhaps not the best, but it works.
Unfortunately you have to modify a plugin’s core file.Grid/List View for WooCommerce, Version: 1.1.0.2
File main.php
Line 283Original code:
public function set_pre_get_posts($query) { if( ! is_admin() && $query->is_main_query() && class_exists( 'WooCommerce' ) && function_exists( 'wc_get_page_id' ) && is_post_type_archive( 'product' ) ) { $count = $this->set_products_per_page(false); if( $count !== false ) { $query->set('posts_per_page', $count); } } }
Change to:
public function set_pre_get_posts($query) { if( ! is_admin() && $query->is_main_query() && class_exists( 'WooCommerce' ) && function_exists( 'wc_get_page_id' ) && (is_post_type_archive( 'product' ) || is_product_category()) ) { $count = $this->set_products_per_page(false); if( $count !== false ) { $query->set('posts_per_page', $count); } } }
What I did, is to check not only if it is trying to show products, but also if it is trying to show a product’s category.
Now plugin works great with Divi theme.
- This reply was modified 5 years, 5 months ago by Ilias Antonopoulos.
Thank you for your reply.
I am sure that your intentions are good.
Your support contacted me and asked to solve all problems as a priority.
Good for your company.
But all the paid versions of plugins I have bought during the last 5 years, never had any major problems. They were just plug and play.Unfortunately you can’t offer me any help now, as during the last couple of weeks I have moved on. I have uninstalled all free and paid versions of your plugin. I have created my own solution using Advanced Custom Fields forms, Paid Memberships Pro and a lot of custom coding.
Your plugin was a really bad experience.
For me it had so many bugs that made it unreliable. Not a solution to base a business on it.
And when I talk about bugs, I am not talking about well hidden bugs.
I discovered bugs in basic functions. Is anyone testing this plugin? And if so, are they good testers? Are there live installations using this plugin?And you know something my friend, this could be one of the best WP plugins ever.
Only if it worked and did what it advertises that it does.
You have to test it better and address all bug issues.I know that in this place we cannot talk about paid versions.
But because the free version is a step prior to buing a paid version, I had to warn future buyers.
Because that is the current case of your plugin.
PS
The code for the Paid Memberships Pro Integration Addon is dated back to 2013. 6 years ago. A lot of things have changed since then. And it doesn’t work apart form displaying in the backend the numbers of post limits.- This reply was modified 5 years, 5 months ago by Ilias Antonopoulos.
- This reply was modified 5 years, 5 months ago by Ilias Antonopoulos.
I had the same problem after updating to 3.6.2.
Meta Slider 3.5.x was working fine prior to update.MY FIX
I am also using Fast Velocity Minify (FVM).
In my case the fix was to add 4 files to Ignore list of FVM. These were:
/wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.min.js
/wp-content/plugins/ml-slider/assets/sliders/flexslider/jquery.flexslider.js
/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.min.css
/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.cssI have to confess that I had a really hard time and time loss till finding the fix.
But on the other hand, that was small compared to the benefits of this great plugin.
Keep up the good work!!