drupal-module

drupal search on the top taxnomy term

i have designed a view with 2 exposed filter name(textbox) and place(taxnomy term with xxxxx -yy -yy -yy these terms it works fine when i search for -yy terms, but the problem when i select on xxxxx it should perform search on all the child terms (it should search even in -yy terms) but it seem to be happen , it only searches in the ...

Drpual module for ticketing system

Hi All, We are looking at implementing a ticketing system at our work place. We intially tried OS Ticket which was fine. But management are hoping to integrate it into out intranet. (which will be done in Drupal) The Ticketing system will be used for the IT Team. Are there any modules available in Drupal that handle tickets or...

Drupal: Content in blocks from node_reference fields?

After only a few weeks of working with Drupal I've come up with a recurring problem, which I don't really have an optimal solution to, so I'm hoping that someone here might be able to give some best practice pointers. What I have is a region inside my node.tpl.php, which is populated with blocks that display content from two different C...

What is the best way to create standards-based, cross-browser compatible rounded corners in Drupal?

I am currently working on a Drupal 6 theme, for which designer is explicitly requesting to use A LOT of rounded corners. I could of course create the rounded corners - traditionally - with images. But I know there must be also better and easier ways of creating rounded corners. Optimally, I would like to write my CSS as standards-compl...

What is a user category exactly?

I wanted to add a tab to the user edit page ie user/%/edit/foo, and was using the twitter module as a model. After much spelunking and stepping through with a debugger, I realised that I needed to add a hook_user function in my module so that the %user_category part of the menu router path would work. It's now functioning as expected, b...

Creating a dynamic navigation menu

I have a views page at the location "mysite.com/user/1/myposts". where the contents of the page depends on the argument supplied by views... which is the user id. I simply want to create a menu entry in the navigation... which accepts arguments, to create pages for logged in users. I have also tried the drupal api and found this page ht...

How to manage a drupal website in git

Hello all, I'm a bit lost, one of my developer co-worker is doing a drupal website, that is doing special pages, custom logos, custom hierarchy etc. His work is scattered in database tables (it looks like CCK create tables), database rows (texts, image links etc.), static files (pictures, PDFs ...) and maybe some PHP (custom module). M...

Views doesn't show checkbox fields where answer > 1

I am using Drupal with Views and the extended profiles module activated. To enable users to check multiple areas of interest I also added a module called Profile Checkboxes. It adds the ability to use a free-form list but turns it into either check boxes or radio buttons. This module works very cleanly and did not present errors. But if...

How to get rid of Drupal CSS stylesheets?

I am trying to accomplish the following. I need to use Drupal 6 as a project requirement, but I want to use it with my own HTML and CSS stylesheets for each node/view/panel etc. The problem is, whatever the theme, I always found that Drupal applies to my HTML content both my CSS stylesheets and the CSS related to the theme chosen. I hav...

Prevent drupal from loading other module's javascript

I have a drupal page that I'm using in a way that's very different from all the other pages of the site. I have a module that loads a set of specialized js on this page. I'm finding that my JS does not work well with the js from other modules or perhaps drupal core. How can I prevent the other modules from doing drupal_add_js on that s...

Building a Drupal Newsletter Module for handling Newsletter Articles

We're building a module for generating HTML for email newsletters. We've looked into using a few other modules (SimpleNews, MailChimp, among others), but due to various requirements, it'll be easier and better for us to build a custom solution. Being a new Drupal developer, I'm a bit worried about handling this in a "non-Drupal" way. Th...

Drupal node form customization

I have a node type 'review' which is attached to two vocabularies and are appearing in a fieldset named VOCABULARIES in the node form. But what i don't want them to be in a fieldset. I am using the function in a module and have also increased the module weight but no success till now. Can any one tell me what i am doing wrong here..? <...

Panels-style UI for arbitrary CCK fields?

I have a Drupal content type that has unlimited photo, textbox, and external link CCK fields, but while fields themselves can be reordered via drag-drop (i.e. photo B before photo A), I can't arbitrarily order amongst fields (i.e. photo B, link A, photo A, text A, link B). Panels is awesome, with its drag and drop, and just what I'm loo...

Update {node_counter} table programatically in drupal

I currently use the statistics module (core) on my Drupal 6 install. This increments a count in the {node_counter} table every time the node is viewed, and this works. My question is - can I programmatically increment this counter as well? I am looking to achieve this when users interact with content created from views (say click a ligh...

How to disable personal contact form option in drupal user account creation.

I am a drupal beginner. When a user creates his account he/she has the option to have a personal contact form. Where do I go to disable that? It's not in permissions. It's not a bad option but I know it will confuse the hell out of my site's users. It may even scare some away! ...

Embedding inline advertisement in nodes in Drupal 6.x ?

Hi, I am struggling to insert inline advertisements on the fly in node content same as done by "Adsense Injector" module but with a different network, any suggestions ? Thanks ...

Is there a customizable form in drupal similar to the contact form?

I need a form to enable user to enter event info in three fields (what, where, and when). Then I would like to be able to present the events in tabular form. I don't know PHP. Does drupal have a module for this purpose? ...

Drupal Views: Display recent nodes created by user on profile page

I'm wondering how I can display the recently created nodes by a user on their profile page. I've created a new page for a user at /user/%user and I want to be able to display the latest nodes created by that user. ...

Custom Drupal Module help

Hello, just started creating my own module. below is my code for the admin.inc file. in the administrative settings im looking to be able to enter numbers into a series of textfields. ideally this data is represented into a table format, however ive found this process to be very long winded and although it does as i want, i still feel i...

Drupal: How can I run a custom function every time a user posts a comment?

I'm using Drupal 6 and its core comment module. I want to run a custom funcion every time a user posts a comment, but I don't want to mess with the comment.module for obvious reasons. Is there a practical way I can do this in a custom module? If not, what are the alternatives as I don't want to write my own commenting system. ...