Jump to content

leeofaccy

Member
  • Posts

    276
  • Joined

  • Last visited

Everything posted by leeofaccy

  1. Hi This forum is for the core product only. I would suggest you contact the skin author about the problem, or ask over at www.cubecartforums.org Lee
  2. Hi Have you modified anything? When you add to basket, from either the product page or from a category page, the item should be submitted, using javascript, leaving you on the same page. Lee
  3. Try going to Rebuild & Recount > Update Image Database to see if that works. Also try clearing the cache to see if that makes any difference. Lee
  4. Hi PDF is not a valid image extension. Use either jpg, gif, png for images in CubeCart. Lee
  5. leeofaccy

    Email list

    Hi Sam The reason it is not showing all email address' from all customers, is because some won't have joined the mailing list. Only the ones that have, will show in the list. If you would like to change it, try this.... Open up /admin/sources/customers/email.inc.php and find this line $query = 'SELECT title, email, firstName, lastName, type FROM '.$glob['dbprefix'].'CubeCart_customer WHERE optIn1st = 1'; Change it to $query = 'SELECT title, email, firstName, lastName, type FROM '.$glob['dbprefix'].'CubeCart_customer'; That will give you a full list of customers' first & last names and email address regardless of whether thay have subscribed to mailing list. Hope that helps Lee
  6. Hi Jeannie The reason the logo is showing twice is because you have got 2 <div id="topHeader"> in your code. You need to remove the second one (Inside pageSurround), but the closing div (</div>), for it is after the closing table tag (</table>). If your logo was still to the left, a float:left style added to the topHeaderImg class style would have worked to make the logo clickable. Beacuse your logo is now centred, you would need to create a div that 'floats' with the logo, if the page is made smaller. i.e putting a margin-left would always keep the 'clickable' bit xx amount of pixels away from the left, where as the logo would always be in the centre. Lee
  7. Hi Holly Thanks for that, it is easier to see what needs doing I take it you mean the white background surrounding the centred div? If so, you will need to edit the body style on your layout.css and add a background-image style to it, something like background-image: url (images/general/your_image.jpg). You will need to upload the image to a folder on your server, /images/general should be ok. Depnding on the image you use, will depend on how the style will need to be, ie. will it repeat or is it one big image etc. Also, you may need to alter your #pageSurround style, on the same stylesheet, to keep the background white, or the image will be visible through it. A background-color: #FFFFFF style would need to be added. Hope that helps Lee
  8. Hi John Has anything been modified? i.e. mods installed or edits by yourself. Also, could you post a screen shot of your Royal Mail settings page? Thanks Lee
  9. Hi The simplest way to change your logo is to click the Logo tab in the Admin menu. You may need to move the page to the right, but there should be a 'Browse' button next to the end of all the skins. Click Browse and locate the logo image on your pc then click 'Upload Image(s)'. You shouldn't need to delete or rename images anywhere. The logo you uploaded should now show on your store, unless something else has been changed somewhere. Lee
  10. Hi Lou Sorry I mis-read your post, I have a nasty habit of not reading posts fully!!. Can you open admin/styles/print.css and find the style named #storeLabel and post it up here. Thanks Lee
  11. Hi Open /admin/sources/orders/print.inc.php Find this..... <img src="<?php echo $glob['rootRel']; ?>images/getLogo.php?skin=<?php echo $config['skinDir']; ?>" alt="" /> Add a width attribute, like so (Change the value to suit your invoice, used only for this example) <img src="<?php echo $glob['rootRel']; ?>images/getLogo.php?skin=<?php echo $config['skinDir']; ?>" alt="" width="200px" /> Hope that helps Lee
  12. Open /includes/content/cart.inc.php and find this // calculate shipping when we have reached step2 if ($_GET['_a'] == 'step2' && $orderTangible) { You need to comment out some code and add a '(' before $orderTangible, like so // calculate shipping when we have reached step2 if /*($_GET['_a'] == 'step2' && */($orderTangible) { Lee
  13. Hi Ash You see n/a next to shipping if you are not logged in. Cubecart need to know where the item is going before it can give you the shipping details i.e The postage for shipping abroad will be higher than shipping locally. If you only ship locally or just use a flat rate for postage to anywhere, there is a small hack that will show the postage price without being logged in. Lee
  14. Hi In Admin Home (From the menu), there is a box to enter the key. Lee
  15. Hi Ali Yes, I see what you mean. Find these styles on your style.css and delete them: .txtPrice, .txtOldPrice & .txtSale Replace with these. (You could of course just find them and edit them to match the ones below) .txtPrice { font-size: medium; } .txtOldPrice { text-decoration: line-through; font-size: 12px; } .txtSale { color: #FF0000; font-size: medium; } It will slightly affect the text of your latest products on the homepage, although you are planning to change that, unless you add the .txtPrice span style to your latest products too, found on skins/classic/styleTemplates/content/index.tpl, like so (Around line 19) <span class="txtPrice">{TXT_PRICE} </span><span class="txtSale">{TXT_SALE_PRICE}</span> Lee
  16. Hi Open your categories.tpl for your skin and comment out ({DATA.noProducts}) like this <a href="index.php?_a=viewCat&amp;catId={DATA.cat_id}">{DATA.cat_name} <!-- ({DATA.noProducts})--></a> Hope that helps Lee
  17. Hi You could just change it through the Languages section, in the Admin menu. Languages>en>Global Common Phrases>misc_1stClass and also misc_2ndClass Change the bottom value (The top one is the default if you need to revert back), then click Modify Language File at the bottom Lee
  18. Hi Ali Open skins/classic/styleTemplates/content/viewProd.tpl and find this (around line 52) <strong>{LANG_PRICE}</strong> {TXT_PRICE_VIEW} <span class="txtSale">{TXT_SALE_PRICE_VIEW}</span> Change it to.... <strong>{LANG_PRICE} </strong><span class="txtPrice"> {TXT_PRICE_VIEW} </span> <span class="txtSale">{TXT_SALE_PRICE_VIEW}</span> Open your style.css and create a new style, like this .txtPrice { font-size: medium; color: #CC0000; } That will give you red text larger than it is now but you may want to edit the style to suit your website Hope that helps Lee
  19. If you use a shipping module that doesn't require countries ISO codes to be entered, there is a very simple solution I posted on the sister site. The link is here for those who would like to use it http://www.cubecartforums.org/index.php?showtopic=13978&pid=60077&mode=threaded&show=&st=#entry60077 Lee
  20. Hi Yes, no problem.....Try this. Add the 'a class' after the topHeader id, like so <div id="topHeader"> <a class="topHeaderImg" href="index.php"></a> Add the following style to your layout.css .topHeaderImg { float: left; margin-top: -68px; width: 300px; height: 110px; outline: none; } You may need to adjust the height and/or width on the style to fit your logo if it is bigger/smaller than the default. Lee
  21. Hi Corrine The reason shipping prices do not show is because the user isn't logged in and cucbecart can't work out the shipping cost until it knows where the delivery address is. You can change the text that appears, instead of 'n/a' through the Languages section in your Admin Panel, to something like, 'Calculated at next step'. Which shipping module(s) do you use? Do you just ship to one country, or international as well? Lee
  22. Hi Under Maintenance tab, click Rebuild & Recount in the admin menu. Then try clicking Update Image Database. That may help. Lee
  23. Hi Len In General Settings, under the Stock tab there is this option Allow out of stock purchases? Just set to No. Also, in Add/Edit Products, set Use stock level? to Yes. Lee
×
×
  • Create New...