Quote:
Jeanne, thank you so much for your kind words, many congratulations on your newborn too
|
TY! TY! She has been a blessing.
Quote:
It will show all zeros, so you'd have to either disable it, or create a new countdown event.
|
We'll put that on the wishlist - a configurable message or where it automatically turns off.
Quote:
Yes, products and news feeds are generated manually.[q/uote]
Thought so but had to ask. Thanks!
Quote:
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!'); }
|
Too cool! You have a fix for this!
Quote:
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>
|
Worked like a charm!
Quote:
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;">
|
Got that one. =)
Quote:
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
|
|
Will check out the other thread, they're not overlapping the columns, they are overlapping each other in the special offer box at the top of theme.
Have a couple other questions (yeah, I sit around and think of things to ask, lol), will put them into another thread.
Again, many thanks, I will be your biggest referrer!