- Posts: 25
- Thank you received: 1
Error on view vote form.php - Hikashop 1.5.8
14 years 3 months ago - 14 years 3 months ago #51899
by fdesanto
Error on view vote form.php - Hikashop 1.5.8 was created by fdesanto
In Hikashop 1.5.8
File: component/com_hikashop/view/vote/tmpl/form.php
1) In the line 36 you open the div (<div class="hikashop_vote_stars">)
but if the if statement at line 38 is false the div don't close.
2) There is an language error at line 39 (echo JText::_('RATE').": "
In Italian (and beyond) "rate" is not "vote".
Thanks
File: component/com_hikashop/view/vote/tmpl/form.php
1) In the line 36 you open the div (<div class="hikashop_vote_stars">)
but if the if statement at line 38 is false the div don't close.
2) There is an language error at line 39 (echo JText::_('RATE').": "
In Italian (and beyond) "rate" is not "vote".
Thanks
Last edit: 14 years 3 months ago by fdesanto.
Please Log in or Create an account to join the conversation.
14 years 3 months ago - 14 years 3 months ago #51903
by Xavier
Replied by Xavier on topic Re: Error on view vote form.php - Hikashop 1.5.8
Hi fdesanto,
Thank you for reporting it.
It has been corrected.
This line must be removed:
And add this line just after the if, like that:
For the JText::_('RATE'), you can replace it to: JText::_('VOTE').
Thank you for reporting it.
It has been corrected.
This line must be removed:
Code:
<div class="hikashop_vote_stars">
Code:
if ($vote_enabled == 1) {
echo '<div class="hikashop_vote_stars">';
For the JText::_('RATE'), you can replace it to: JText::_('VOTE').
Last edit: 14 years 3 months ago by Xavier.
The following user(s) said Thank You: fdesanto
Please Log in or Create an account to join the conversation.
Time to create page: 0.154 seconds