I would like to remove the image size attributes for scaling purposes. Is there a way I can do this with a preprocess instead of going into the template file?
I am new to drupal. I'm using the martinelli theme and have a home tab and was able to create another page called 'polls'. Then I created a couple of polls. After that nothing makes sense. The only way that I can get them to show up is to select both published and 'promoted to front page' options. But they are on the home page (the home tab in the martinelli theme). But I want them to be on the 'Polls' page. I don't see a way to make that happen. How do you do that?
I am interested in how i can change the layout of the display for nodes so I can set up fields to sit side by side (or as i would like to design the layout) instead of always one field below another.
I am very new to programming in Drupal 7 but am absolutely addicted already, can anyone point me at a tutorial (or module if there is one) that can help me out with learning how to customise my layout of fields to suit my needs, this includes when I have added additional fields
I ve just discovered Drupal 7 and im blown away, and now need to start learning how to use it :)
Can anyone tell me the modules I should be looking at to help me build the following
I d like to build a system where I can have multiple issues and each issue can have a todo list (or set of actions) and a decisions made list unique to that issue.
Id also like to make a nice dashboard for creating new issues and for each issue its own dashboard to add decisions and to do items and if possible count the number of each in a tree view or similar
I am developing my own custom module and for that module I need a custom table also. So far, I have learned that to create a custom table I need to declare table's schema first. I know there is a function for it... hook_schema (). So, I wrote all of my schema in that function but still no table is created.
Can anyone tell me, what I am missing? Do I have to use hook_install () function to call my schema? I read some place that only defining schema for the table will create that table automatically.