Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I have been searching around a bit here and I am even more confused than before.
I have enabled user pictures and I can see it in my account. So far so good, but I don't see the user picture when I post in the forum.
Also I do not want the user picture to show up anywhere else but the Forum (no story, page, book or any content but a forum post).
I would be very happy if someone could enlighten me how to enable avatars, what modules are required (e.g. do I need profile.module that I keep reading about) and how to make sure it only shows up in the forum.
Hello, I'd like to know if someone has done public teasers for private nodes
using Drupal. I'm using Drupal to build an online journal + community website
where logged in users will post stories, some of which will be private.
I currently have the node_privacy_by_role module installed and am considering
switching to the Organic Groups module for differentiated access by groups
to stories. (Some stories will be for everyone.)
What will help particularly is to make all teasers show up regardless of whether
the nodes are 'public' are or not.
I am trying to create a menu on my site in a custom block that uses taxonomy_dhtml but only shows the taxonomy tree for one vocabulary combined with the nodes belonging to a different taxonomy term in a different vocabulary. That's tough to explain. I'll try to demonstrate.
Vocabulary: fruit
apples
oranges
pears
grapes
Vocabulary: cars
sedans
SUVs
VW Toureg (node)
Toyota 4-Runner (node)
Nissan Pathfinder (node)
convertibles
I want a taxonomy_dhtml menu that has the following:
+ apples
+ oranges
+ pears
+ grapes
- VW Toureg
- Toyota 4-Runner
- Nissan Pathfinder
I've got the 1st vocabulary working, but how do I combine that with the items belonging to the taxonomy term of the second vocabulary? Here's what I have so far:
<?php
$activity_vocabulary = 7;
$type = 0;
$tree = taxonomy_get_tree($activity_vocabulary);
// localize and append the node count to each term name
for ($m=0; $m
$tree[$m]->name = t($tree[$m]->name);
if ($count = taxonomy_term_count_nodes($tree[$m]->tid, $type)) {
$tree[$m]->name .= " ($count)";
}
}
$tree_nodes = taxonomy_dhtml_inject_nodes($tree, $type);
cache_set("taxonomy_dhtml:tree_nodes_$type". $activity_vocabulary, serialize($tree_nodes), CACHE_TEMPORARY);
I've installed organic groups on top of devel and ecommerce. Now I can never see the admin panel. problems seem to be an interaction of these 3 modules. If I go to the url for admin as user 1, I'm logged out and told access denied. If I log in as user 1, I'm sent to a devel redirect node with no administer link.
I've searched and found nothing with this specific problem. the answers say to go to admin url, or to disable from admin interface.
I figure I need to disable the modules. I tried renaming devel module but then no one can log in