- This topic has 1 reply, 2 voices, and was last updated 13 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › W3C Validator reports error in BuyNow button code.
The tag for the hidden field “rm” doesn’t have a self-closing ‘/’ before the closing ‘>’, so it’s not valid XHTML.
It can be fixed by a very simple patch:-
--- eStore_misc_functions.php 2011-08-02 15:23:58.000000000 +0100
+++ /tmp/eStore_misc_functions.php 2011-08-26 12:42:19.000000000 +0100
@@ -503,7 +503,7 @@
if (get_option('eStore_display_tx_result'))
{
- $output .= '<input type="hidden" name="rm" value="2">';
+ $output .= '<input type="hidden" name="rm" value="2" />';
}
if(empty($ret_product->ref_text))
{
Thank you… fixed.