Description in product listing

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #179953

-- HikaShop version -- : 2.3.4
-- Joomla version -- : 3.3.6
-- PHP version -- : 5.3.29
-- Browser(s) name and version -- : Firefox 33.1

Hi all,

I´m trying to figure out if it´s possible to show the description of the product in the product listing:



Also, how can I remove the "pro Stück" ?
Read the forum and also the documentation but can´t find a solution for this.

Many thanks
Torsten

Last edit: 9 years 5 months ago by TorstenL.

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

  • Posts: 12953
  • Thank you received: 1778
9 years 5 months ago #179958

Hello Torsten,
1.
- You can directly use the "Type of item layout" option through your product listing content menu's configuration page
OR
- You'll have to directly add your product description on the code of the "listing_img_title" file of the "Product" view of your front-end template via "Hikashop->Display->Views".

2. Editing your language file will probably do the job : www.hikashop.com/download/languages.html#translate

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #180149

Thanks for the update, Mohamed.

1) The "Type of item layout"-option is not working for me, I´ve tested this before.
Could you please tell me which code I should insert into the "listing_img_title"-view ?

2) Editing the language file did the trick.

Best regards
Torsten

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

  • Posts: 13201
  • Thank you received: 2322
9 years 5 months ago #180161

Hi,

Use the "listing_img_desc" view is the best solution.
If it's not working for you, that's potentially because you are editing the option in the wrong menu/module.

You have to edit he settings of the menu with the id "645". If it's still not working please check if you don't have any overrides on the view "product / lising_img_desc" via the HikaShop menu Display > Views.

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #180830

Hi,

sorry, but I can´t get this to work. That´s how it should look:



I´ve read all the documentation I can find, could you please help ?

And some additional questions:
1) on the product page, the current price is not showing up, I have to select the field "Zahlweise" first ?
2) the unit price is showing on the top, can I remove this and have the price showing at the bottom (see point 1))
That´s how it looks at the moment:


And that´s how it should look:


Many thanks
Torsten

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

  • Posts: 81622
  • Thank you received: 13084
  • MODERATOR
9 years 5 months ago #180832

Hi,

0. Edit the file "listing_img_title" of the view "product" for your frontend template via the menu Display>Views and add the code:
<?php echo $this->row->product_description; ?>
That will display the product description on that listing.

1. That's because you have a javascript error on the page which prevents the initialization of the options price display of HikaShop. You can see it if you open your browser's javascript error console. Fix the javascript error and it will display.
That error comes from the chosen library being stripped out from the head of the page by something on the website. The simplest is to not use chosen. Make sure that it is deactivated in the Display options of the HikaShop configuration and anywhere else on your website (template options for example ?).

2. If you want to hide the product price at the top, it's possible by adding simple CSS to the frontend CSS file of HikaShop:
#hikashop_product_price_main{ display:none; }
www.hikashop.com/support/support/documen...ize-the-display.html

The following user(s) said Thank You: TorstenL, tbroderick

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #180953

Hi Nicolas,

you made my day, this works like a charm :)

I have some additional questions but first need to think about it.

Thanks again
Torsten

Last edit: 9 years 5 months ago by TorstenL.
The following user(s) said Thank You: tbroderick

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #181100

Hi Nicolas,

all is working now, here there additional questions:

1) How can I remove the marked column ?



2) I´ve configured two payment methods: SEPA transfer and SEPA debit.
If a user chooses method 2, he should get an email with a special PDF. How can I setup this in Hikashop ?

Many thanks
Torsten

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

  • Posts: 12953
  • Thank you received: 1778
9 years 5 months ago #181127

Hello,
1.
You can do it by using some CSS code, or by directly editing the "cart" file of the "checkout" view of your front-end template via "Hikashop->Display->Views".

2.
There is no option to do that, the only solution will be to use some custom code through the payment plugin files or the email files (Hikashop->System->Emails).

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #181303

Hi Mohamed,

many thanks for the update.

1) Could you be a bit more precise where to edit what ? Which code to insert or to delete ?
2) Is this something you can help me with or do I have to ask a developer / programmer ?

Thanks again
Torsten

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

  • Posts: 12953
  • Thank you received: 1778
9 years 5 months ago #181314

Hello,

1. You'll have to use that kind of CSS code :

#hikashop_checkout_cart .hikashop_cart_product_price_value {
display: none;
}
#hikashop_checkout_page #hikashop_cart_product_price_title {
display: none;
}

2. You'll have to ask a developer/programmer.

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #181474

Thanks for the update, Mohamed. Will try out your hint later this afternoon.
Would´nt it make sense to add an option to attach files easily to Hikashop in a future version ?
I´ve seen this question in the forum a couple of times now.

Best regards
Torsten

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

  • Posts: 13201
  • Thank you received: 2322
9 years 5 months ago #181486

Hi,

We can already attach files to HikaShop emails, the thing is that we can't restrict them to one payment or shipping method.
There is too much use case, so it's very complicated to add this kind of option, we can't really cover all the situations.

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

  • Posts: 37
  • Thank you received: 1
9 years 5 months ago #181598

Hi Xavier,

if you take "variants" as an example, it would be helpful to attach files there. Not just a link but the file itself.

Best regards

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

  • Posts: 13201
  • Thank you received: 2322
9 years 5 months ago #181599

Hi,

Sorry but I am a little bit lost. Aren't you talking about the file attachment in emails based on the payment method choosed ?

If you want to attach file directly to variants, it's possible via the product edition page, click on "manage variants" button then add files to the variant, not free, this way the file will be present in the email.

Please give us more details on what you need exactly. :)

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

  • Posts: 37
  • Thank you received: 1
9 years 4 months ago #182594

Hi Xavier,

sorry for the delay.

I described it wrong in my last post, I meant "payment methods" and not "variants.

Best regards
Torsten

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

  • Posts: 81622
  • Thank you received: 13084
  • MODERATOR
9 years 4 months ago #182598

Hi,

I see what you mean. It could be something to add yes, but it's not easy to add by default whereas a customization of the email file to add a link to the file is a lot more simple.

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

Time to create page: 0.075 seconds
Powered by Kunena Forum