Manufacturer Code

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 лет назад
I want to remove the display of manufacturers from the detailed product information page where it shows above the "Share" button from AddThis.com

Can anyone guide me in the right direction ?

thanks in advance.

Vishal
13 лет назад
hi, if you don't enter any manufacturer information, then nothing will appear here anyway

but to stop it appearing if you've provided it  - then you have to edit the code

look at modules/ProductInfo.ascx

and add the bold style rule to the code   ie        
<asp:PlaceHolder runat="server" ID="phManufacturers" >
            <div class="manufacturers" style="visibility:collapse;" >
                <asp:Literal ID="lManufacturersTitle" runat="server" />
                <asp:Repeater runat="server" ID="rptrManufacturers">
                    <ItemTemplate>
                        <asp:HyperLink ID="hlManufacturer" runat="server" Text='<%#Server.HtmlEncode(Eval("LocalizedName").ToString()) %>'
                            NavigateUrl='<%#SEOHelper.GetManufacturerUrl((Manufacturer)(Container.DataItem)) %>' />
                    </ItemTemplate>
                    <SeparatorTemplate>
                        ,
                    </SeparatorTemplate>
                </asp:Repeater>
            </div>
        </asp:PlaceHolder>
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.