I'm creating a theme in Drupal 7. But whenever I click on the any admin menu item and get the admin overlay, the content of the page appears with the admin configuration settings on the overlay. Any help is appreciated.
I would like to create a dynamic block ( or régions ) in taxonomy page wich content depend on the term value. I would like to use the value of the term in a javascript code on a block.
How can i get the term value in a block ?
Can i define a custom field for the taxonomy, that i can display like block ? I thought that "display suite" allow this, but i was not able to do it.
Does there are other solutions ?
I would like to use the same think in a node page by taking the first term associated to the node like a tag.
I'm very, very new to drupal and I am trying to install ckeditor. The directions sound rather complicated to a newbie. I'm using godaddy, I don't personally have my folders, and I am not sure I understand the directions. It's not an easy install. Someone suggested I download and install filezilla. Well, ok, I did that, but now what:? How do I get my folders then add that?
How come it's not listing it according to date. I have it set as date - newest first but it's doing it in the opposite direction. Can anyone know how to make it where the latest entry goes on top?
I'm tryin to count the number of nodes by content type and vocabulary.
I put this php code on the view header:
"
$mytype = 'job'; // <<---------- set your content type here.
$results = db_query("SELECT COUNT(DISTINCT(nid)) FROM {node} WHERE type='%s' AND status=1", $mytype);
$count = db_num_rows($results);
echo "There are currently $count jobs in our database.";