By the3dart on
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
clear cache in the
clear cache in the performance setting after any theming change in you site
Link:
admin/settings/performance
i know that i must clear
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
Try disabling then renabling
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.
it works
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 ;-)
Add
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.