Jump to content

roban

Member
  • Posts

    3,238
  • Joined

  • Last visited

Everything posted by roban

  1. I would guess that because you've turned sale mode off and are using 20% off as a sale price, your prices would not show. Try turning sale price 'On'
  2. roban

    google base?

    Maybe! You should see it at the top right when you view products
  3. If toast always lands butter-side down, and cats always land on their feet, what happens if you strap toast on the back of a cat and drop it?
  4. Stevie68 is quite right about your signature. Rule 12 states: Promotional URL's, advertisements and external affiliate links are not allowed in forum posts and profile signatures. Members must not link to or promote in anyway their own or other members services relating to CubeCart in these forums. This includes and is not exclusive to, mods/hack/template stores, hosting and design services. The ONLY exclusion to this rule is that you may provide a link to your CubeCart powered web store IF it does NOT provide products or services related to CubeCart. Please remove/edit your signature or a Moderator will do this for you.
  5. You seem to be missing <div class="boxFootRight"> </div> In your box code
  6. Here's a little trick for you. If you hold down your left mouse button and highlight the text then right click and choose 'view selection source' you will be able to find the answer. It is in style.css textContentTitle
  7. I guess you're not reading the pinned posts or searching. OK here you go! BUTTONS In style.css a.txtButton { font-family: Arial, Helvetica, sans-serif; font-weight: bold; color: #FFFFFF; background-color: #0E51A3; padding: 2px; line-height: 20px; text-align: center; text-decoration: none; } a.txtButton:hover { font-family: Arial, Helvetica, sans-serif; font-weight: bold; color: #FFFFFF; background-color: #FF3300; padding: 2px; line-height: 20px; text-align: center; text-decoration: none; } CENTER TITLE TEXT in layout.css .boxTitleLeft, .boxTitleRight { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 70%; color: #09347C; background-image: url(../styleImages/backgrounds/boxTitleBg.gif); width: 155px; height: 15px; padding-left: 5px; padding-top: 1px; Change padding-left: value
  8. roban

    New to CubeCart

    EDIT includes/boxes/shoppingCart.inc.php with a text editor like notepad. FIND these lines of code: $basket = $cart->add($_POST['add'],$quantity,""); } INSERT this block of code AFTER the above lines ( add the code after the curly bracket shown above): // start mod: redirect to basket if($ccUserData[0]['customer_id']>0) { header("Location: cart.php?act=step2"); } else { header("Location: cart.php?act=cart"); } exit; // end mod: redirect to basket Upload file to your server
  9. roban

    New to CubeCart

    The answer to your questions is 'Yes'. You can shop without shipping or you can offer your services as a coupon using digital downloading. Inventory control is optional and is controlled from the admin control panel. There is a free mod that will take your customers straight to the basket and they can checkout from there. The forms are configurable as are the emails sent. It's free. Download it and give it a spin.
  10. The answers to your questions can be found in the pinned posts in the skins & templates section
  11. Please post the contents of your includes/global.inc file
  12. In popularProducts.tpl Try adding a <br /> <!-- BEGIN: popular_products --> <div class="boxTitleRight">{LANG_POPULAR_PRODUCTS_TITLE}</div><br /> <div class="boxContentRight"> <ol> <!-- BEGIN: li --> <li class="num"><a href="index.php?act=viewProd&productId={DATA.productId}" class="txtDefault">{DATA.name}</a></li> <!-- END: li --> </ol> </div> <!-- END: popular_products -->
  13. Try a search of the forum for 'order failed'
  14. IMO you'd move your skins files, images and upload your database as long as it is compatible (which I am sure you've backed up). If it isn't you can run the database upgrades.
  15. Was my post not helpful? What would you like me to comment on regarding "The link i provided was to one of the pinned posts in this forum..." I have a hard time finding time to help people less interpreting others' posts.
  16. What do you mean by "When I log into the store area to install cubecart..." How are you installing. You can't install cube cart from the store area.
  17. This is done in index.tpl by moving {SHOPPING_CART} where you want it to go. You may have to adjust the width to fit your side column and this can be done in layout.css and style.css. Your best bet here might be to put it in its own side box. For this you can try: <div class="boxTitleRight">Your Cart</div> <div class="boxContentLeft"> {SHOPPING_CART} <border="0" > </div> <div class="boxFootRight"> </div>
  18. http://www.cubecart.com/site/forums/index....ecurity+warning
  19. <?php $glob['dbdatabase'] = 'artclay_store'; $glob['dbhost'] = 'localhost'; $glob['dbpassword'] = ; $glob['dbprefix'] = ''; $glob['dbusername'] = 'artclay_forum'; $glob['installed'] = '1'; $glob['rootDir'] = '/home/artclay/public_html/store'; $glob['rootRel'] = '/~artclay/store/'; $glob['storeURL'] = 'http://artclaynz.co.nz/store'; ?> $glob['rootRel'] = '/store/';
  20. It's hard to know what modifications were done to your store. The css that controls this can be found in layout.css: #subCats { background-color: #EBEDFE; text-align: center; border: 1px solid #C9CEFC; margin: 0px; padding: 3px; float: left; width: 387px; } .subCat { text-align: center; padding: 8px; float: left; width: 110px;
  21. roban

    What happend ?

    If everything was working and you've made no changes, call your host.
  22. So you in effect want someone to re-design your site. Post a request at cubecart.org, our sister site for modifications and design.
×
×
  • Create New...