Jump to content

fantastichearts

Member
  • Posts

    56
  • Joined

  • Last visited

Everything posted by fantastichearts

  1. Also on this area I have a lot of handmade items so I am supposed to submit this. Do I just add False to one of the boxes? In categories where unique product identifiers are required, merchants must submit the ‘identifier exists’ attribute with a value of FALSE when the item does not have unique product identifiers appropriate to its category, such as GTIN, MPN, and brand. When to include: Required according to the Unique Product Identifier Rules for all target countries except for Canada, India, and Russia. This attribute is recommended for Canada, India, and Russia. Type Boolean: TRUE or FALSE Text/Tab delimited FALSE XML <g:identifier_exists>FALSE</g:identifier_exists> Important: When the attribute is not specified, the default value is TRUE.
  2. I am adding this here as it is related. I have noticed that although in 5.3 they have added the Google category in to the list but the brand part has disappeared and cannot be entered now. You also need brand when uploading to google. How do we get this back. Miscellaneous UPC Code EAN Code JAN Code ISBN Code GTIN Code MPN Code Google Category
  3. This is very concerning that you have don this by Devellion. Can we understand why?
  4. No did not do that so not sure why this started to appear as it did not do it before.
  5. Not sure why but the £ symbol in the option part of an order does seem to show in the order summary page of admin so when I print out does not lo0k too good. Never used to do it so not sure why. Any ideas? You can see below thw main price is fine but the option that are added have the +� symbol now. This happens on all orders. 1 x Saracens Colours Charm Bracelet - SARYG9GL30 (£16.95) £16.95 Bracelet Design: Black, Red and White Beads Bracelet Size: 22cm Dangle Choice: Heart Extras: Add 2nd Dangle Charm: Rugby Ball (+�1.00) Extras: Add 3rd Dangle Charm: Rugby Ball (+�1.00)
  6. Anyone have an idea on this as I have been getting the same problems..
  7. Thanks..how do you code this below to show either nothing for ship date or the words : 'Waiting to be dispatched' when there is no date. At the moment if it not dispatched it will show: 0000-00-00 {$LANG.orders.shipping_method}: {$SUM.ship_date}
  8. I would like on the receipt page (content.receipt.php) the similar information that is in the admin area on the order summary page. Dispatch Date Shipping Method Courier Tracking Code ( I have got this and used the code here to actual link the tracking code) http://forums.cubecart.com/topic/46445-setting-up-google-trusted-site/ Gateway Any suggestions as I can seem to work it out?
  9. Thank you to bsmither who sorted this out. The issue as {$SUM.total} adds the £ symbol. Therefore to strip this out you use the suggestion below. Where you have {$SUM.total}, use this: {$SUM.total|regex_replace:"/[^0-9.]/":""} This should strip out anything not a number or period.
  10. Thanks for this. The only issue seems to be the total as it is passing 0. I presume it is to do with what you said below. Can you see any work around this?
  11. Hi, I need to add the Trusted shop buyer protection to my content.receipt.php file. http://www.trustedshops.com/tsdocument/_INT_MANUAL_CLASSIC_en.pdf (see page 7 for more details) The suggested HTML code is and I need to replace is as follows but I am not sure how to code the elements I need to replace in red e.g {value email} <table width=400 border="0" cellspacing="0" cellpadding="4"> <tr> <td width="90"> <a href="https://www.trustedshops.co.uk/shop/certificate.php?shop_id=TS_shop_id" target="_blank"><img border="0" src="https://www.trustedshops.com/trustmark/TS_shop_id.png" title="Trusted Shops Seal of Approval - Click to verify." alt="Trusted Shops Seal of Approval - click to verify."></a> </td> <td align="justify"> <form id="formTShops" name="formTShops" method="post" action="https://www.trustedshops.com/shop/protection.php" target="_blank"> <input name="_charset_" type="hidden" value=""> <input name="shop_id" type="hidden" value="{value shop_id}"> ( I have my shop id) I presume I just add it here <input name="email" type="hidden" value="{value email}"> <input name="amount" type="hidden" value="{value amount}"> <input name="curr" type="hidden" value="{value curr}"> <input name="paymentType" type="hidden" value="{value paymentType}"> <input name="kdnr" type="hidden" value="{value kdnr}"> (from manual says not compulsary) <input name="ordernr" type="hidden" value="{value ordernr}"> We offer you the Trusted Shops Buyer Protection as an additional service. We cover all costs for this guarantee. All you have to do is register! <br><br> <input type="submit" id="btnProtect" name="btnProtect" value="Register for Trusted Shops Buyer Protection"> </form> </td> </tr> </table> Tanks for any help.
  12. :yeahhh: That worked. Thank you so much....it is so simple when you know how!!!
  13. I am trying to add the seller rating button into my emails send from the store. I have been sent this so I want to do it the second method as as adding PHP to template files is not good. but not sure where to add and as suggested to identify your template controller script to assign two more variables to your smarty object $smarty->assign('ts_email', urlencode(base64_encode($billing['email']))); $smarty->assign('ts_order_id', urlencode(base64_encode($data['cart_order_id']))); Which I am assumming should be: $GLOBALS['smarty']->assign('ts_email', urlencode(base64_encode($billing['email']))); $GLOBALS['smarty']->assign('ts_order_id', urlencode(base64_encode($data['cart_order_id']))); Any help appreciated as I am sure someone must of done it before. ______________________________________________________________ 1. I assume your email template is using smarty because of the variable notation {$BILLING.email} inside your code snippet. Inside a smarty template you should use a slightly different way to embed PHP functionality http://www.smarty.net/docsv2/en/language.function.php.tpl): {php} $baselink = '<a href=" https://www.trustedshops.co.uk/buyerrating/rate_XD42E98E62EFDDF2A58E43A48DE7826F2.html&'; $billingArray = $this->get_template_vars('BILLING'); $ts_email = urlencode(base64_encode($billingArray['email'])); $dataArray = $this->get_template_vars('DATA'); $ts_order_id = urlencode(base64_encode($dataArray['cart_order_id'])); echo $baselink . 'buyerEmail=' . $ts_email . '&shopOrderID=' . $ts_order_id . '"> target="_blank" title="Submit Buyer rating"><img alt="Submit Buyer rating" src="images/source/SiteImages/bewerten_en.gif" /></a></p>'; {/php} 2. Please be aware that using PHP inside smarty is not the pure teaching of smarty. Sometimes systems are configured to actually not allow the {php}-tag. The more sophisticated approach would be to identify your template controller script to assign two more variables to your smarty object, e.g.: $smarty->assign('ts_email', urlencode(base64_encode($billing['email']))); $smarty->assign('ts_order_id', urlencode(base64_encode($data['cart_order_id']))); and output them inside your template: <a href=" https://www.trustedshops.co.uk/buyerrating/rate_XD42E98E62EFDDF2A58E43A48DE7826F2.html&buyerEmail={$ts_email}&shopOrderID={$ts_order_id}" target="_blank" title="Submit Buyer rating"><img alt="Submit Buyer rating" src="images/source/SiteImages/bewerten_en.gif" /></a></p>
  14. I have stayed on 5.08 for now but have used this to comply with the law which I feel is slightly better than the box across the top. http://www.heartinternet.co.uk/eu-cookie-law.html .
  15. All, What are views on your various CC stores to complie with the new EU directive that is about to put in place. This article below summarises some of the options. http://econsultancy.com/uk/blog/9202-eu-cookie-law-three-approaches-to-compliance Not sure if it something that the CC will/or can implement as part of their software? The major date for your diary is May 26th 2012 when the law will be enforced in the UK. The Information Commissioner’s Office will be the body responsible for monitoring the enforcement of the law and has been consulting with the digital industry to ensure a robust, self-regulatory framework is in place to address the main concerns of the law. http://www.ico.gov.uk/ (as you can see they have already implemented a permission box)
  16. When my email are been sent out only the first product is been shown. The relevant code of the email is below. What am I doing wrong? --------------------------------------------------------------------------------------- {foreach from=$PRODUCTS item=product} {/foreach} Item Quantity Cost {$product.name} {$product.quantity} {$product.price} Shipping: ({$DATA.ship_method}) {$DATA.shipping} Discount: {$DATA.discount} Subtotal: {$DATA.subtotal} Order Total: {$DATA.total}
  17. It seems fine on mine. I have upgraded on 5.04 but using a different skin. Try if for yourself my site is http://www.fantastichearts.com
  18. Same problem. The only time I get emails is if the customer pays with Paypal or if I change the pending to completed. Jamie I cannot offer any suggestions, but I have the same problem with my demo install. It is disappointing there's has been no solutions suggested, despite this being experienced by a number of users. Geoff Please add to my bug report and it might get higher up the priority list... http://bugs.cubecart.com/view.php?id=2940
  19. I have noticed no email are sent if you use the print order form or no payment is received. I have raised this as a bug but no response yet.
  20. Not the html code you need to look in the html code number like this "UA-25001027-1" and put it in the box.
  21. I am using 5.01 and it works fine for me.
×
×
  • Create New...