HomeHome Product Discus... Product Discus...SmithCartSmithCartCart Feature QuestionsCart Feature Questions
Previous
 
Next
New Post
5/7/2010 11:05 AM
 

Am I missing something? When I turn off Add to Cart buttons on the main catalog page, it also turns them off on the Product Detail page. Then, people have no ability to add products to their cart. I can’t find a setting to turn Add to Cart buttons on for the Product Detail page while leaving them off of the main product listing page. Could you advise on a solution?

See http://www.brightlightgroup.com/tbb/S...

Also, is it possible to display some product information like description and pricing to the right of the product image on the detail page? The default layout looks strange with all that blank space on the right side of the image.


Also, is it possible to put the customer reviews in a tab?

Thanks,

John

 
New Post
5/7/2010 11:56 AM
 

1. The show/hide add to cart checkbox in the cart admin settings is meant for people who only want to use the cart as a product catalog and not allow checkout. If you want to hide the add to cart on the product list page you can set the visible property to false in productlist.ascx as follows:

<asp:ImageButton ID="ibAddToCart" runat="server" OnClick="btnAddBasket_Click" ImageUrl="~/DesktopModules/Smith.BuyNow/images/add_to_cart2.gif" Visible=false />

2. Regarding displaying product information/pricing next to the product to fill up the blank space you can modify the productlist.ascx page to format the product layout any way you like. The product listing layout uses html tables so if you are comfortable changing html tables then open up the productlist.ascx page in your favorite editor and format the tables to your requirements.

To display additional product info next to the product you can enable the summary field by setting the visible property to true for the table row that contains the summary field:

<tr runat="server" visible="false">
<td>
<asp:Label runat="server" ID="lblSummary" Text='<%# DataBinder.Eval(Container.DataItem, "Summary") %>' style="float:left; text-align:left;"/>
</td>
</tr>

3. Currently there is no way for you to add customer reviews into a tab control


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
5/7/2010 2:28 PM
 

Thanks for the response. I can't get number 1 to work. If I put Visible="false" and General Cart Configuration, Hide Add To Cart is unchecked, I still get the buttons. This module setting seems to override the inline visible declaration. I tried the reverse and checked Hide Add To Cart and set Visible="true" and it didn't show up.

Thanks, John

 
New Post
5/7/2010 2:41 PM
 

John,

For item #1, I just checked with programming and your right when you check "Hide Add To Cart Buttons" in the cart admin settings the code behind sets the visible property for ALL the add to cart buttons so right now in the cart you wont be able to just hide the add to cart button on the product listing page without us changing the code behind. If you would like to request a customization for us to add a new setting to control the add to cart buttons on the individual pages please send an email to sales@smithcart.com.

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
5/7/2010 10:37 PM
 

Scott,

I see, thanks for the clarification. Regarding number 2, I need the summary or to put the content from one of the tabs to the right of the image on the Product Details page. My client doesn't want all that blank space on the right of the image and wants me to put some of the product info there. I've tried everything I could think of and can't get anything to work. Any insights would be appreciated.

Thanks, John

 
New Post
5/8/2010 10:24 AM
Accepted Answer 

I think the field that you are looking for is the summary field but its not currently availible on the product details page. One option for you is to display the mini cart on the product detail page to fill some space. In the cart admin settings under the payment detail settings check "Show Mini Cart". I will submit a request to the dev team to add the product summary field on the product detail page.


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartCart Feature QuestionsCart Feature Questions