Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
I'm not that familiar with orchard, but here is a module that will integrate google analytics - orchardga.codeplex.com. It's probably relatively easy to adjust this module to incorporate ads – Prescott Apr 15 '12 at 17:48

2 Answers

up vote 0 down vote accepted

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.

share|improve this answer
I want to add something like Google Ads. Or ads from such companies like buysellads.com. Would that be possible ? – Tamerlane Apr 16 '12 at 1:25
Ads are usually just a small bit of script. It's trivial to include either in your layout template or in a html widget. Making a module just for that seems immensely overkill, which is probably why there isn't a module for it. – Bertrand Le Roy Apr 16 '12 at 4:56

Add scripts directly to the view you want to show your ads on.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.