This forum is for module development and code related questions, not general module support. For general support, use the Post installation forum.

Position of Pagination in FlatForum

How i can change the position of pagination in FlatForum?

I need to place the pagination in footer and too in header of page. Which the best way to i make this?

Thanks,

Taxonomy? Categories? I'm losing my mind.

I am using Drupal 4.7. With 1000 modules.. and probably doing it completely wrong.

I think Im going a bit mental. Im addicted to Drupal. But I still have no idea what Im doing.

Anyways we've made it pretty far and I need figure this one out... It's the Holy Grail.

So... Ive looked far and wide for a straight answer... but to no avail..

Is there Anyway to Display Images in my TAXONOMY BLOCK?

It seems to skip all the code and go straight for the text...

Holy crap! Select Taxonomy terms as checkboxes and radio buttons!

Merlinofchaos, being the incredibly awesome chap that he is, hammered out this module that converts the difficult to use taxonomy term selection into radio buttons or checkboxes. This is an amazingly handy piece of code and really shakes up the submission procedure.

Awesome it is, there are ways it could be improved, things that require better coders than I - imagine if taxonomy parent terms had the same expansion and shrinking that sections of the page had.

Here's a screenshot of the module in action:
http://squidgystudios.com/drupal/current.jpg

And a proposed screenshot of the ideal:
http://squidgystudios.com/drupal/ideal.jpg

Specifically, if child nodes were automatically assigned a different div class based on their childhood, and perhaps level of childhood, and the expansion/contraction of parent terms. I'm throwing a 50$ bounty on this, if anyone can introduce those elements.

And finally, the module itself!

Place this in a file called test.module for best results.

<?php
function test_form_alter($form_id, &$form) {
if (isset($form['type']) && $form['type']['#value'] .'_node_form' == $form_id) {
if (is_array($form['taxonomy'])) {
foreach ($form['taxonomy'] as $vid => $taxonomy) {
if (is_numeric($vid)) {
if ($taxonomy['#multiple']) {
$form['taxonomy'][$vid]['#type'] = 'checkboxes';

What can cause superuser to get access denied?

Generally speaking, what type of things should I look for to see what would cause an access denied message to occur for the superuser of my site?

Came upon this issue after installing the administration.module, and am glad to do the hunting, but I don't even know what I'm looking for right now, since I've never had this issue.

Filed an "issue" under the project itself a few days ago, btw, and have not heard back, which is why am posting it here...

horizontal scrolling news

Is there any module that enables the title of any node type to be added into a horizontal scrolling news bar? Should I do this in the template or should I create a module for it?

Thanks

How do I test for menu item children?

I'm trying to create dropdown menus to match an existing site, and use the existing menu css. It's 99% working, but I need to add a class to links that have children. I'm currently doing this in my theme_menu_item_link function...

Pages

Subscribe with RSS Subscribe to RSS - Module development and code questions