Jeanne, thank you so much for your kind words, many congratulations on your newborn too
Quote:
1.) What happens when the countdown reaches it target? For instance, we have "Christmas is coming!", do I have to get on and disable the countdown on Christmas or will it disable itself?
|
It will show all zeros, so you'd have to either disable it, or create a new countdown event.
Quote:
2.) Do I need to regenerate the product and news RSS each time I add/delete? Assuming so since there's a regenerate button, but I like to cover the bases.
|
Yes, products and news feeds are generated manually.
Quote:
3.) More of a comment/wishlist of sorts here... The Smart Comments will not accept an email address with a hyphen. Is this fixable or could it be added for the next revision?
|
skin/common_files/modules/Smart_Comments/classes/reply.class.php
Replace...
Code:
if(!preg_match("/^[^0-9][A-z0-9_]+([.][A-z0-9_]+)*[@][A-z0-9_]+([.][A-z0-9_]+)*[.][A-z]{2,4}$/", $email)) { $this->action['result'] = 'error'; array_push($text,'Invalid email address!'); }
With...
Code:
if(!preg_match("/^[^0-9][A-z0-9_-]+([.][A-z0-9_-]+)*[@][A-z0-9_-]+([.][A-z0-9_-]+)*[.][A-z]{2,4}$/", $email)) { $this->action['result'] = 'error'; array_push($text,'Invalid email address!'); }
Quote:
4.) Call me a moron, but my "submit comment" button begins to load with the page and then disappears. Any ideas?
|
That's probably down to the javascript used to render rounded corners in IE.
I will try and fix that, but in the meantime you can comment out the code in
red below in
skin/common_files/customer/service_css.tpl
Code:
<style type="text/css">
.comments .text, .comments .info a.comment-reply, #cancel-comment-reply a, #respond #submit, .pagination a.number { behavior: url({/literal}{$SkinDir}{literal}/modules/Smart_Comments/css/pie.htc); }
</style>
While you're there, this fixes an issue if you have clean URLs enabled...
skin/common_files/modules/Smart_Comments/classes/reply.class.php
Replace...
Code:
<form action="?'.$_SERVER['QUERY_STRING'].'" method="post" name="comment" onsubmit="VF_comment();return false;">
With...
Code:
<form action="'.$_SERVER['QUERY_STRING'].'" method="post" name="comment" onsubmit="VF_comment();return false;">
Quote:
5.) Out of laziness I will ask about my special offer images overlapping... I think this is due to my images being too large (I am using the liquid template which has more than enough room for them), would this cause the two images to overlap?
|
If you're having trouble with thumbnail sizes, try this...
http://forum.x-cart.com/showpost.php?p=304007&postcount=78
If your thumbnails are overlapping the columns, look for this code in skin/smart_template/custom/css/common.css
Code:
ul.row_view li .product_block .thumbcol { float: left; width: 135px; /* Image Column Width */ }
ul.row_view li .product_block .thumbcol img { margin: 0 0 10px 0; }
ul.row_view li .product_block p.desc { margin-top: 0; margin-left: 135px; /* Image Column Width */ }
ul.row_view li .product_block p.details { margin-left: 135px; /* Image Column Width */ }
I really appreciate your comments, thank you
