I was wondering if anyone has created a module or extended the BlogAPI to allow users to take a post on the site and Blog it to an external blog. Similar to what Flickr allows you to do with a picture.
On one of my sites I would like users to be able to blog users playlists where it would send off a section of the preview and any other comments that the user wants to put in there, of course linking back to the site and orginal content creater.
If others are intrested in this I might start to create something similar to this functionality for drupal.. let me know.
This is a pretty unique question, and hopefully someone has an idea here. It shouldn't be that hard, but I'm not that skilled (yet) in Drupal.
I want to create a new menu module (or block - unrelated to Category_Menu) that is a menu of all of my Containers and categories. However, when I click on a Container or Category in the menu, I don't want to link to the page of that Cat or Cont - rather, all I want to do is drill down further. The best way to think of it is this - I want to be able to drill down to every Category, but I don't want to actually link to anything.
I want to have a set of radio buttons (same 'name') but give different id's to each, but can't figure out how to do it.
I can't create two form elements with the same name (obviously) and I can't see a way to identify which radio button I'm talking about if I use 'radios'.
Also, can I set the specific value that is sent when a particular radio button is clicked?
It seems like the 'value' of each radio button is just the index in the array of options.
I'm working on a module to allow users to choose their user picture from the a views gallery of images that they've uploaded.
I can't figure out how to remove the picture fieldset from the user account edit form. I assume form_alter is the right way to go, but can't seem to get it to work.
I have:
function users_picture_form_alter($form_id, &$form) {
if ($form_id == 'user_edit') {
unset($form['picture']);
}
}
I am a new user for Drupal and i have installed version 4.7 and i am ejoying it but i am facing a problem in embedding Gallery2 in my Drupal
my Gallery2 version is 2.1 and it working great alone and even Drupal is working fine alone
and here you are the error
Added the field 'Individual vote value' to my custom view page- this removed all nodes without a vote. I'd like these nodes to still be listed, but with a value of 0.
Option 1: when a node is added it's given a default vote value of 0
Option 2: the Views page lists nodes without a vote as 0
I've tried many different variations in the views settings- ie filters, fields, arguments, etc... but so far i haven't found the solution. Am i missing an easy fix, or is this something that needs to be coded?