an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Development > General Programming > In Stock Label on Product List Page
Last Post 9/25/2008 11:08:14 AM By lukezy. 8 replies.
9/24/2008 10:17:09 PM
rmoynihan
Posts: 10
Joined: 7/22/2008
In Stock Label on Product List Page
Hi,
 
I would like to remove the 'In Stock' text from the product summary on the product list page.
 
Where does this text get added to the control '/Store/ProductSummary.ascx'?
I can't sem to find it anywhere.
 
Thanks,
 
Ronan
9/25/2008 12:00:04 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: In Stock Label on Product List Page
Please read this.
DotShoppingCart Staff
9/25/2008 12:15:16 AM
rmoynihan
Posts: 10
Joined: 7/22/2008
Re: In Stock Label on Product List Page
Thanks for that.
 
I have customized my dotshoppingcart application and I have taken away the Block editing.
 
Is this html saved in a table in the Database?
 
Thanks,
 
Ronan
9/25/2008 9:29:41 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: In Stock Label on Product List Page
Yes, all the contents are stored in the DB. Why taking away block editing? That's the core feature of DSC.
DotShoppingCart Staff
9/25/2008 10:10:47 AM
rmoynihan
Posts: 10
Joined: 7/22/2008
Re: In Stock Label on Product List Page
I've integrated it with another cms www.sitefinity.com so i took away the block editing.
 
Do you know which table the templates are stored in so I can remove the 'In Stock' text.
 
Thanks,
 
Ronan
9/25/2008 10:23:34 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: In Stock Label on Product List Page
It's dbo.DSC_Block.
 
select * from DSC_Block
where Name = 'ProductSummary'
 
 
DotShoppingCart Staff
9/25/2008 10:32:29 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: In Stock Label on Product List Page
FYI, our DotShoppingCart Suite provides the full CMS features. Have you checked it out to see if it meets your needs?
DotShoppingCart Staff
9/25/2008 10:49:41 AM
rmoynihan
Posts: 10
Joined: 7/22/2008
Re: In Stock Label on Product List Page
Ya I had started the project before I realised the online shop requirements.
 
I have checked that entry in the Database but the html does not contain the text 'In Stock' so where is this coming from.
 
Thanks,
 
Ronan
9/25/2008 11:08:14 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: In Stock Label on Product List Page
There is a token called %%ShipEstimate%%, which gets resolved to "Ship Estimate" in the product edit page.
 
DotShoppingCart Staff