Tagged Questions

Questions about version 7 of Drupal, a popular open source CMS. Rather than using this tag, consider posting your question directly on http://drupal.stackexchange.com/ instead.

learn more… | top users | synonyms (1)

13
votes
1answer
4k views

Upgrading from Drupal 6 to Drupal 7: best programmer's practices?

Although I am using drupal since the D4 series, I only started developing professionally for it with D6, so - despite I did various site upgrades - I was never faced by the task of having to port my ...
12
votes
5answers
3k views

Drupal 7 programming advancements, differences from Drupal 6 upgrade or wait

I was just wondering if there were any changes in the Drupal 7 code that effect server load and speed for large sites. Also, with 7 nearing beta release, should I wait to build the sites with Drupal ...
10
votes
1answer
523 views

Drupal 7 - custom View with custom table, no data showing up

I wrote a module to interface with Views 3 using Drupal 7, but when I create a view using my custom table as a data source, no data shows up. Here's my schema from MySQL: ...
8
votes
2answers
6k views

Drupal 7: Access custom node field in page.tpl.php

I added a new field "mood" (image) to the page content type. Is there any way to access the image stored in this field in the page.tpl.php?
7
votes
1answer
211 views

Does Drupal 7 have a better way of managing development changes than Drupal 6?

So one hassle of Drupal 6 is that it's tough to move changes from a development server to a test or staging server to a production server. Has this been made easier in Drupal 7? Is there some coding ...
7
votes
5answers
2k views

Menu path in Pathauto

How do I get pathauto under Drupal 7 to generate a URL alias by the full menu path?
6
votes
7answers
5k views

Starter theme for Drupal 7? Stark? Zen? [closed]

I have been using Drupal 6 for a year and always used Zen Sub-Theme for every project. So, should I keep using Zen for Drupal 7? Or is Drupal 7 bringing a better alternative? Maybe the Stark theme?
5
votes
1answer
177 views

Drupal 7 Node --> Fields Mapping In Database

I am trying to figure out how nodes are mapped back to the fields they contain for learning purposes. How is this done?
5
votes
4answers
516 views

Custom date format (callback with php logic)

I want to create a dynamic php date format. Example: show the time of the node if it was published today and only the day/month when older then today. I want this format to be available throughout ...
5
votes
2answers
457 views

Drupal 7 OpenID module

I would like to as how can we have the login similar to the stackoverflow openid using drupal 7? In stackoverflow, we have various login options like facebook, google, etc, the image is show to choose ...
5
votes
3answers
4k views

Drupal 7: Candidate page tpl name for particular custom content type entry

I'm working on a Drupal 7 website. I created custom content type for works. I have many fields, and some of them are related to page layout like particular page bg for each entry. So I need custom ...
5
votes
3answers
2k views

Should I use Drupal 6 or Drupal 7? [closed]

As the title states: Should I use Drupal 6 or Drupal 7? See, the dilemma here is the usability. I have to develop a website for a client, and I've been running into quite a bit of difficulty with ...
5
votes
1answer
669 views

Use Drupal7 AJAX goodness programmatically

X post from http://drupal.org/node/953016 The Drupal 7 AJAX system is great, it works very smoothly for forms and even for links. What I can't work out how to do in a sane way is to call it from ...
5
votes
2answers
782 views

URL alias for language frontpage

I have set Drupal to determine the language from the URL (path prefix), thus / is english and /da is Danish. This works fine for all pages except /da The frontpage for Danish is /node/14 but it ...
4
votes
1answer
180 views

Drupal 7 Mongo Search Views

I have nodes which are attached to mongo documents. I want to be able to do the following: Search the node's title + description + mongo keywords (mongo has a nid field). Any node that matches any ...
4
votes
1answer
144 views

How to access form data in hook_form_validate() in drupal 7

I have a form implemented from hook_form called simplequiz_form() I want to access its data after submit below is the code I have written but I can't seem to access its data once its submitted. What ...
4
votes
1answer
340 views

Creating a up reverse node reference list of a node in Drupal 7

What we are trying to do in Drupal 7: create a block that can be attached to a node view or taxonomy term view. In this block, a user can add links. These links can point to contacts, documents, links ...
4
votes
1answer
321 views

preprocess Vs. process functions in drupal template

What is the difference between function mythemes_preprocess_html(&$variables) { ... } and function mythemes_process_html(&$variables) { ... } in drupal 7 template.php. when must use ...
4
votes
3answers
229 views

Setting various environments (development, production) based on the URL

I am trying to setup environments in Drupal based on the URL. For example, if I go to mysite.local, it will use localdb and it will change the name of the site to "Local Mysite"; if I go to ...
4
votes
5answers
5k views

Drupal 7 - How to display node/add/sometype form on another page?

The whole problem is following: Lets say we have Items, Items can have Bids, Items can have Questions and Question can have Answer. When an Item is displayed, all content associated with this Item ...
4
votes
1answer
4k views

Drupal 7: Best Practice for a Dynamic Select List in Drupal 7

What is the best practice for a dynamic select list in Drupal 7? a) Create a Field with dummy options via the UI and overriding the options with hook_form_FORM_ID_alter or b) Creating a dynamic ...
4
votes
1answer
583 views

How to update the value of a single field invoking appropriate validation

I'm making a module to allow users to update single fields on in this case, their user entity. The code below is an example of the method I have initially been using to get it working and test other ...
4
votes
5answers
292 views

Techniques for building Drupal Modules Quickly?

I'm looking to see if anyone has any resources or tips for developing basic Drupal modules faster? Have you come up with anything to make your Module development faster? The Drupal module ...
4
votes
3answers
197 views

Basic drupal model / concepts

I'm migrating a site from a proprietary cms (reddot) to drupal. For all its flaws, reddot has a very simple yet flexible model: templates consist of markup with placeholders for variable content ...
4
votes
4answers
2k views

Which is the best drupal 7 book?

I'm not looking for a module programming guide yet, just concepts and examples to create a site with out-of-the-box functionalities. I guess a general knowledge of drupal is needed before developing ...
4
votes
2answers
1k views

Drupal 7 Single Sign on using settings.php

Hey guys, was just wondering how I would go about setting up my Single Sign on with no modules in Drupal 7. I had it running in Drupal 6 but some things were changed in the settings.php file and I'm ...
4
votes
3answers
3k views

Correct way to use Drupal 7 Entities and Field API

I'm trying to use Drupal 7's entities and field API to correctly build a new module. What I have been unable to understand from the documentation is the correct way to use the new API to create a ...
4
votes
3answers
10k views

Using JQuery in Drupal 7

I'm writing my own drupal 7 module, and like to use JQuery in it. $('#field').toggle(); But I'm getting this error: TypeError: Property '$' of object [object DOMWindow] is not a function Which ...
4
votes
2answers
368 views

What are the changes to Drupal 7 programming vs Drupal 6?

Drupal 7 is claimed to be a revolutionary new Drupal. But in what ways exactly? Looking for coding specific discussions.. Thanks!
4
votes
4answers
224 views

Build a new Drupal site using D7 [closed]

I'm planning to rebuild a site I've got, from self-hacked to Drupal. I'm planning to dive in to Drupal and later on work as a freelancer (using Drupal). And here's my question. After spending some ...
4
votes
2answers
4k views

Drupal pass argument to page

I have a custom Drupal module displaying some data in a table. Each row has a link which if clicked will delete the relevant row. Specifically, when the link is clicked it will take the user to a ...
3
votes
2answers
45 views

drupal reusable values

I wonder if there is a way to create reusable values in Drupal 7. For example in our mortgage website if we update rates in one place it updates everywhere we have used it. Example: Instead of ...
3
votes
1answer
63 views

Is it possible to add multiple location for a single node and solr can show all location for a search?

The scenario: let's say you have a product in multiple location and when you search for the product (not for location) you should see all locations. In Drupal you can use multivalue fields for ...
3
votes
2answers
147 views

Moved Drupal 7 site to a different server, can't log in

I recently moved my Drupal 7 site to a new hosting server and I'm stuck at the login page. As soon as I try and log in, I get directed back to the same page, but the URL changes from /user to /user/1, ...
3
votes
1answer
71 views

Drupal 7 temporary cache item won't expire

I have a fairly expensive server call that I need to cache for 30 seconds. It seems however that I can not get the cache to expire. In the code below, after the first time it caches, it will never ...
3
votes
1answer
110 views

Removing extraneous divs in drupal 7

I am using the header "global text-area" inside a view within drupal7. For some reason when I use the header function in the view I get a bunch of extraneous divs like the following at the end of my ...
3
votes
2answers
334 views

How can i do multiple file upload using Drupal 7 Form API?

I'd like to upload multiple files using Form API. '#type' => 'file' provides upload only one file. $form['picture_upload'] = array( '#type' => 'file', '#title' => t(''), '#size' ...
3
votes
3answers
819 views

A good tutorial for Drupal 7 cTools

I've been looking all over the internet for a good tutorial to help me start using cTools AJAX in Drupal 7. Any help with that ?!
3
votes
1answer
229 views

Drupal - How to get SUM of rows

I want to do a simple select with a SUM of several rows in Drupal, but I can't seem to figure out how to do that. I know there are more ways to do a query in Drupal (one of them is writing the actual ...
3
votes
2answers
60 views

making a query with é as column name in php drupal 7

I got this table with a column name Catégorie which I can't rename (long story) and that é is bothering me big time. I can't seem to query that column. I got the following code $query_brands = ...
3
votes
2answers
207 views

Can I modify theme_menu_link for a specific menu?

I would like to add pipes ("|") between menu items for one of the menus on my Drupal 7 site (theme name is "thompson"). I figured the best way to do this is to create a function in my template.php ...
3
votes
3answers
344 views

Safari 5.1 breaks CSS table cell spacing

My site was working fine across all major browsers right up until the update to Safari 5.1. Now, the primary navigation is busted up. I was using display:table-cell on the anchor element within the ...
3
votes
2answers
603 views

Get $node variable in html.tpl.php - Drupal 7

I'm trying to allow users to update head titles and meta descriptions for each page. I thought that an easy way to achieve this would be to add a field to the 'Basic page' content type for the page ...
3
votes
1answer
412 views

How do I apply webform validation in drupal 7?

I have webforms in my drupal 7 website. What I want is to validate my webform fields. The webform contains a phone field which should accept numeric field and should contain 10 numbers only. Is there ...
3
votes
4answers
444 views

Drupal 7 - Administration - Find node by it's field value

I'm looking for the way for the site's administrator / moderator to find / filter the list of nodes by some field custom value. Field value could be defined by radio / text / checkbox etc. Default ...
3
votes
1answer
202 views

Drupal 7 - Where is the Menu Description stored?

For the life of me I can't seem to track down where the "Menu Description" value's stored in Drupal 7! For example: I added a new menu link called "Cookie" and the menu description called "Yummy". I ...
3
votes
3answers
199 views

how to overwrite drupal default message when posting comments?

I would like to overwrite a default message for posting a comment. For example, I would like to display "Your comment has been sent to the site moderator and will remain private." instead of "Your ...
3
votes
1answer
407 views

Rule-based node creation: commerce product + product display node set

I'm trying to bind a Commerce product type to my own custom type node (serving as a display node). The goal is to enter new data in as few places as possible. I'm therefore exploring a rule-based ...
3
votes
2answers
324 views

What version of Drupal should I choose?

Today is the first time I entered Drupal website in order to get my head around it and was met by API pages for versions 6, 7, 8. I think 8 is in production, but anyway - what is the best version to ...
3
votes
1answer
835 views

How to display ONE image under teaser mode, while multi images under full content?

I'm building a site with Drupal 7.2, and using several useful modules (Views, Display Suite, and 20+ more). I've added an image field in a content type (article), and set the 'Field Settings' -> ...

1 2 3 4 5 30