forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 miscellaneous => Topic started by: nodric on March 13, 2006, 09:48:36 pm

Title: A little help understanding where the html content is held?
Post by: nodric on March 13, 2006, 09:48:36 pm
I am trying to add some custom links to the standard navigation links that appear and cannot find where they are located.

I also need to customise the text on the upload page and again cannot find the file where the static text is stored.

Grateful for being pointed in the right direction.

Many Thanks,

Nigel
Title: Re: A little help understanding where the html content is held?
Post by: Stramm on March 13, 2006, 11:04:22 pm
text on upload page... in your langauage file... eg. lang/english.php -> $lang_upload_php

another link... if only one use config and just add a link
if you need more links then copy over $template_sys_menu_button from the sample theme.php to the one your using and add that code to the similar lines and you'll see what it does

Code: [Select]
    addbutton($sys_menu_buttons,'Test title','Test onmouseover','test.html','test_id',$template_sys_menu_spacer);
Title: Re: A little help understanding where the html content is held?
Post by: nodric on March 13, 2006, 11:12:04 pm
text on upload page... in your langauage file... eg. lang/english.php -> $lang_upload_php

another link... if only one use config and just add a link
if you need more links then copy over $template_sys_menu_button from the sample theme.php to the one your using and add that code to the similar lines and you'll see what it does

Code: [Select]
    addbutton($sys_menu_buttons,'Test title','Test onmouseover','test.html','test_id',$template_sys_menu_spacer);

Thank you.  If only paid for support was as good!   ;D

Another one to mark as solved.