Jump to content

leeofaccy

Member
  • Posts

    276
  • Joined

  • Last visited

Everything posted by leeofaccy

  1. Thanks for pointing that out Ankush It was a long day yesterday!! I have now edited the post. Lee
  2. Do you mean you want to replace the default image with one of your own, for the categories? If you do, you can do this by going to View Categories in Admin Panel. Click Edit then Browse/Upload Image and select your own image. To remove the numbers, in brackets, of products available in a category you need to edit YOUR_SKIN/styleTemplates/content/viewCat.tpl. Find this... <!-- BEGIN: sub_cats_loop --> <div class="subCat"><a href="index.php?_a=viewCat&amp;catId={TXT_LINK_CATID}" title="{TXT_CATEGORY}"><img src="{IMG_CATEGORY}" alt="{TXT_CATEGORY}" border="0" /></a><br /> <a href="index.php?_a=viewCat&amp;catId={TXT_LINK_CATID}" title="{TXT_CATEGORY}">{TXT_CATEGORY}</a> ({NO_PRODUCTS})</div> <!-- END: sub_cats_loop --> Remove ({NO_PRODUCTS}) next to the last closing div. It should look like this... <!-- BEGIN: sub_cats_loop --> <div class="subCat"><a href="index.php?_a=viewCat&amp;catId={TXT_LINK_CATID}" title="{TXT_CATEGORY}"><img src="{IMG_CATEGORY}" alt="{TXT_CATEGORY}" border="0" /></a><br /> <a href="index.php?_a=viewCat&amp;catId={TXT_LINK_CATID}" title="{TXT_CATEGORY}">{TXT_CATEGORY}</a></div> <!-- END: sub_cats_loop --> Lee
  3. Open YOUR_SKIN/styleTemplates/global/index.tpl. Cut {MAIL_LIST} from where it is in the template and paste it where you would like it to appear. Lee
  4. Have you set your price in GBP, for example, and your store currency set to Euros? To remove the tax, go to View Products>Edit in your Admin Panel and in the drop-down next to Tax Class, select Tax Exempt. Or if you are listing a new product just do the same with the drop-down. Lee
  5. It does here......under where it says "Upgrade is recommended." http://forums.cubecart.com/index.php?showtopic=41180
  6. Not sure why that is happening. If you want to put up your store URL I will have a look.
  7. I think it is an error in includes/content/reg.inc.php around line 185. Find this code if (preg_match('/^http(s?):\/\//i', $redir) && !preg_match('/^'.$glob['storeURL'].'|^'.$config['storeURL_SSL'].'/i', $redir)) { die("Redirect URL not allowed!"); Remove one of the / here.... http(s?):\/\//i', $redir). It should now look like this if (preg_match('/^http(s?):\/\/i', $redir) && !preg_match('/^'.$glob['storeURL'].'|^'.$config['storeURL_SSL'].'/i', $redir)) { die("Redirect URL not allowed!"); Hope that does it Lee
  8. Have you filled in all required fields marked with a * i.e name, address, tel no, etc? If you check the 'I Do Not Wish To Create An Account' box, there is no need to create an account by entering a password. All other fields must be filled in that have a *.
  9. The double quotes work for me. I can update products with no error. Here is the bug fix from CC and you can see the UTF-8 has double quotes. http://bugs.cubecart.com/view.php?id=2063
  10. Try this, it could work... In your Admin panel go to Rebuild & Recount. 3rd tab down is Rebuild category product count. Click Update. If that does't work, it might be worth deleting that category, re-making it and putting the products back again, as you haven't got a lot of products in there it shouldn't take too long to do. Lee
  11. Open admin/sources/products/index.inc.php. Find AROUND line 960, this code <td align="left"><input name="prod_metatitle" type="text" size="35" class="textbox" value="<?php if(isset($results[0]['prod_metatitle'])) echo htmlentities($results[0]['prod_metatitle'],"ENT_QUOTES","UTF-8"); ?>" /></td> Unquote "ENT_QUOTES". It should now look like this <td align="left"><input name="prod_metatitle" type="text" size="35" class="textbox" value="<?php if(isset($results[0]['prod_metatitle'])) echo htmlentities($results[0]['prod_metatitle'],ENT_QUOTES,"UTF-8"); ?>" /></td> Clear cache and try it, it should work. Lee
  12. Hi Ive had a look with Firebug and it looks like you have an error in your code, in viewProd.tpl. You are missing {VAL_ROOT_REL} on a couple of lines. It should look like this <p class="right" id="rating_p"><span>{LANG_RATING}</span> <img src="images/general/px.gif" name="star0" width="15" height="15" id="star0" onmouseover="stars(0,'{VAL_ROOT_REL}skins/{VAL_SKIN}/styleImages/icons/rating/');" style="cursor: pointer; cursor: hand;" alt="" /> <!-- BEGIN: review_stars --> <img src="skins/{VAL_SKIN}/styleImages/icons/rating/{VAL_STAR}.gif" name="star{VAL_STAR_I}" width="15" height="15" id="star{VAL_STAR_I}" onmouseover="stars({VAL_STAR_I},'{VAL_ROOT_REL}skins/{VAL_SKIN}/styleImages/icons/rating/');" style="cursor: pointer; cursor: hand;" alt="" /> <!-- END: review_stars --></p> Lee
  13. There is now a file showing the differences found here http://forums.cubecart.com/index.php?showtopic=41180 Lee
  14. There is an Updated-files txt document in the archive.
  15. Thanks for that Roger. I have tested it on an earlier version 4.3.0 and the problem is there, but on a later version everything is Ok. Lee
  16. Yes I see what you mean. I have just put an item in my basket, clicked to checkout, then clicked continue shopping and added another item to my basket. When I click to checkout again I get 2 order numbers showing in admin. The order should show pending until payment is made, even if you keep adding to it. The first order does show cancelled and the second pending but surely if a customer keeps going back and adding items, there shouldn't be lots of cancelled orders showing in admin and the customer ending up with lots of order acknowledgements in their email.
  17. Try clearing your cache in Rebuild & Recount under the Maintenance tab in your Admin Panel
  18. If you want add (Free shipping) after the $0.00, try and use the Free Shipping module. That also has a minimum order amount box. It is the subtotal you enter, so a quick calculation to minus the tax (If you sell taxable goods), off the amount you want to set free shipping at, needs to be done. As far as changing the USPS Priority etc, I'm not too sure about. It is probably on the calc.php in the module. As I don't have an account with USPS I cannot check it for you. Lee
  19. Hi If it is the white background after clicking the 'Glass' link, where the subcategories are, you need to change the height on your .subCat style in your layout.css to 70px, or to whatever value you choose. Also, to stop the top of the white box overlapping where it says 'glass', put 10px of margin-top on the style .subCats. They are 2 different styles .subCat and .subCats. As for the text, I'm not too sure where you mean with the black on black... Lee
  20. I think it is used when you have more than one image for a product.
  21. If you want to change the way the form looks, you need to edit /modules/gateway/Authorize_AIM/form.tpl. Be careful you don't remove anything needed by the module in order for it to process payment. If you are using the latest version of IE, have you tried the Compatibilty View button? This can alter the way the page is viewed a little.
  22. Apologies, you did say in your original post that it was the old sales data; my fault for not reading it correctly!! So, I take it you have the setting for Popular Products set to Number of Sales? But it is still showing the old data. Have you tried Rebuild number customer orders? If you go to google and put "Rebuild number customer orders" into the search box you will find a result that explains what things do in Rebuild & Recount. Maybe the sales for your 'old' items is still greater than the sales the your 'new' ones therefore still showing in the Pop Prods box. I usually set Pop Prods to show Number of Views so I am not sure why your old data is still showing, as I don't have that problem. Hope you get it sorted! Lee
  23. Hi Go into your Admin Panel and in General Settings, under the Styles & Misc tab find Source for popular products data: and change it to Number of Views. You prob have it set to Number of Sales. Lee
  24. Hi It looks like you have missed out a / when setting up your ssl. In your HTTPS Root Relative Path, what does it say? It should be /perfumevaljc.com/. It looks you have missed off the end slash. Lee
  25. Have you tried clearing the cache? Admin Panel/Maintenance/Rebuild & Recount/Clear Cache
×
×
  • Create New...