right now the default user profile page is pretty austere. any way to
have it display a bunch of things like website, ims, description,
interests, photo, video, etc more like a myspace page (tho not as
elaborate)?
thanks drupaleros,
will
hey all, we have the events module installed and it works fine, except
that the Upcoming Events block does not display an event on the same
day. That is to say, in the Upcoming Events block, if the actual date is
April 4 it will display events happening on April 5th, but once April
5th rolls around that event will not be displayed.
any way to fix this so the block will display events on the same day?
Hello I am new to Drupal and am currently running a
> site and I'd like
> to adjust a few things in my layout. Specifically I
> added a CCK Link
> field to the story content type. I have disabled the
> Link Title as I
> only want to input the link. However on the display
> pages I would like
> to have the same link name use all the time. For
> example right now I
> have the following displaying
>
> Node Title
> Taxonomy terms
> <a
>
href="http://www.something.com">http://www.something.com</a>
>
> What I would like to do is:
>
> Node Title
> Taxonomy Terms
> <a href="http://www.something.com">Watch this! </a>
>
> Hopefully you understand what I mean. I just want
> the output to be in
> the href="" and then use the Watch this! as my
> default instead of the
> actual link. I've looked at a few posts but just
> can't seem to grasp
> what I need to do. That and I have very minimal php
> experience.
> (former coldfusion programmer) Thanks in advance
--
Chris McCreery
Upgraded from 4.6.x to 4.7.6--yes, a version behind. I like versions
when they're nice and stable and boring.
Now no one can log in--existing users are not recognized. Users who
were already logged in cannot post either blogs or comments. The user
tables are still there.
Lynn
------
Mama, homeschooler, writer, activist, spinner & knitter
http://www.siprelle.com
NOTICE: The National Security Agency may have read this email without
warning, warrant, or notice.
Hi everybody,
I would like to create a site which contains a list of products.
I need to put each product into only one category.
I would like to simulate the presence of folders with indexing.
Let me show you an example:
I need to insert a node called 'Pizza with Cheese'.
A category tree is available like this:
food > italian food > pizzas
When I choose the Pizzas category during the node creation I would
like to automatically create the url for the node like:
http://example.com/food/italian_food/pizzas/pizza_with_chees
Moreover I would like that on the 'Pizza with Cheese' page a
breadcrumb shows something like 'Food > italian food > pizzas'.
I also would like that each of the urls:
http://example.com/food/http://example.com/food/italian_food/http://example.com/food/italian_food/pizzas/
could display list of nodes inserted into them.
I know there are different modules with similar functions (pathauto,
taxonomy_breadcrumbs) however I was not able to configure them to what
I explained above.
Could someone guide me into deploy something similar to what I described?
This should be an often requested deployment for SEO.
Thanks,
Fabio Varesano
is there anyway for users to add links as a small node, like you do in
delicious, so that links become content and can be displayed on a
'weblinks' page, tagged, etc.
using page nodes is unwieldy. hand coding the html is what we are doing
now on a 'weblinks' page but this is impossible for users to contribute
to. ideally we'd like to be able to search links, have a teaser for the
links, etc.
i think plone has a links-as-content feature.
thanks for help!
- will
It's possible split the content of one var? For example in comments page the var $links (I think) come with this: delete | edit | reply but. Some client ask me for some different icons in this links so I need add some class to this elements for later play with them using CSS. So ... It's possible?
Cheers and thanks in advance
--
ReynierPM
5to Ing. Informática
Maestro de poco, aprendiz de mucho
Okay, I give up. I just installed Drupal 5.1 on a fresh FC6 install with:
MySQL 5.0
PHP 5.1.6
Apache 2.2.3
I followed the instructions :
- change httpd.conf:
- DocumentIndex index.php index.html
- AddType test/html .shtml php
- create an empty database,
- set browser to the base URL
All I get is a blank page. If I go to http://www.mydomain.com/install.php,
Firefox tries to download it. If I let it download, it is just an empty
file.
I think Apache, MySQL and PHP are all installed correctly, but i don't know
how to get to the Drupal install script.
I would be happy to provide more information at anyone's request.
Thanks!
Ron
I'm trying to build a multistep form (a.k.a. "wizard").
The excellent guide of Jeff Eaton <http://drupal.org/node/101707>
(http://drupal.org/node/101707) about how to do such a form, relates
only to a user-supplied form (you need to write a special module for it).
I wonder if there's a way to do the same thing with a CCK form. Here are
the issues I ran into so far:
There are two things that need to be done:
1. Setting the current step index (1,2,3.../first,second,last etc.)
2. Determining which step we're at, to decide which form fields to
present, or which action to perform, upon submitting.
To set the current step index, Eaton uses the $form_values array which
is automaticaly added to a multistep form. He's doing so in the form
building function (/function my_form/), with the aid of $form_values.
This way he assures the step won't be increased until proper validation.
If I want to do the same thing on an existing form, I'd have to use
hook_form_alter. The thing is $form_values is not available to
hook_node_alter...
Hook_submit is used by Eaton to check on which step we are currently at,
and act upon it. The equivalent in the case of altering a form, would be
to use hook_nodeapi, during the submit operation. But then again - I
think I can't really hold the process, only add things to it.
So basicaly I'm asking: *Is there a different way to modify a CCK, so it
will become a multistep form?*
Zohar