Which module could produce this tag-cloud image?
Is there a drupal module that could produce an image like this. I think it's some sort of a tag cloud or something. ...
Is there a drupal module that could produce an image like this. I think it's some sort of a tag cloud or something. ...
I used hook_nodeapi to add my custom field to a type of node $node->content['my_new_field'] = array( '#value' => $content, ); However the new field is only appeared at the end of the content. Is there anyway for me to select a place for it to display ? e.g: between Title and Body. For some reason I won't be able to use CCK, I want ...
Hello all, I'm new to CCK development and I'm having some problems creating a new field for my system. In particular, I'm writing a widget that attaches a file to a field. Once that happens, how can a formatter function figure out which field and node it's referring to in order to retrieve the right file associated with that field? ...
A web designer has created a design for our Drupal web site which requires a different color scheme for various sections of the site. Drupal does not support this design requirement by default. Currently I am using JavaScript to change the color scheme based on the page title. After adding some content pages I now realize that this is a...
How can I enable SSL (https) only on some pages of my Drupal website ? Do I need to use modules, or should I configure it from hosting settings ? thanks ...
Hi, i'm currently developing my first Drupal website, so i'm very new to it. Now i'm trying to add a field to the menu item form which makes it possible to add a subtitle to a certain menu item (All menu items on the first level need a subtitle, and i can't add it to a node or so, because some first level items are created with views, so...
I'm using the Ubercart car and I would like to replace the input field to specify the product quantities with a dropdown box. In this way, customers don't have to type the number of items they want to buy but they can just select an item in the dropdown popup: http://dl.dropbox.com/u/72686/dropdown.png How can I replace it ? Thanks ...
I need to add text areas to my website with the following charateristics: Only the first 2 lines should be visible with a "See more" link. When the user clicks on see more the remaining text is displayed without page refresh... It should be similar to Facebook "See more" functionality, showing the complete comments content, if these ...
I need to implement an "iphoto effect" over thumbnails. When the mouse moves over an image all the images in that gallery should appear in sequence. If I click on it a lightbox with a slideshow sequence starts. (I know how to do the lightbox, I dunno how to make the iphoto effect. Is there any module there for it ?) thanks ...
I'm following a drupal 5 tutorial that advises to get the Admin Role module. Is this module still useful for drupal 6? Part of the drupal 6 installation is the creation of an admin account. What does Admin Role do? Does it work on that account and improve it somehow, or does it create an entirely different admin account? ...
Hi, How can I add a tab into my personal profile (/users/my-name)? I used this function, but nothuing shows up: function tpzclassified_menu() { $items['user/%user/kleinanzeigen'] = array( 'title' => t('Meine Kleinanzeigen'), 'page arguments' => array(1), 'access callback' => TRUE, 'type' => MENU_LOCAL_TASK, ); re...
I'm using imagecache with an image gallery for drupal. When the field is set to an imagecache preset that links to the original image. I want it so that when the preset image is clicked, the original image loads in a new tab. How can I add the target="_blank" attribute to an imagecache preset? ...
Some nodes are displayed in the content list even if they don't exist anymore. When I click on them I get an empty page. I was wondering if I can just delete the rows from the "Node" table or I should clean something else. thanks ...
I'm new to drupal, and having a tough time getting a view to work (see this question). Since I can't figure out how to do this with Views, and since getting this done in code is usually a piece of code, is there a way I could bypass the Views UI interface entirely and set the view with normal MySQL code? ...
Hi, I've upgraded my drupal from 5 to 6. All Posts are still there/listed, but some (only the latest ones) show up only in the list (/admin/content/node). If I click the edit or view link, I am getting a 404. Why? ...
is there a module to generate taxonomy trees (with links to taxonomy pages) ? (And to automatically update them if new tags are added / removed from the list ?) ps. I'm talking about the front-end. I'm already using taxonomy manager that allows me to handle tags hierarchies from back-end thanks ...
how can I edit the taxonomy view ? I'm talking about the view that is automatically created for each taxonomy term. I noticed the taxonomy Views is disabled in Views: Default Node view: taxonomy_term (default) However it is used emulate Drupal core's handling of taxonomy/term. Than I was wondering where the default view for taxonomy ...
I inherited a project that seems to have a ton of custom modules. A lot of the modules have includes folders with include files that have regular HTML forms. I know that Drupal preaches using FAPI. My question is that in your experience are there any pitfalls with this approach or is this acceptable use? Thank you ...
I'm working on a wamp development environment. I've created a new database and used it to create a new drupal installation at wamp/www/drupalsite. This installation is unmodified and doesn't have any extra modules added to it. What if I want to create an exact copy or this installation so I don't repeat the installation process. My gues...
Is there any functionality in Drupal to make blocks appear only when I roll over a link ? I would like to use some blocks as popups in my page. If there isn't any, I would implement it with jQuery + CSS ...