Jump to content

convict

Member
  • Posts

    1,302
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by convict

  1. I cant see any scrollbars now. If you want to use some margin/padding you have to increase/decrease the image and box dimmensions. Image box size - margin - padding = real dimmension of image box.
  2. If both of 'domains' are hosted on the same server there is no problem, i have used it for some clients. It could be used for one physical copy of CubeCart with different skin results too. If different servers, you need the remote DB access right to do it or do replications but not recomended.
  3. If you want to use form in CubeCart - absolutely. You should to know the template system used in CubeCart.
  4. Well, great explanation Bill, addtional points Brivtech Attention at computer viruses world too. BIG majority of regular users NEVER do change passwords, do use EASY (family names, isp name, site name and so on....) and the same password for everything. Do some 'change action' when something occurs sometime is almost useless. IT WORKS and we'll do when occurs something - this is the result of human nature. It was, it is and it will always be - thats my experiences in IT World since 1981. I think this topic should read regular user daily as the Holy Bible.
  5. Remove margins from <div style="overflow: auto; position: relative; float: left; width: 300px; text-align: center; margin-right: 1em; margin-top: 1em; margin-bottom: 1em;"> or use smaller images.
  6. You use nested <CENTER> html tag in your SESSION box. ] is out of nested block thats the reason ] comes to the next row. You use standard styles but own graphic in template. Box title images are in boxTitleLeft, boxTitleRight style class div block but block height is limited to 15px (styles) and your images height is 35px. FF uses the 15px as defined but IE is silly. Try to remove height: 15px from style definition. FF is mutch more CSS compliant as IE :w00t:
  7. includes/boxes/shoppingCart.inc.php REPLACE $box_content = $box_content->text("shopping_cart"); with if (stristr($_SERVER['QUERY_STRING'], "viewProd") !== false) { $box_content = ""; } else { $box_content = $box_content->text("shopping_cart"); }
  8. There is a solution for image mapping in cubecart.org forum. Search for "Banner with image map".
  9. What does it mean local credit card processing gateways?
  10. convict

    Tax > 9.9999%

    You use MySQL version 5. You have to change the taxes table column specification like ... ALTER TABLE `CubeCart_taxes` CHANGE `percent` `percent` DECIMAL( 6, 4 ) NOT NULL DEFAULT '0.0000' Originale one is DECIMAL( 5, 4 )
  11. What about DIBs? Gateway is done please contact me via PM.
  12. Well, you are right. Download links email is sent once order status is changed to processing - automated (payment processor sucessfull payment) - manualy (you have to click on a link to sent this email). HOWEVER my point of view was just another - You may put to the download link field whatever this is not dependet to order status, not dependet to any payment gateway setting. If you put there mistake, link to mistake is sent via email. If you put there nothing, link to nothing is sent.
  13. 1) Commercial - pay and go 2) Expensive to price/power 3) Expensive made add-ons like additional features & skins 4) Too much expensive mods on demand 5) As vrakas says - to much in there to configure and most are useless LOL Typical week job performance for any freelancer related to briliant cart - cubecart. :whistle:
  14. I have pointed you via PM, cubecart.org is the solution :)
  15. @Godsjewel The order status is NOT dependet to ANY digital download links, NEVER.
  16. The issue is not dependet. Do you use unmodified CubeCart?
  17. The code is right, post the URL please (if you would like contact me via PM).
  18. If the order status goes to Processing using PayPal IPN cart content MUST be empty. If NO there is a ORDER FAILED mesage and cart is NOT empty. We had some occasional issues - customer was redirected quite before IPN because of PayPal server overload. We have fixed it with one line hack however the better solution is clever cycle code :)
  19. I cant see any sence to do the redirection to the account page after login however here you are... includes/content/login.inc.php SEARCH FOR // redirect //"login","reg","unsubscribe","forgotPass" ADD BEFORE header("Location: ".$GLOBALS['rootRel']."index.php?act=account"); exit();
  20. Do you use the cat sorting by name? Default CubeCart code doesnt show the categories by name in Shop by category box. You have to use SQL condition ORDER BY cat_name. includes/boxes/category.inc.php SEARCH FOR $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0"); REPLACE WITH $results = $db->select("SELECT cat_name, cat_id FROM ".$glob['dbprefix']."CubeCart_category WHERE cat_father_id = 0 ORDER BY cat_name");
  21. Your image doesnt provide so much information, try to make session box wider.
  22. Yes, this is a typo. I have changed the php to tpl which is right in my primary topic post. Dont forget you have to inform customer payment was sucessful or not. If you want to redirect customer to homepage in case payment was sucessful, you have to do it in includes/content/confirmed.inc.php Be ware there is a affiliate module code, if you dont use affiliate module you may redirect the customer sucesfully paid with following code: Open file i have mentioned above Search for $basket = $cart->unsetVar("shipMethod"); ADD AFTER
  23. Images are resized if size of uploaded image in any dimension does exceed the Max Image Size in General Settings->GD Settings.
×
×
  • Create New...