Drupal - Devel Themer not showing

At first he showed me Class 'simple_html_dom' not found in ..., but I found a solution. Now, even if the module is Theme Developeractivated, it does not show the radio channel for verification in the lower left corner, and Drupal does not show any error, but ... When checking the browser console, I found this error:

Uncaught TypeError: Cannot read property 'themer_info' of undefined

This happens in the file modules/devel_themer/devel_themer.json line 43.

Has anyone got this module working in Drupal 7?

+3
source share
2 answers

Had the same problem and fixed it. On the drupal devel_themer page ( https://drupal.org/project/devel_themer ):

: simplehtmldom API. simplehtml API 7.x-1.12, , " " .

, , , , .

+3

, JavaScript Drupal. includes/common.inc:

$embed_prefix = "\n<!--//--><![CDATA[//><!--\n";
$embed_suffix = "\n//--><!]]>\n";

, :

//    $embed_prefix = "\n<!--//--><![CDATA[//><!--\n";
//    $embed_suffix = "\n//--><!]]>\n";

, . , .

0

All Articles