kelwoos
Forum Replies Created
-
Forum: Plugins
In reply to: [SamedayCourier Shipping] Eroare in versiunea 1.10.3Am gasit si rezolvarea!
Intra in fisierul /wp-content/plugins/samedaycourier-shipping/sql/sameday_query_db.php si de la randul 77 schimba acest cod.
$result = unserialize($wpdb->get_results($query)[0]->service_optional_taxes, ARRAY_A);
return is_array($result) ? $result : [];cu
$raw_data = $wpdb->get_results($query)[0]->service_optional_taxes ?? '';
$result = unserialize($raw_data, ['allowed_classes' => true]);
return is_array($result) ? $result : [];Forum: Plugins
In reply to: [SamedayCourier Shipping] Eroare in versiunea 1.10.3Am aceeasi problema si eu PHP Fatal error: Uncaught TypeError: unserialize(): Argument #2 ($options) must be of type array, string given
Forum: Fixing WordPress
In reply to: WordPress 5.5 Lazy Load Image DisappearedSame problem here…all the website images disappeared after wordpress 5.5 update
Yes, now only the admin can make the switch for other roles. Shop manager can only switch if the user has the role of customer.
WooCommerce 3.4.6
There is one breaking change in this release. Previously, Shop Managers were allowed to edit all roles except admins. This was much more permission than Shop Managers needed for their role. With this release, Shop Managers can only edit users with the Customer role by default, and there is a whitelist of roles that Shop Managers can edit.