0
votes

I have tried it with many themes on Drupal but none works. I've tried to change different template files across different themes. I've reenabled them, cleared caches but no changes showed up. It is as if the template is literally stored somewhere and kept intact.

When I rename the page.tpl.php file completely, drupal loads instead the template from module/system. So, I know that it reads the directory, I am just not sure why it can't read my changes. Any ideas on how to fix this?

2
Can you provide more details about what did you try? What version of Drupal core are you using? 7.x?Bhavin Joshi
Could you please describe where is your theme folder located?Bustikiller
The version of drupal is 7.34 and the theme is located in sites/all/themes/ I am using openshift so the folder is a bit on a different location. However, the fact that when page.tbp,php is removed and caches are clear there is a fall back behavior it tell me that drupal sees the file is missing.Michael

2 Answers

0
votes

Just see $vars['theme_hook_suggestions'] array in your template.php using template_preprocess_page. (https://api.drupal.org/api/drupal/includes%21theme.inc/function/template_preprocess_page/7). It will guide you what happing there in you template system of enabled theme.

0
votes

Maybe some module is messing up something. Try disabling the one by one to see will that help.