Jump to content

leeofaccy

Member
  • Posts

    276
  • Joined

  • Last visited

Everything posted by leeofaccy

  1. You won't get any help on here using a nulled version of the software!
  2. This will show the discount, if there is any, and hide it if not. <div id="totals"><?php if ($result[0]['discount'] > 0) { ?> <div class="total"><?php echo $lang['admin']['orders_discount'];?> <strong><?php echo priceFormat($result[0]['discount'], true);?></strong></div> <?php } ?> Lee
  3. Hi Al Have you checked to see if they are assigned on the include file? Lee
  4. You need to open your includes\boxes\topMenu.inc.php and assign the values to the text between the curly brackets that are on your \styleTemplates\boxes\topMenu.tpl Try this.... <?php if (!defined('CC_INI_SET')) die("Access Denied"); ## include lang file $lang = getLang('includes'.CC_DS.'boxes'.CC_DS.'topMenu.inc.php'); $box_content = new XTemplate ('boxes'.CC_DS.'topMenu.tpl'); $box_content->assign('LANG_HOME', $lang['topMenu']['home']); $box_content->assign('LANG_NEW_CUSTOMERS', $lang['topMenu']['new_customers']); $box_content->assign('LANG_SIGNIN', $lang['topMenu']['signin']); $box_content->assign('LANG_MY_ACCOUNT', $lang['topMenu']['my_account']); $box_content->assign('LANG_CUSTOMER_SERVICE', $lang['topMenu']['customer_service']); $box_content->parse('topMenu'); $box_content = $box_content->text('topMenu'); ?> Also, remove the comma from the end of this line in your language file 'customer_service' => "Customer Service", Lee
  5. Hi Holly Open your layout.css stylesheet and find this style (about line 114) .subCat { float: left; height: 50px; padding: 8px; text-align: center; width: 110px; } Remove the height value and the page will drop to fit the image in. Lee
  6. Hi Al On the product page, there should be a link that says Write Review / Comment. Once clicked the customer can then fill in their opinion on the product, then click Submit Review. In your admin panel menu, there is a link, Product Reviews. In there, you can then Publish/Edit or Delete the review/comment. Once published it should show under the product. If that is of no help, post your URL and we can take a look. Something may have been changed on your viewProd.inc file, as this controls the .tpl file. Lee
  7. Hi Colin Put the code in the head section of YOUR_SKIN/styleTemplates/global/index.tpl Lee
  8. Hi You will find the file here /admin/sources/orders/print.inc.php Lee
  9. Hi Claudia It looks ok to me. I checked it in IE 7,8 and 9 and everything seems fine. Lee
  10. Probably never .... To fix it, I downloaded the new version from the Lightbox2 website and overwritten the following files in the js folder builder.js effects.js lightbox.js prototype.js scriptaculous.js
  11. Try this tool, but REMOVE IT FROM YOUR SERVER after using it. http://www.cubecartforums.org/index.php?autocom=downloads&showfile=607 Lee
  12. Hi William This forum is for the core products only. You are probably best off asking over on the sister site. http://www.cubecartforums.org Lee
  13. Hi Alberto If you want just the price moving to the top, open YOUR_SKIN/styleTemplates/content/viewProd.tpl and find a line that looks something like this. It may be slightly different depending on your skin. <p> <strong>{LANG_PRICE}</strong> <span class="txtPrice">{TXT_PRICE_VIEW}</span> <span class="txtSale">{TXT_SALE_PRICE_VIEW}</span> </p> If you would like to keep the price at the bottom too, copy that code and paste it where you want it, higher up. If you do not want to keep the price at the bottom, cut the code and paste it in. Lee
  14. Hi Have a look at this post on the sister site. There are instructions on what to do http://www.cubecartforums.org/index.php?showtopic=15117 Lee
  15. Hi Jules You can add this in Countries & Zones in the admin menu. Lee
  16. This happens because Cubecart doesn't know where you are shipping the item to, if the user isn't logged in. One customer may live in the USA and another in the UK, so it is highly unlikely that the shipping price will be the same to both customers. So, until the customer either logs in or enters an address, the shipping will show n/a. You can change this to say something different through the Language section, or there is a small 'hack' you can do if you only use a shipping module where you don't enter country codes (ISO code), such as your Flat Rate. Here is a link to a post on the sister site http://www.cubecartforums.org/index.php?showtopic=13978 Lee
  17. Hi Sam There isn't anywhere to add shipping prices on the add/edit product pages. When you set the shipping price in the Per Item shipping module, each item will cost the amount you enter there, to ship. The shipping price is set in the module, not on the product page. For example, if you set the postage cost to £2.50 in the Per Item shipping module, each item will cost £2.50. If your customer orders 3 products, the shipping would be £7.50, 4 products £10, etc, etc. Lee
  18. Hi I have achieved this using CSS, but it wouldn't be very practical to explain exactly what I have done because it would be determined on the style of your site and/or what skin you are using. Are you ok with CSS? If so, I altered some of the styles on layout.css, between Start Cross-Browser DHTML Menu and End Cross-Browser DHTML Menu. Hope that helps a little Lee
  19. Hi If there is some code before the opening PHP tags in index.php in your store root folder, remove it, including any white space before the tags. (<?php) Also, upgrading your store to the latest version is a good idea and if you can upgrade your PHP version to the latest, through your webhosting control panel, do that too. Lee
  20. Hi In the admin menu, under the Documents tab, click Site Documents. Click the Add New link (Top right of page) and you can use the editor to make a new page. This will add the link to that menu. Or, if you have the page already made or you want to link to an external page, you could hard code the links into skins/YOURSKIN/styleTemplates/boxes/siteDocs.tpl Lee
  21. Hi You could set your shipping module to Tax Exempt, but add the tax into the shipping charge. ie. If your shipping cost is $1 and your tax is say 15%, set the shipping price to $1.15, then the tax is included rather than added on after. Lee
  22. You can get single domain SSL for about $9-10 p/year. Just Google 'cheap ssl' and have a look round. It IS worth getting one! Lee
  23. Are you using shared SSL? I have noticed this before on stores that use it. If you do, it is worth spending a few pounds on a dedicated SSL cert. Lee
  24. It is maybe the form action. <form action="{CURRENT_URL}" method="post" id="prod{PRODUCT_ID}" name="addtobasket" target="_self"> This should keep you at the current location. Have a look at your viewProd.tpl and see if yours looks like the above (Around line 13).
  25. Try changing to one of the stock skins and see if the problem is still there. If not, then it will be a skin issue. Lee
×
×
  • Create New...