about the characteristics showing in the cart ...

  • Posts: 107
  • Thank you received: 0
13 years 3 weeks ago #9710

This is about the characteristics showing in the cart and the final cart, I'd like to customized a bit the way it shows up ... when you've got a few characteristics it might be a bit messy .. I'd like to add </br> or "'" in which file is it made .. in which file is it made ?

Please Log in or Create an account to join the conversation.

  • Posts: 81361
  • Thank you received: 13035
  • MODERATOR
13 years 3 weeks ago #9729

We actually started to add an option for that.
If you use a really recent version, you can just go in phpmyadmin and in the hikashop_config table add an entry with the namekey being characteristics_values_separator and the value being the separator you would like.

Please Log in or Create an account to join the conversation.

  • Posts: 107
  • Thank you received: 0
13 years 3 weeks ago #9798

yep working fine ... but ... there is always a 'but' it also adds my separators in title in the product/show.php ... I'd like to avoid that ... but still want it in my cart ... how can I do that ????

Please Log in or Create an account to join the conversation.

  • Posts: 81361
  • Thank you received: 13035
  • MODERATOR
13 years 3 weeks ago #9818

You would have to edit the file show of the view product and change the code to use the main product name instead of the variant name.

So replace:
echo $this->element->product_name;
by:
if(!empty($this->element->main->product_name)){
echo $this->element->main->product_name;
}else{
$this->element->product_name;
}

and:
echo $variant->product_name;
by:
echo $this->element->main->product_name;

Please Log in or Create an account to join the conversation.

  • Posts: 107
  • Thank you received: 0
13 years 3 weeks ago #9928

fantastic :)

Please Log in or Create an account to join the conversation.

Time to create page: 0.060 seconds
Powered by Kunena Forum