Ihor Chepurnyi
Ihor Chepurnyi
Hi, you can check comment configuration in the following template - https://github.com/yii2mod/base
If you need to override the comment view file, in your case "change the button text" you can just create your view file and override this property - https://github.com/yii2mod/yii2-comments/blob/master/widgets/Comment.php#L37
Hi, can you create PR for this issue? I'm sorry, I don't have enough time
@phamngocson1988 As I understand, we need to change the following code ```php $command->setSql(" REPLACE {{{$this->table}}} SET {{{$this->dataField}}} = :val, {{{$this->idField}}} = :id ")->bindValues([ ':id' => $identifier, ':val' => $sessionData, ]);...
Hi, you can add some route via admin panel. Did you try it?
Hi, you need to implement CartItemInterface in your model.
From docs ``` // Product is an AR model implementing CartProductInterface $product = Product::findOne(1); // add an item to the cart $cart->add($product); ```
You can only add active record model to cart.
Hi, can you create PR for this issue?
Hi, thanks, I will check it.