or the same question about linking the site identity to an anchor by myslef…?
Hello, @herwigviechtbauer!
For what you want, you need to modify the theme file.
If you decide to modify the theme files, I suggest you use the Child Theme. The Child theme is always a better option since a child theme inherits the look and feel of the parent theme and all of its functions, but can be used to make modifications to any part of the theme. In this way, customizations are kept separate from the parent theme’s files. Using a child theme lets you upgrade the parent theme without affecting the customizations you’ve made to your site…
So, to add an anchor link to the header image, follow the steps below:
Edit the “class-agama-helper.php” file in Agama theme:
1. First Open Appearance…
2. then Editor…
3. On the right side navigate to framework->class-agama-helper.php, and click on it to edit the file
4. Scroll down to the line #69,
https://prnt.sc/pcrltz
replace the code echo '<a href="'. esc_url( home_url( '/' ) ) .'">'; with the next one:
echo '<a href="http://viechtbauer.org#Persoenlich">';
https://prnt.sc/pcrmo1
5. click on the Update button to save the changes.
Best Regards
Very cool. Thanks a lot!!!