I’m surprised that professional developers make kids mistakes and even don’t test it in different environments. So, the mistake is they used the javascript key word as identifiers. Buggy Firefox can accept this but strong IE indicates an error.
To resolve problem with IE you need replace in addons/hot_deals_block/js/jquery.deals.js :
this
```php
shift_left: function(class)
{
class.position = (class.position == 0) ? class.deal_items_count - this.elements_count : class.position - this.elements_count;
class.use_pagination(class.position, ‘left’);
},
shift_right: function(class)
{
class.position = ((class.position + this.elements_count) == class.deal_items_count) ? 0 : class.position + this.elements_count;
class.use_pagination(class.position, ‘right’);
},
```
to
```php
shift_left: function(clazz)
{
clazz.position = (clazz.position == 0) ? clazz.deal_items_count - this.elements_count : clazz.position - this.elements_count;
clazz.use_pagination(class.position, ‘left’);
},
shift_right: function(clazz)
{
clazz.position = ((clazz.position + this.elements_count) == clazz.deal_items_count) ? 0 : clazz.position + this.elements_count;
clazz.use_pagination(clazz.position, ‘right’);
},
```
Someone tell me how this will works or there is any demo to know
[quote name=‘deMarchi’]I’m surprised that professional developers make kids mistakes and even don’t test it in different environments. So, the mistake is they used the javascript key word as identifiers. Buggy Firefox can accept this but strong IE indicates an error.
To resolve problem with IE you need replace in addons/hot_deals_block/js/jquery.deals.js :
this
[/quote]
It’s been fixed before your post in the Bug Tracker. Thanks for letting other people know. Great!
My installation (2.0.6) doesn’t have a hot deals addon.
[quote name=‘kingsleypress’]My installation (2.0.6) doesn’t have a hot deals addon.[/QUOTE]
Available only to 2.07
[url]https://www.cs-cart.com/changelog207.html[/url]
[quote name=‘joe’]It’s been fixed before your post in the Bug Tracker. Thanks for letting other people know. Great![/QUOTE]
where is the bug tracker? thanks!
[quote name=‘deMarchi’]where is the bug tracker? thanks![/QUOTE]
Top of page
* User CP
* Bug tracker
* FAQ
* Members List
* New Posts
* Quick Links
* Log Out
heh, it’s a pity. i didnt know about sucah a useful thing! thanks a lot!
[quote name=‘Darius’]Available only to 2.07
[url]https://www.cs-cart.com/changelog207.html[/url][/QUOTE]
Only for the brave!
What does it do?
[QUOTE]What does it do?[/QUOTE]
You can view it in action now on the CS-Cart Demo site home page
OK thanks. Looks nice!
[quote name=‘joe’]It’s been fixed before your post in the Bug Tracker. Thanks for letting other people know. Great![/QUOTE]
Does it resolve the image problem I mentioned? My image has irregular shapes. Some are square and some are tall.
Still not working in IE8 because the above posted fix uses clazz instead of class. Use the bug tracker fix.
[quote name=‘roban’]Still not working in IE8 because the above posted fix uses clazz instead of class. Use the bug tracker fix.[/QUOTE]
Which post has the fix in the bug tracker? Searching for ‘hot deals’ turned up nothing.
Bob
Nevermind - just found it. Bug post #1133
for me it works.
the sam is here [url]http://forum.cs-cart.com/vbugs.php?do=view&vbug_id=1133[/url]
just instead of clazz they used deal_class ))
Hello!
How do I define the picture size of the thumbnails shown. I want it to use its natural size. It keeps changing the ratio of a picture looks. Thanks!