Working on a client site/ SD Payments page it became apparent that the Sellerdeck Payments page is not responsive. An original payments page I had saved on my PC had
at line 5 the expresssion:
But in the Sellerdeck payments page (https://online.sellerdeckpayments.com/) (right click anywhere on clear space and select 'View source') you will see at line 5 the above expression is missing.
If you open OCCActPayScriptTemplate.pl from the Common OCC folder in the site folder in Notepad++ lines 224 - 230 you will see this block:
It is suggested that you need to add this line:
so it looks like this:
No warranty express or implied. Just for discussion.
at line 5 the expresssion:
Code:
<meta name='viewport' content='device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no'/>
If you open OCCActPayScriptTemplate.pl from the Common OCC folder in the site folder in Notepad++ lines 224 - 230 you will see this block:
Code:
AddPostValues('?', 'ekashu_seller_id', $sMerchantID, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_amount', $sConvertedAmount, $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_currency', $::PriceFormatBlob{SINTLSYMBOLS}, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_seller_key', substr($sMerchantName,0,8), $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_reference', $::sOrderNumber, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_hash_code_type', 'SHA1', $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_hash_code_version', '1.0.0', $ALWAYS, $NOENCODE); #
Code:
AddPostValues('&', 'ekashu_viewport', 'device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no', $ALWAYS, $NOENCODE);
Code:
AddPostValues('?', 'ekashu_seller_id', $sMerchantID, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_amount', $sConvertedAmount, $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_currency', $::PriceFormatBlob{SINTLSYMBOLS}, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_seller_key', substr($sMerchantName,0,8), $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_reference', $::sOrderNumber, $ALWAYS, $ENCODE); AddPostValues('&', 'ekashu_hash_code_type', 'SHA1', $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_hash_code_version', '1.0.0', $ALWAYS, $NOENCODE); AddPostValues('&', 'ekashu_viewport', 'device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no', $ALWAYS, $NOENCODE); #
Comment