"Powered By" footer text is now configurable

-Added a new "powered_by_text" option to the page_footer settings which can be used to override the text in the middle of the footer without the need to modify the source code
-The word "Explorer" was removed from the powered by text for new installs
This commit is contained in:
Joe Uhren
2023-05-10 19:22:16 -06:00
parent 813fe72471
commit f6ebb89f27
3 changed files with 9 additions and 3 deletions
+4 -1
View File
@@ -379,7 +379,10 @@ exports.shared_pages = {
// social_link_percent_height_tablet: Forced social link height percentage value for tablet screens
"social_link_percent_height_tablet": 42,
// social_link_percent_height_mobile: Forced social link height percentage value for mobile screens
"social_link_percent_height_mobile": 40
"social_link_percent_height_mobile": 40,
// powered_by_text: Customize the "powered by" text in the center of the footer with some custom html
// NOTE: Add the keyword {explorer_version} to display the current version number of the explorer
"powered_by_text": "<a class='nav-link poweredby' href='https://github.com/team-exor/eiquidus' target='_blank'>eIquidus Explorer v{explorer_version}</a>"
}
};