I have Gallery2 "sucessfully" installed but for some reason it displays like this:
http://i279.photobucket.com/albums/kk127/nexusv2/what.jpg

Does anyone know a fix for this?

Thanks!

Comments

bwv’s picture

That is a consequence of your theme, most likely. Switch to bluemarine temporarily and see if that helps.
----------------------------------------------------------------------
http://www.bwv810.com/

I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.

Nexus5.01’s picture

It did help thanks, I have changed back to my old theme and removed some of the options and it has worked, I want to remove the blocks on that page, is this possible?

For example show the block in the right hand pane for every page except that page?

I went into the block options and set to "Show on every page except ones listed" and pasted this in:
http://thetwilightcollection.com/index.php?q=gallery&g2_view=core.ItemAd...

But it still shows, is it something about the address I am doing wrong?

Thanks.

bwv’s picture

I'm sorry, I am not sure I understand what you want to do.
----------------------------------------------------------------------
http://www.bwv810.com/

I am a writer and researcher. In my spare time I build websites with Drupal.
Je peux communiquer en français. / Я могу общаться на русском языке.

Nexus5.01’s picture

I just want to hide the blocks on the page but for some reason it wont let me.

decibel.places’s picture

try using this instead:

index.php?q=gallery&g2_view=core.ItemAdmin&g2_subView=core.ItemAdd&g2_itemId=7

~are you netsperienced? http://netsperience.org

Nexus5.01’s picture

It didn't work..... is there any other way?

decibel.places’s picture

decibel.places’s picture

I tried php mode techniques in http://drupal.org/node/181807

Now I am using this code

$gal = strrpos(request_uri(),'gallery');
if ($gal>0) $gal=0;
else $gal=1;
return ($gal);

I also tried

$gal = strrpos(request_uri(),'gallery');
if ($gal>0) $gal=FALSE;
else $gal=TRUE;
return ($gal);

Using Devel both return 1 on every page except gallery page they return nothing neither 0 nor 1

and

$gal = strrpos(request_uri(),'gallery');
if ($gal>0) $gal='FALSE';
else $gal='TRUE';
return ($gal);

returns TRUE on every page except gallery page returns nothing

But Gallery Block still displays on every page including gallery page

Drupal 6.2 installation

~are you netsperienced? http://netsperience.org

Nexus5.01’s picture

The blocks are still appearing on every page including the one I don't want it on :(

Thanks for your help by the way :D