CCK
Not seeing CCK fieldsets when you form_alter your form?
In #drupal channel on IRC, mikey_p reminds that the CCK fieldgroup module has a weight of 9, so your module implementing hook_form_alter has to have a heavier weight (higher number) if you want to see that.
Sidebar graphics with links ("promotional badges") the Agaric Drupal way
A note of warning about the length of notes to follow: This is site configuration at the point where it verges on developer documentation, such is the power of Drupal, and there's some outright theming in here too. This article is a reaction to doing sidebar graphics the painfully non-Drupal way.
Use just the body field in the view of a CCK node
This requires theming the view. Views does not know about or provide just the raw body, so you have to theme the view, load the node, and grab the body field.
In your view-....tpl.php:
<?php
$fullnode = node_load($node->nid);
print check_markup($fullnode->body, $fullnode->format, FALSE);
?>*THIS HAS SIGNIFICANT PERFORMANCE IMPLICATION FOR MANY NODES WITH MANY FIELDS*
Custom nodes module AND CCK: Bdragon serves you cake and lets you have it, too
stompeers___: I have just a few tables: masters (which are the CDs and DVDs), sales orders (which consist of orders from clients) and work orders (each work order is for a single master, and there may be many work orders for a single sales order).
[9:26pm] pnm_ joined the chat room.
[9:26pm] designerbrent left the chat room. (Read error: 110 (Connection timed out))
Theming google map popups to use imagecache with Views and GMap module in Drupal
So you can pass in the imagecache presets namespace directly into your GMap view for use in pop-ups.
I had (apparently) figured this out a while ago but had Dan going through the code print_r'ing views variables to try to figure out where we could intercept the file ID and change the path to imagecache... and the path was already imagecache.
Administering CCK the Agaric Way
> - with the news blurb on front page -- how make it have start of txt not
> date
