I am very new to orchard and to web development itself. I would like to know is it possible to integrate/add ads on Orchard web site and is there any resource about that.
|
|
Yes it is possible, but you would have to build a module to do this yourself, as there aren't yet any modules in the Orchard Gallery that handle ads. There are some easy ways to do it without adding any code; it really depends on what you need to do to place your ads. If you simply need to drop some html tags into certain pages you can accomplish this through the Orchard dashboard UI in at least a couple of different ways. The easiest would be through Widgets. Dashboard->widgets->Sidebar->Add->HtmlWidget. Drop in the HTML tags into the wysiwyg editor there and set up the rules so that this widget publishes to the desired Zone, and on the desired pages. Note, the instructions above said to publish to the "Sidebar" zone, but you could substitute that for any zone you want. You can use rules/layers to adjust which URL's your ads appear on. If you need more complex behavior you might accomplish it by creating a custom content type that has a BodyPart, or you could code a custom widget. For example some systems like Doubleclick for Publishers want you to add a random string to the HTML of the ads for cache busting. I don't know that Orchard has any token replacements that could be used for that, but you could do it yourself by coding your own part that does a token replacement on the body part. |
|||||
|