I want to display multiple images on my user created nodes. There should be a large image with thumbnails of every other images submitted to the particular node beneath it. When a user hovers/cliks on a thumbnail the large should switch to the corresponding image.
Something like this: http://www.amazon.com/Apple-first-generation-MB292LL-Tablet/dp/B002C7481...
After having searched drupal.org, a lot of googling and several reinstalls I hope you can finally help me:
I've installed Drupal, everything just worked perfectly. The fun begins when I change the color of any theme: No matter if I only change one color manually or select a different color set (for example 'belgian chocoloate') the theme I'm using (like Garland or Bartik) is messed up: No css styles seem to be applied any more. After resetting the colors to the default, everything is ok again.
For really long now (4 nights in a row), I have been trying to get rid of a single bug. I am making a custom module. I want to simply redirect users after they save an edit of a "book" page content type, so that I can create a multi-step form and possibly authenticate them before they can actually finish posting what they want to. I am experiencing the stupidest error: I cannot make it redirect. I am using the following code:
function oers_form_book_node_form_alter($form, &$form_state, $form_id){
$form['actions']['submit']['#submit'][] = 'oers_somethingsomething';
}
function oers_somethingsomething($form, &$form_state) {
$form_state['redirect'] = array('node/' . $form_state['node']->nid . '/resources');
}
I'm using drupal 7.2 and the latest dev version of Views (7.x-3.x-dev). I wanted to export all my views to file but, I don't see the Tools link anymore. What gives? Is there a new way of doing this?
I'm using the latest Drupal 7 core and the latest Views release and I'd like to display my node ImageField image in views table as a thumbnail. What am I doing is the ad site which displays all the products/services in a table with price and I would like to put product image too. Is it possible? Can someone guide me to how can I get this? Really need help.