Jump to content

Big Spender

Member
  • Posts

    118
  • Joined

  • Last visited

Everything posted by Big Spender

  1. The background position is wrong in the colourbox CSS, changing those around fixes it.
  2. You are missing the code for: - File: admin\skins\default\templates\login.php from the change log..?
  3. Hi, Has anyone had any problems with colorbox and magnify stopping work when creating your own skin? Works fine in Vanilla which I have based my skin off, I haven't touched ANY of the code for it, the CSS, the JS, nothing - and it's stopped working! When you click the 2nd, 3rd, etc image it just loads it in a new window, same for the big image... The WEIRD thing is that it works fine in admin. Can't find any help online anywhere? Anyone had similar problems? Thanks,
  4. We've added lots of manufacturers to our CubeCart 5.0.6, while they are showing upon editing a product, the 'manufacturers' section from the left hand admin menu seems to only show the first 10..? Would submit as a bug however the bug tracker seems to have been taken offline atm.
  5. First make your declaration in your skin via /templates/main.php: - {$YOUR_BOX} Then open /classes/gui.class.php Find this text: * Display random products box You will find the code for this box, simply copy all the code and paste to create a new box. In the code you have just pasted you will need to change: private function _displayRandomProduct() { to private function _displayYourBox() { You also need to change: - $content = $GLOBALS['smarty']->fetch('templates/box.featured.php'); $GLOBALS['smarty']->assign('RANDOM_PROD', $content); To: $content = $GLOBALS['smarty']->fetch('templates/box.yourbox.php'); $GLOBALS['smarty']->assign('YOUR_BOX', $content); And create the file: templates/box.yourbox.php You can strip out the random products PHP code as you'll probably just want to edit the template to display static content like I did, but it's upto you. You can do this like this: - /** * Display test box */ private function _displayYourBox() { $content = $GLOBALS['smarty']->fetch('templates/box.yourbox.php'); $GLOBALS['smarty']->assign('YOUR_BOX', $content); }
  6. OK, getting closer but I guess I'll need to more digging if I look in gui.class then I still don't find a reference to any of the standard boxes such as {$MAIL_LIST}, if I can find where that is defeined then I'm sure it will be plain sailing.......... I am trying to do something similar - did you find where {$MAIL_LIST} is defined? See my guide @
  7. Hi, Sorry no unfortunately not as this is just for shipping, my problem as far as I can see is a bug with the tax calculations and/or the output from the checkout, should'nt really need a third party module to sort this.
  8. I'm a little unsure what you mean with your reply... but attached is a screenshot of my taxes admin page. Now I figured the way to do this would be to add in all the countries (starting with the USA) that I don't want to charge or display tax for... as just not declaring them at all seems to still add on the tax. If I use Standard Tax but set the rate to 0% this works on the front end, as it shows tax at £0.00 to the customer but then when you go through to the admin panel and view the order details it is displaying the tax... in my case for a particular order I made (£0.15) If I use Tax Exempt instead it does the exact same. Am I doing something wrong or this a bug?
  9. I have tax of 20% setup on UK and Europe countries and then no tax setup on a 'rest of world' country e.g. United States. When I test an order from a US customer the checkout displays the order total with no mention of tax (as it should): - Subtotal: 0.74 Shipping: £2.57 Grand Total: £3.31 But then when they click 'checkout' and it shows them the printable receipt to send in (as I have no payment methods setup yet) which shows the tax: - Subtotal: £0.74 Total Discount: £0.00 Shipping: £2.57 VAT: £0.12 Grand Total: £3.31 The problem with this is that we can't charge tax to customers in the rest of the world but can to UK and Europe countries. Any help? Submitted to the bug tracker but seems to have vanished
  10. Hi, Is it possible to display a name for each shipping zone/rate in the drop down on checkout, so the customer sees the price and description? By default cube cart just displays: - Shipping by weight > £2.00 > £1.00 The customer simply doesn't know what the difference is! Ideally it would be best to show: - 1st Class Delivery > £2.00 2nd Class Delivery > £1.00 Is this possible?
  11. Hi, Yes tried 10,4 with no luck. I submitted to the bug tracker but the post appears to have disappeared.
  12. Hi, no the fix didn't work, unfortunately my table structure is already set to: decimal(10,3)
  13. Will give it a try - btw do you have an example shipping by weight prices guide I can use which is in grams (set to kg) format? 1:1.58, 2: 1.96, etc? How are you setting those up with the gram weights set in kg?
  14. Hi, I am trying to gain some information how to calculate weights correctly in version 5.0.5, all my items are weighed in grams, so my weight setting is set to 'Metric kg' instead of imperial in general settings. I have set weight on a product which is 5 grams as 0.005kg. Then upon adding the item to the cart Cube Cart rounds the weight to 0.01kg, thus making the weight incorrect, as 0.01kg is 10grams (double the intended weight) I assume this is because the system rounds up - but as far as I can see, and without a 'grams' used in the general settings it can't be achieved...? Anyone help?
×
×
  • Create New...