Link auf Hauptseite führt ins Leere Link auf Hauptseite führt ins Leere
 

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

Main Menu

Link auf Hauptseite führt ins Leere

Started by VolkerF, Yesterday at 11:05:42 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

VolkerF

Hallo,

ganz unten auf der Hauptseite meines Coppermine Forums steht ja der Schriftzug" Powered by Coppermine Photo Gallery" Der Link verweist auf coppermine-gallery.net, welche aber nicht mehr funktioniert. Wie kann ich den Link auf coppermine-gallery.com ändern bzw. wo?

Danke und Gruß, Volker

phill104

Suchen Sie in Ihrer Themes-Datei ,,themes>"yourtheme">theme.php" nach dem unten stehenden Block. Falls vorhanden, bearbeiten Sie ihn wie unten beschrieben. Falls nicht, fügen Sie den gesamten Abschnitt unten in Ihre Themes-Datei ,,themes>"yourtheme">theme.php" ein.


/******************************************************************************
** Section <<<theme_credits>>> - START
******************************************************************************/

/******************************************************************************
// Function for the credits-section
In previous versions of Coppermine the "Powered by Coppermine" used to be
obfuscated to make it hard for non-coders to remove the tag. The reason behind
this was an additional license add-on that disallowed users to change the line.
The dev team has reviewed this policy for cpg1.5.x and decided that end users
ARE allowed to change or remove the line in legal terms.
HOWEVER: We have a forum policy for the support board instead: support will
only be given for galleries that show the "Powered by Coppermine" tag
unobfuscated.
Before removing the credits, please consider this as well:
Coppermine is free software, the dev team ASKS you to keep the footer intact.
We're convinced that you should give credit where credit is due. So please think
twice before you decide to remove the tag.
******************************************************************************/
function theme_credits() {
    $return = <<< EOT

<div class="footer" align="center" style="padding:10px;display:block;visibility:visible; font-family: Verdana,Arial,sans-serif;">Powered by <a href="http://coppermine-gallery.com/" title="Coppermine Photo Gallery" rel="external">Coppermine Photo Gallery</a></div>
EOT;
    return $return;
}
/******************************************************************************
** Section <<<theme_credits>>> - END
******************************************************************************/
It is a mistake to think you can solve any major problems just with potatoes.