gallery intergration

Hi all,

just recently moved my drupal installation from a subdomain to a new domain.

www.vertigoimagery.co.nz

as part of my domain setup I can install gallery2 with no problems and it runs fine as a stand alone application

www.vertigoimagery.co.nz/gallery

¿ Show only Taxonomy for non-empty nodes ?

Hi

Sorry if I overlooked some part, but searching and browsing did not show a solution for:

When a site grows, so can do taxonomy terms.

Later when content is purged, old articles or pictures deleted etc., the taxonomy terms my become obsolete.

Question:

How can I have only such links in the menu or taxonomy links,
blocks or sitemap, which actually lead to active content ?

Is there such a function or switch, or where would I want to begin "hacking".

Regards

Roland

Kabbalah Grupo

Textos
Biblioteca
Membros
Contate-nos

Use 1 theme for admin, another for public site

I'm testing out using Drupal to allow me to create and manage basic web brochures, particularly when there are many pages involved. I was wondering if I could configure Drupal to show 1 theme for the main site and another theme for anything under /admin. This would make theme development a lot easier as I wouldn't have to bother with formatting the admin area. Is it easy to do?

Many thanks!

why can't drupal forums be more like phpbb and vbulletin?

After looking at all the different possibilities for integrating phpbb with drupal, I gave up because none of them were as tight as I wanted (for good reason -- phpbb assumes a lot about its users table -- it would take a lot of hacking to get it to accept drupal's users table as a substitute). So I just switched to using drupal's forums. One of the things that I sorely missed was being able to assign moderators to the forums.

Here's a patch that creates another node.module role "toggle nodes sticky". Users with that role can toggle the "sticky at top of lists" flag on nodes, which in forums, makes items show up at the top of forum topic listings, similar to the "announcement" or "sticky" functionality in common BB software.


Index: modules/node.module
===================================================================
--- modules/node.module (revision 5662)
+++ modules/node.module (working copy)
@@ -580,7 +584,7 @@
* Implementation of hook_perm().
*/
function node_perm() {
- return array('administer nodes', 'access content');
+ return array('administer nodes', 'access content', 'toggle nodes sticky');
}

/**
@@ -1614,6 +1618,7 @@
* Node author information
*/

+ $sticky_form_element = array('#type' => 'checkbox', '#title' =>t('Sticky at top of lists'), '#default_value' => in_array('sticky', $node_options));
if (user_access('administer nodes')) {

E-commerce: deleting a product

When deleting a product, it disappears completely from users order histories and transactions. We would like to be able to hide a product from the product assortment, while keeping the product details and order history. Has this been thought of in the e-commerce package?

Pages

Subscribe with RSS Subscribe to RSS - Drupal 4.7.x