Tag Block Sidebar

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
How do I get the tag cloud box to appear on ALL pages? Right now it only appears on category pages.
13 years ago
it depends what masterpage is being used :

right now, I think:

            <nopCommerce:PopularTags ID="ctrlPopularTags" runat="server" />

appears only on threecolumn.master - you can add this control to  two column master if it's not already there

also, you may want to look at which masterpage is being called eg

shoppingCart.aspx uses OneColumn.master:

<%@ Page Language="C#" MasterPageFile="~/MasterPages/OneColumn.master" AutoEventWireup="true"
    Inherits="NopSolutions.NopCommerce.Web.ShoppingCartPage" CodeBehind="ShoppingCart.aspx.cs"
     %>

but you could make it use TwoColumn.master simply by changing the above (bold) text to   TwoColumn.master
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.