So I've created a members view with name, nickname, picture and a couple of other things. What I'd like to do is combine 'Name' and 'Nickname'.

Example:

Currently our example user display as "Tim Smith - Drupal N00b"

I'd like to combine it to say "Tim 'Drupal N00b' Smith"

I've searched for documentation on replacement strings, but I'm coming up blank.

Any ideas?

Comments

jimthunderbird’s picture

In Drupal 5, you might want to try view theme wizard, in Drupal 6, you might want to read up
http://drupal.org/node/352970

And find out the corresponding views template, then modify it based on your needs.

rjanson’s picture

That's exactly what I was looking for, thanks.

arun.pitchai’s picture

hi,

I have create a Content Type and post the contents with some priority for each node,

but what i need is

While Listing those created contents in a page with some Content restriction.for example if its Priority 1 List all name,description,etc and if its Priority 2 must list only name alone in single listing Page .Is it possible in Views ?

Any ideas?

mcfilms’s picture

The easy way would be to create each priority as a view block (filter by content type AND the priority field). Then you could stack these blocks up in order in whatever page or region you want them.

There are many other ways, but this is the simplest.

A list of some of the Drupal sites I have designed and/or developed can be viewed at motioncity.com

arun.pitchai’s picture

thnks for the reply.let me try this