V4.x was realease 2 weeks after beta testing and was simply NOT production ready at all.
The whole data migration was broken. Live events not working anymore etc. Completely unusable and impacting Webshops and online buisinesses.
Since v4.0, I’ve been in almost weekly contact with support to get things sorted.
There were so many regressions that I’ve spent easilly 2 full days debugging and testing + tweaking for them.
2 security/patch updates that resulted on a critical issue 4.0.5 and 4.0.9 of the free version.
Styling is after almost 4 months still not applying the primary and secondary colors defined in the plug-in settings. The 3 available single page event templates are simply not using these and have a lot of plugin-in specific default colors you need to override in CSS. I mean, for buttons and so on, you should at least inherit from the theme used by the website…
v4.0.7 came out with a breaking change not documented in the release notes. Date format with / was not supported anymore while it worked fine in all previous versions. Again, impacting the whole site.
Since version 4.0.10 free made available in the past hours, the styling of the single page for free and pro was again changed. Previously applied CSS styling up to 4.0.8 is simply not taken into consideration anymore. Ugly + – buttons for quantity, attendee registration form also impacted with border styling and color changes.
And in the release notes, you can only read a few fixes.
Well next to the fixes you have a lot of impact on branding/styling which is bad for reputation.
And it introduced new bugs!
Existing published events with 2 ticket variations available for purchase had simply no ticket purchasing options displayed anymore. Needed to delete and create them again.
How can this be release as this would have broken the whole registration count per ticket if I did the update on the live website!!!
The registration limit date is nowhere to be found in the admin part of the event. But it is displaying a date coming out of nowhere which is even in the past but the tickets are still available for purchase.
I feel I’ve been a beta/quality insurance tester since june 24 for this plugin.
The promise is appealing and the marketing and affiliates have high praises. Looks like they never had to work with the plugin on a real website because honestly, it’s the only plugin I’ve ever used (and paid for twice) that is blocking me for making security updates on a customer website.
Let alone demanding a lot of effort to maintain a working website with the expecting look and feel update after update.
And it’s not like I’m using it for a complex use case. Simple offline events with 2 ticket variations on 1 website. No schedules, agenda, seat map, speakers, etc
And RSVP only on the second website.
Headhache for both thanks to Eventin.
Support is polite and apologising everytime. They better start fixing and stabilizing things instead of apologising foor the poor quality of their development and quality insurance work.
There is a breaking change in your last update regarding topic: https://www.ads-software.com/support/topic/wp-6-6-and-requires-plugin-header/
The header is added but it does not consider the use of polylang-pro !!!
When updating your plugin WordPress will auto disable this plugin for all websites that use polylang-pro plugin and will not allow users to activate it as the dependency is not met.
This could break all sites that use your plugin in combination with polylang-pro, without the users even noticing. Please fix this asap, before to many users are affected.
WordPress has provided a filter specifically for this “premium” plugin feature.
It is at the the bottom of the instruction page that was also shared in the previous support item, under title “New filter” https://make.www.ads-software.com/core/2024/03/05/introducing-plugin-dependencies-in-wordpress-6-5/ (I tried to add screenshots but those fail to upload)
Absolute no-go!!!
—
fixed, great addon
]]>Thanks in advance for your answer!
]]>The error message when they try to bid is “Please enter a bid amount greater than or equal to opening price”
I’ve checked the first 5 pages on the support forum and tried to find other solutions online, but no luck.
My site is running WordPress 6.1.1, Ultimate WordPress Auctions 4.1.9
Here is a screenshot of the error message, and the ‘Edit Auction’ options
https://imgur.com/a/Wdfenmr
Uncaught Error: Call to undefined method WP_Textdomain_Registry::reset() in /var/www/vhosts/[...]/wp-content/plugins/wpml-string-translation/classes/MO/Hooks/LanguageSwitch.php
Apparently the issue appears if the website is autoupdated to WP 6.1 before the WPML 4.5.12 patch is applied. Leaving aside for a moment the issue of releasing a breaking patch with an autoupdate, is there a way to temporarily restore an host before manually upgrading WPML?
]]>custom_menu_order should return a bool, not a function.
Change to:
add_filter( 'custom_menu_order', '__return_true' );
add_filter( 'menu_order', array( $this->admin, 'reorder_submenu_pages' ) );
core/Admin/Admin.php
when returning or exiting function, $menu_order needs to be returned.
Change to:
/**
* Reorder the submenu pages.
*
* @since 1.0.0
*
* @param array $menu_order The WP menu order.
*/
public function reorder_submenu_pages( $menu_order ) {
// Load the global submenu.
global $submenu;
if ( empty( $submenu['sg-cachepress'] ) ) {
return $menu_order;
}
// Hide the dashboard page on Multisite applications.
if ( is_multisite() ) {
unset( $submenu['sg-cachepress'][0] );
return $menu_order;
}
$submenu['sg-cachepress'][0][0] = __( 'Dashboard', 'sg-cachepress' );
return $menu_order;
}
]]>