Just a note that I just scheduled this year's Drupal for Church "birds of a feather" session at Drupalcon Denver. You can find details at: http://denver2012.drupal.org/bof/drupal-churches
The session if 5pm on Wednesday (6/21) and we'll plan on having dinner together afterwards. Note that you must have a Drupalcon conference ticket to attend. Hope to see lots of you there!
Hello,
I would like to add or alter either the hook_node_insert or hook_node_update function...not sure which to use. But I was following the answer on this code (http://drupal.stackexchange.com/questions/1068/how...):
/**
* Implements hook_node_insert()
*/
function mymodule_node_insert($node) {
if ($node->type == 'mytype') {
$node->path['alias'] = 'mytype/' . $node->nid;
}
}Hello,
I have a view which lists many records. The first column in in the table is set to link to the content.
The content itself has many fields including one which is a link that goes somewhere else.
Is there a way that when I click on the record in the views table I can go to the location where link listed inside of the content points to instead of the content the record is pointing to?
Thank you.
This will be a Drupal 7 based project, which (upon completion) will need to have the following integration:
- our Akamai CDN (API available)
- Encoding.com (API available)
- Amazon S3
- Recurly (API available)
Hi Everyone,
I am using image cache to serve up product images for my website. but it seems after every picture it puts a "1" which looks really weird. can someone please shed some light on why this might be happening and how to fix it? Thanks very much in advance