Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: [Solved]: How do I determine what the Album ID is?  (Read 3575 times)

0 Members and 1 Guest are viewing this topic.

tgontz

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
[Solved]: How do I determine what the Album ID is?
« on: July 18, 2008, 01:47:17 pm »

I am trying to disable RC Menu for an album and I found this in another thread (http://forum.coppermine-gallery.net/index.php?topic=33377.0):

To disable the rcmenu in an album you need to add this if statement to rc_menu function
Code:
if($_GET['album'] == Album ID ){//change Album ID with your desire album id
      return $html;
   }
   
right after variable init like this:

// Add Righ Click Menu
function rc_menu($html)
{
   global $CONFIG, $RCMENU;
   if($_GET['album'] == 15){
      return $html;
   }
   $premenu='</title>
        .
        .
        .
   return $html;
   }
?>

HOWEVER, I don't know what my Album Id  is. How do I determine what it is?
« Last Edit: July 18, 2008, 04:48:29 pm by Joachim Müller »
Logged

Nibbler

  • Guest
Re: How do I determine what the Album ID is?
« Reply #1 on: July 18, 2008, 01:59:28 pm »

Look at the address bar when you are viewing the page.
Logged

tgontz

  • Coppermine novice
  • *
  • Offline Offline
  • Posts: 38
Re: How do I determine what the Album ID is?
« Reply #2 on: July 18, 2008, 03:17:58 pm »

Thank you very much!
Logged
Pages: [1]   Go Up
 

Page created in 0.021 seconds with 19 queries.