Show "from" before price

  • Posts: 12
  • Thank you received: 0
11 years 5 months ago #106589

Hi,

I have different characteristics of my products and I would like to add "from" before the price on the product listing pages.

I solved it by adding this code to the listing_price file:
<?php if(!empty($this->row->has_options)) echo 'from '; ?>

The problem is that my site is running three different languages, and by solving it like the example above it will say "from" in all three languages.

Thank you for your help!

Raggie

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

  • Posts: 12953
  • Thank you received: 1778
11 years 5 months ago #106593

Hi,

Then you should change this custom code :

<?php if(!empty($this->row->has_options)) echo 'from '; ?>
by :
<?php if(!empty($this->row->has_options)) echo JText::_( 'FROM_LISTING' ); ?>
And then add this and translate the "FROM_LISTING" word trough your translation files ("Hikashop->System->Configuration->Languages->'Your translation file'").

Hope this will help you a little.

Last edit: 11 years 5 months ago by Mohamed Thelji.

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

  • Posts: 12
  • Thank you received: 0
11 years 5 months ago #106612

Thanks a million Mohamed!

Any idea how i will get the "from" on the same row as the price? Right now it's on the row above the price.

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

  • Posts: 12953
  • Thank you received: 1778
11 years 5 months ago #106618

Maybe by putting your code :

if(!empty($this->row->has_options)) echo JText::_( 'FROM_LISTING' );
into the listing_price file of your product view of your front-end template, just before the code :
echo JText::_('PRICE_BEGINNING');

Last edit: 11 years 5 months ago by Mohamed Thelji.

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

  • Posts: 12
  • Thank you received: 0
11 years 5 months ago #106619

Thank you, you're my saviour! :)

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

Time to create page: 0.045 seconds
Powered by Kunena Forum