Search found 3 matches

by stokesman
Sat Mar 21, 2020 12:12 am
Forum: Themes
Topic: Adding A Logo from Setting/General/Logo Does not work, for any theme
Replies: 11
Views: 5622

Re: Adding A Logo from Setting/General/Logo Does not work, for any theme

I hadn't noted the renaming previously but, yes it does happen. Not sure why that is but I don't see any issue with it.
by stokesman
Fri Mar 20, 2020 6:28 am
Forum: Themes
Topic: Adding A Logo from Setting/General/Logo Does not work, for any theme
Replies: 11
Views: 5622

Re: Adding A Logo from Setting/General/Logo Does not work, for any theme

Not sure when it was introduced but I used the logo method in my theme: <img src="<?= $site->logo() ?>" alt="<?= $site->title() ?>" width="360"> I guess I found that browsing the source because I just rechecked and didn't find it in the docs. So then made a pull request...
by stokesman
Fri Mar 20, 2020 2:29 am
Forum: Plugins
Topic: Plugin Development Question Help
Replies: 1
Views: 1507

Re: Plugin Development Question Help

$html = '<link rel="stylesheet" type="text/css" href=".'$this->getValue("colorScheme").'" />' The dot after href=" has to switch places with the single quote that follows it (make it href="'.) and then put a semi-colon at the end of the line. That m...