change link to homepage

floriauck

Joined: 2004-08-01
Posts: 17
Posted: Wed, 2005-07-13 14:52

hello,

does anybody know where I can change the url for the home/ button? I use the sirius theme.. Also, there is that text that I would like to change?

take a look at my attachement, I circled the two items I would like to change..

thanks for reading and for any pointers,
florian

AttachmentSize
gallery-menalto.jpg6.6 KB
 
valiant

Joined: 2003-01-04
Posts: 32509
Posted: Wed, 2005-07-13 14:59

all customization you do to pre core 0.9.30 versions are lost.

please wait a few days until the siriux layout has been ported to g2 0.9.31 and customize it there.

 
turnbulm

Joined: 2004-10-03
Posts: 431
Posted: Wed, 2005-07-13 16:18

You can customise the second item by going to 'Album Properties' while viewing the root album. The title and description in the 'General' tab are what get show here.

 
floriauck

Joined: 2004-08-01
Posts: 17
Posted: Wed, 2005-07-13 18:11

thanks for the help.. the second part is easy :)

however, for the home link .. can you just tell me what file I need to open?
I would like to change that link ...

thanks
florian

 
nivekiam
nivekiam's picture

Joined: 2002-12-10
Posts: 16504
Posted: Thu, 2005-07-14 13:35
Quote:
however, for the home link .. can you just tell me what file I need to open?
I would like to change that link ...

I believe that is now located in:
/galleryinstall/modules/core/templates/blocks/BreadCrumb.tpl
Please read the instructions at the top of the file prior to edting.

I don't remember where it was for the old versions, making any changes there will just mean you will need to make them again when you upgrade either to a current CVS or to B4.

 
Likely

Joined: 2006-06-11
Posts: 8
Posted: Sun, 2006-06-11 05:11

I use G2 with WP and wpg2 with andreas09 WP theme modified for integration and 'wordpressembedded' theme for G2 and when the gallery was showing, my 'Home' breadcrumb was 'http://mysite.co.uk' but needed it to show the link to the embedded home page, so in

/wordpressembedded/templates/theme.tpl

I changed:

Quote:
<div class="gbBreadCrumbhome">
<a href="/"> {g->text text="Home"}</a>
</div>
<div class="gbBreadCrumb">

to:

Quote:
<div class="gbBreadCrumbhome">
<a href="http://mysite.co.uk/library/wp-gallery2.php"> {g->text text="Home"}</a>
</div>
<div class="gbBreadCrumb">

and it now works fine.

Likely