


File viewer with search filter by category and sub categories Drupal 7
I want to create a site running locally(localhost) which views files that are uploaded by authorized user. Using search filter by category and sub categories, all ebooks that are included in that sub categories will be shown. How to create this kind of search? Is... read more
creating nodes with many to many relationship type with some fields?
This is in line with How to structure a "many-to-many" relationship between nodes. To keep things in line with the example from the linked thread, what if i was a book warehouse and i had a list of all my books but i want to allow each seller to name his own... read more
Single sign on between different Drupal versions
Is it possible to have this module working with different Drupal versions? We have some big projects in Drupal 6 and we want to start with a migration plan. Without being able to migrate parts of our sites, the task is much more complex than being able to do small... read more
Customising the print stylesheet for the print module
I Would like to customise the http://drupal.org/project/print style sheet. In the readme file it says: – To modify the template of printer friendly pages, simply edit the print.tpl.php or the css/print.css files. Re: css/print.css Does it refer to the print.css... read more
"Content manager: broken/missing"
After upgrading to Drupal 7, all the pictures of the items have disappeared. In the View UI editor, I cannot add an image content and it says “Content manager: broken/missing”. Help? read more
Generate one-time-use custom links for emails and interact with them to accomplish tasks
Is there a module that would auto-generate custom unique one-time-use URLs that timeout after a set time, and can be used to accomplish tasks and progress workflows in Drupal 7? Use Case 1 User must click link in email to verify their address is valid. Use Case 2 As... read more
How to build multivalue form elements using Form API
With the ‘field collections’ module at the form level, you can create a fieldset (or ‘field group’) that will accept multiple sets of values. Is there a way to do this with the Form API directly (or with the help ‘field collections’... read more
ajax button doesnt fire callback function
I need to put some ajax buttons on each row of table. My theme looks like this: /** * Implements hook_theme(). */ function application_wizard_theme($existing, $type, $theme, $path) { return array( ‘application_wizard_table’ => array( ‘render... read more
Filter and display all commerce product sales by date in a block?
In my Commerce Order settings I have created a custom select list field with the following Allowed values. Allowed values list 1|01/03/2013 2|02/03/2013 3|03/03/2013 4|04/03/2013 5|05/03/2013 Currently I can choose a date from a select list and that filters all sold... read more
Is it possible to change the _alt_ text wording for images in one place?
Is it possible to change the alt text wording for images in one place, as the wording used does not pass validation? The website contains a vast amount of pages, most of which with images having poorly worded alt text. Most of the images are inline, but some have been... read more
How to use the uc_csv module for getting reports
I am using the ubercart module for purchasing products. I want to export the order records/history as csv file and view it in spreadsheet. So I searched and got the uc_csv module. I have installed the module for Drupal 7. When I click the csv export link from store... read more
Ajax error while uploading or removing file through managed file
I am getting following error while using managed file through my custom form. “An Ajax HTTP request terminated abnormally.” Also, I updated my jquery version to latest using jquery_update module. Still no any benefit. Any idea on how to solve it? EDIT:... read more
Features to import content types
Features seem to be the right way to import custom centent type in a fresh D7 install from a D6. But when I create my feature on the D6 one, it added dependencies like modules,and once I import the module on D7, these aren’t satisfied because D7 module version... read more
Workbench Delete or Unpublish Multiple Nodes
I have recently installed work bench, when we view all contents there is no option to select multiple nodes and apply delete or unpublish action on them. I need to edit each node and then delete each node separately. Please suggest any solution. read more
Views Dropdown List of valid items
I’m looking to add an exposed filter that only contains existing user inputed value. For example. I’ve create a content type called ‘Items’. Inside that content type there is a field called ‘Team name’. The user can freely enter the... read more
Hook active trail path
I’ am trying to make a custom module to set an active trail path to a menu. I created a views page. The active trail must be to a node or taxonmy term. When I open the pages created by the view the active trail is not active. I wrote the script here below but it... read more
The file names are not transliterated on upload
I am using Drupal 7 and have transliteration module enabled. I have a file field and I want to have the names of the uploaded files to be transliterated on upload. The url alias for the nodes are well transliterated. But the file names are not. I checked the settings... read more
Remove node_view rendered node’s title link
I am using the code below to add a form to my node. This renders a page with the node and form on it. Apparently, the node is rendered with its title as a link. I would like to have the node’s title without a link. So I tried to change $node->content, but... read more