Advertisement

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Can I place ads on the side of Home page or show an advertising message appears when openning the site?
7 years ago
waleed44 wrote:
Can I place ads on the side of Home page or show an advertising message appears when openning the site?


Yes, you can.
7 years ago
how?
7 years ago
waleed44 wrote:
how?


Find out the Index.cshtml file

Path(DefautClean Theme): ~\Views\Home\Index.cshtml

Theme path: ~\Themes\{YourThemeName}\Views\Home\Index.cshtml

Way 1: Write the required html in the Index.cshtml file

Way 2: Create topic from admin and call it from Index.cshtml file

i.e. See how "HomePageText" topic work.  
@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })

Note: you will need write your own css according to your theme
7 years ago
Or simply edit existing "HomePageText" topic
5 years ago
sohel wrote:

@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })


in Nop v4.0 use it:
@await Component.InvokeAsync("TopicBlock",new { systemName = "advertisement" })
note: "advertisement" is system name of your new topic.
5 years ago
Or, use a Widget Zone with a plugin that lets you enter any html in any zone ;)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.