Jump to content

Problem with Cubecart Basket - info


Guest max99

Recommended Posts

well my site is i-standout.com and everything is working except ..

I add a product to basket and then go to view basket or checkout and theirs no information there. No price , product number and so subtotal etc don't work. neither does delivery price

Under the stock theres a weird thing too "∞"

cube.JPG

Any help would be muchly appreciated :sourcerer:

Thanks :rolleyes:

Link to comment
Share on other sites

Guest estelle

Or you could try making the following change to includes/content/cart.inc.php

Find this line:

  $product = $db->select("SELECT * FROM ".$glob['dbprefix']."CubeCart_inventory INNER JOIN ".$glob['dbprefix']."CubeCart_taxes ON ".$glob['dbprefix']."CubeCart_taxes.id = taxType ".$extraJoin." WHERE productId=".$db->mySQLSafe($productId));


Add these lines below it:


  // FIX FOR DELETED TAX BANDS PRE 3.0.5

  if($product == FALSE){

  

 	 $product = $db->select("SELECT * FROM ".$glob['dbprefix']."CubeCart_inventory WHERE productId=".$db->mySQLSafe($productId));

 	 $product[0]['percent'] = 0;

  

  }

Estelle.

Link to comment
Share on other sites

Guest estelle

and i used 2nd persons reply and its worked :whistle:

We do have names you know :sourcerer:

If you're having problems with setting up the shipping, do a quick search and you'll probably find the solution :rolleyes:

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...