Hi @jaimeimagely
In my opinion, there is an error in the Transient.php file on line 75 (add_group() method).
if ( ! isset( $this->_groups[ $group ] ) ) {
After changing the code to the one shown below, everything starts working properly. The missing properties will be added to the array that does not have the “id” property
if ( ! isset( $this->_groups[ $group ]['id'] ) ) {
-
This reply was modified 8 months, 3 weeks ago by watchtowerhq.