create a view that shows all taxonomy terms WITHOUT parent nodes

Hey folks,

I reckon this must be simple, but I can’t seem to figure it out! I have a view (block) of all taxonomy terms of a certain vocabulary. These are mostly single terms but some have child nodes. I would like to exclude these child nodes from the view, or in other words, show only terms without parent nodes. How do I do this? So far, I’ve only managed to show either all the child nodes or only the parent nodes, both versions missing all the single terms.

Thanks a lot for your help!
Anna~

Video Filter for CKEditor

Hi,

I get this warning:

Warning: array_flip() [function.array-flip]: Can only flip STRING and INTEGER values! in DrupalDefaultEntityController->load() (

I have installed the filter as instructed however i can not view any videos , can you please help?

How to get '/drupal' out of the url?

Hi,

I installed Drupal in, what I believe is, the correct way. I.E. where drupal is under htdocs and hence the URL has to be example.com/drupal.

I would like users to simply go to example.com or site1.example.com instead.

I've been trying to understand how multisite works and, AFAICS, it hinges on ../drupal/sites.php so that doesn't seem to solve the problem.

can we use chinese in user.module

I made ​​changes in the user.module, why garbled.
The change is: line1408 $output = '

' . format_plural($authenticated_count, 'There is currently 1 user online.', 'There are currently @count users online.') . '

'; ====> $output = '

' . format_plural($authenticated_count, '当前有1用户在线.', 'There are currently @count users online.') . '

';

new "Web Services Client" module

for those interested in Web Services,
this new client basically works out-of-the-box. really easy UI and also works hand-in-hand with the Rules module.
strongly recommended.

http://drupal.org/project/wsclient

Web services in Drupal 7.Creating user through web services.

I have written this code to create users through web services.Hope somebody finds this useful.

function cregister_userregister_submit($form, &$form_state)
{

$name=$form_state['values']['username'];
$pass=$form_state['values']['password'];
$mail=$form_state['values']['email'];

require_once("sites/all/libraries/xmlrpc/lib/xmlrpc.inc");

// Turn the node ID into a standard XMLRPC data type, for transmission
// Create an XMLRPC message
$param1= array('name' => new xmlrpcval($name, 'string'));
$retval = new xmlrpcval();
$retval->addStruct($param1);
$param2 = array('pass' => new xmlrpcval($pass,'string'));

$retval->addStruct($param2);
$param3 = array('mail' => new xmlrpcval($mail,'string'));
$retval->addStruct($param3);

$param4 = array('name' => new xmlrpcval('phunsuk','string'));
$retval2 = new xmlrpcval();
$retval2->addStruct($param4);
$str2=new xmlrpcresp($retval2);

$str=new xmlrpcresp($retval);
$m = new xmlrpcmsg('user.create',array($str->value()));
$m2 = new xmlrpcmsg('profile.create',array($str2->value()));
// Note that the "optional" second parameter is required, but it can be empty.
// If you omit it, services returns wrong-parameter-number errors

// Create a connection to the remote server
// Note the root URL is services/xmlrpc. If you don't turn the

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x