Christos Teriakis |
09-13-2011 01:59 PM |
Quote:
Originally Posted by qpurser
(Post 2245331)
Hey Chris,
of course you deserved a couple days vacation!!!
|
The problem is that my daughter was caring to have ....free vacations, as she is already 31yo. But you know "Daddy is paying....":D
Quote:
Originally Posted by qpurser
(Post 2245331)
I just guess a couple of us were freaking out where you are..lol
|
Too old to say that I'm young, ....too young for RIP :D
Quote:
Originally Posted by qpurser
(Post 2245331)
Anyways I posted a couple issues but to make it easier for you let me put them together here:
- When an item is sold and both members write a review the review never shows up. The rating seems to work.
|
- Check if the cronjob is working. Reviews are activating with the help of the cron job when the time frame for review has expired, or before it if both sides has post review.
Quote:
Originally Posted by qpurser
(Post 2245331)
- Carousel is not working even when activated in the CP
|
Maybe there is a conflist with other jquery library. Can't you see anything, or you can see the photos one below the other? In this case the carousel stylesheet is missing or didn't load.
Quote:
Originally Posted by qpurser
(Post 2245331)
- Something I need: Some members give away items for free. Van we have the option to set the price to zero?
|
An easy way to do this is to modify the microclassifieds_addedit_item template. Find and remove:
Code:
if(!isNaN(document.forms["vbform"].price.value) == 0) {
alert('{vb:var vbphrase.microclassifieds_error_price_number}');
return false;
}else if(document.forms["vbform"].price.value ==0){
alert("{vb:var vbphrase.microclassifieds_error_price_zero}");
return false;
}
Its nearly on the top of the template, around line 10. Removing it the price can be left 0.
Chris
Thanks again for your hard work
Michael[/QUOTE]
|