how to modify the source code of webstore.UI

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
10/14/2011 10:02:06 PM
Gravatar
Total Posts 7

how to modify the source code of webstore.UI

How to edit the  source of productlist.aspx in webstore?  I went to remove text “product list ” in product page .  I have tried following actions, but it still shows “product list”


1. I’m using source code mojoportal_56e6f205113c


2. I have removed :
<h3><asp:Literal ID="litProductListHeading" runat="server" EnableViewState="false"></asp:Literal></h3>
In productlist.aspx in Webstore.UI
  litProductListHeading.Text = WebStoreResources.ProductList;  in productlist.apsx.cs

3. I built the entire solution
Set a debug break point at  litProductListHeading.Text = WebStoreResources.ProductList;  in productlist.apsx.cs  . I ran debug and  it even did not stop at that point.

Please advise . thanks in advance
Dennis

10/15/2011 1:23:19 PM
Gravatar
Total Posts 2239

Re: how to modify the source code of webstore.UI

Hi Dennis,

You should not modify the source code. Please see: Avoid Forking the Code.

If you simply want to hide that text, add this to your CSS:

.productlist > h3 {display: none;}

Also, please follow the links Joe Audette gave you on your other post on this subject.

Hope this helps,
Joe D.
 

You must sign in to post in the forums. This thread is closed to new posts.