Ihor Chepurnyi

Results 13 comments of 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?

From docs ``` // Product is an AR model implementing CartProductInterface $product = Product::findOne(1); // add an item to the cart $cart->add($product); ```

Hi, can you create PR for this issue?

Hi, thanks, I will check it.