Hi, this is my first post in this forum,

i am creating a new drupal theme based on the StarterKit from Zen theme,
the problem i encounter is that when i add new regions in my .info file, they are not shown in the list in block category.

i tested another theme (garland), and i added regions with no problem, so where is the problem with Zen theme !!!

Comments

anbarasan.r’s picture

clear cache in the performance setting after any theming change in you site
Link:
admin/settings/performance

the3dart’s picture

i know that i must clear cache at any change, and i did it, but the problem still here, i cant see my new regions

medenfield’s picture

I've found that disabling then reenabling, or simply visiting the edit the theme settings page will often trigger a refresh of the system seeing changes made to the .info file.

the3dart’s picture

the probleme is resolved, i do not know how !! maybe cause when i was testing, i opened a new tab in firefox with the "admin/settings/performance", so i do not need to go every time in the admin menu/performance in order to clear the cache, i think that the problem was here,

thanks for your help and suggestions ;-)

cog.rusty’s picture

Add drupal_rebuild_theme_registry(); to your theme's template.php file during theme development, to be called with every page load. Remove it when you finish.