I am using ctools wizard and modal to in a process. This process basically consists of three forms.
What I want to do is update a node on page after wizard finishes. I tried updating dom after wizard finishes and using ctools_ajax_command_html but it didn't worked.
Then I tried using simple ctools_ajax_command_reload() and redirect functions, none of them works either.
I am not sure what and how much wrong I am doing this.
I am able to find the code for how to upload multiple files in custom form drupal 7 but wants do the same things drupal 6. Can you please suggest if anyone done previously.
function multifile_upload_form($form, &$form_state) {
$form = array();
$form['file'] = array(
'#type' => 'file',
'#name' => 'files[]',
'#title' => t('Upload some multifile'),
'#description' => t('You are allow to upload jpg, jpeg, png and gif, 10MB Max Size'),
'#attributes' => array('multiple' => 'multiple'),
);
To edit a published post I have to open a concrete node for that post (by pressing on a title line of the post) and only after that I can see Edit link.
I want to see a direct «Edit» link near the every post on a main page. My main page looks like this: http://apitu.org.ua
Is there any module which change a view for posts how they appear on a main page?
I've taken on a site and moving it to a new server due to issues with the previous 'web company'.
The hosting comapny that I'm using are very good but don't support Solr which the site was using previously for search functions. I've tried switching back to the core drupal search but whenever I do a search I get the 'white screen of death' and was hoping that someone might be able to help me understand the error message and fix the search.