0

I have created a new module based on the Extensible Wizard Example found in http://drupal.org/project/examples. This is a one of 5 form modules which will all run on the same drupal site.

I need all 5 modules to use different themes but cannot figure out how to set a theme on the module level.

I have tried the suggestions in Drupal: How to theme a module and Drupal theme functions workflow in module with no success.

Any ideas?

Community
  • 1
  • 1
James Cooke
  • 15
  • 1
  • 4

1 Answers1

2

to do this programatically, you can use the themekey module api, as explained in this post: http://drupal.org/node/622450

Also there are several modules that would help with switching themes based on different circumstances from the frontend:

Themekey: http://drupal.org/project/themekey

Page Theme: http://drupal.org/project/page_theme

Content Theme: http://drupal.org/project/content_theme

There is also role theme switcher and some others

Joshua Kissoon
  • 3,269
  • 6
  • 32
  • 58