Jump to content

goober999

Member
  • Posts

    305
  • Joined

  • Last visited

Everything posted by goober999

  1. Hi, you would need to add a new column to the inventory table, something like "custom", or whatever name you like. then edit the admin product edit page to update that field when you save the product. Once that is done, change the SQL line above to this. Any help would be greatly appreciated. Thanks! $db->select("SELECT I.name, I.productId , I.price,I.image FROM ".$glob['dbprefix']."CubeCart_inventory AS I, ".$glob['dbprefix']."CubeCart_category AS C WHERE I.custom = '1' AND C.cat_id = I.cat_id AND C.hide != '1' AND I.disabled != '1' AND I.cat_id > 0;
  2. in the admin panel, make sure that the only gateways that are enabled are the ones you want. If a payment gateway is enabled and does not have a description, it will show up as a blank radio button. thanks /Goober
  3. Hi, First the line of your code is wrong. the line should be $box_content->assign("TXT_DESCRIPTION",$randProd[0]['description']); After you fix that, add I.description to the $sql = line so it would look like this $sql = sprintf("SELECT I.name, I.image, I.productId, I.description FROM %1\$sCubeCart_inventory ... Good Luck
  4. Hi CC is not Open Source but that does not mean that you can't view and change 98% of it's code. Only a very small part of it is encrypted, the rest is wide open for you to modify to suit to your needs. To add additional fields, just add them to the database table and update source code where appropriate. Good Luck /Goober
  5. Edit the categories.tpl in the skins/Classic/stleTemplates/boxes folder find this line <br clear="all" /> change it to <div style="clear: all;"></div> Good Luck /Goober
  6. Hi, You can find a mod for this over at cubecartforums.org site Thanks /Goober
  7. Hi, The new version does not offer this functionality. however, mods can be found on cubecartforums.org that will add this functionality to both v3 and v4 cubecart. thanks /Goober
  8. Hi, Mods are not supported in these forums. Please PM me and I'll be able to assist. thanks /Goober
  9. Check your global.inc.php file. make sure that the store's url has www in it. and that your paypal return url also has www. This error usually happens when you access your site with www and return to a url without or viceversa. access your shop without www and return to the url with it. thanks /Goober
  10. Hi, There is nothing "illigal" about this. You can use PayPal to send an invoice to ANY email address, whether the email account is a paypal account or not. If you had any email communication with this vendor then they have your email account. All they did was send an invoice, perfectly valid, perfectly legal. If that account just happens to be your paypal account as well then that's just a coincidence. NEVER give your passwords to anyone. Never click on any links that would take you to PayPal site to login. Always go to paypal site directly and login. Thanks /Goober
  11. Unspent funds remain available until they are used up. The customer must use the same giftcard code until the funds have been depleted. No action by admin are necessary. Once the funds have been depleted, the code is no longer valid. /Goober
  12. Yes, there is only one "code" interface. The column "is gift certificate" will indicate that this coupon is actually a giftcard that's how it is today. you can always request a change or new features via bug tracker. has not been implemented at this time. you can always request a change or new features via bug tracker. you can always use a v3.x mod that has all these fetures /Goober
  13. and and and I have another one... If I wanted to make a promotion to all my customers by emailing them each a coupon for say 25% off a new product I'm launching, how on earth can I achieve this? If I had a customer list of 1000 customers, the only way I can see of doing this is to create 1000 coupons separately, and then export the email list, and individually send the emails. While the coupons / gift certificates are very welcome, I'm sorry, but from the limited information I have about them, I'd have to say their application has been poorly implemented. "is gift certificate" identifies a code that is giftcard so the cart maintains remaining value. You can purchase more than one giftcard per order you will need to create just one coupon code and send it to 10000 customers. all of these customers will get 25% off their orders. Coupon is not a giftcard, giftcard is not a coupon. giftcard is store credit, once the value has been spent it's over. The coupon codes have an unlimited use or until the max use number has been reached. /Goober
  14. Hi, The coupons and gift certificates DO NOT work the same. The "problem", please note the quotes around the word problem, is that they are not differentiated enough, IMHO. Here's the concept. The coupons are exactly as they sound and are simple in concept. You create coupon code and choose either % off or $ amount off the order subtotal. The Giftcards on the other hand are NOT discounts, contrary to the way they are shown in the cart. They are treated as store credit. The giftcard has a $ amount that is maintained by the cart. If the giftcard is valued at $50.00 and the customer spends $23.57 then the giftcard has a balance of $26.43 for the next time the customer comes back to the store. The giftcard code is not generated until the giftcard is paid for and then the code is emailed to the email address specified during purchase. hope that helps /Goober
  15. Oh man... you took all the fun out it. :wacko:
  16. I agree with markscarts, Add-ons or Add-on modules is also a good idea. Thanks /Goober Go CubeCart!
  17. Hi, I just posted a simple "Test Payment Gateway" mod for CC v4 over at cubecartforums.org. This mod is same as the v3 mod I posted a while back. Just in case any beta testers could use it. thanks /Goober
  18. That has already been reported as a bug. /Goober
  19. I was wondering if a 3rd Party modules link could be added somewhere within the admin panel navigation? if not, no big deal, just thinking out loud. This would go a long way in unifying a location within the admin panel where modders can place their add-ons and give the whole modder community a bit recognition. IMHO, I think this has worked pretty well on v3, even if I do take credit for it The new admin panel navigation is getting quite busy. Thanks /Goober
  20. :) Who came up with all those random funky default store names, Martin? CompuGlobalHyperMegaNet is my favorite so far. Thanks for the funny /Goober
  21. this will be coming soon, the module installer isnt quite perfected, and it will (probably) be the first module you can test it with, as it's capable of self-installing. at the moment, the current directory structure inside a module folder is package.conf.php [front end scripts] --admin ----index.inc.php ----[other admin side files] --language ----default.lang.php ----[locale i.e. en_UK].lang.php --classes ----[module classes] like i said, it's not finalised, but it will be well documented Thanks! Could I trouble you for a layout or sample of package.conf.php just being curious. thanks /Goober
  22. I was wondering if we could get a sample "gateway" or "shipping" module installation zip file to test the module installation process? Also, what is the proper format and/or layout of a module zip file for installation process? thanks /Goober
  23. Hi, Make sure that $glob['storeURL'] has www in it. Sometime you get "Empty Cart" errors when your store is accessed without www and when viewing cart www appears in the url. thanks /Goober
  24. You should be able to make changes in the includes\boxes\cartNavi.inc.php file. Thanks /Goober
×
×
  • Create New...