Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Hi there,
just installed Backlight 2 and so far so good its great!
My only issue that I cannot replace the top pallet title with a logo as I could do it beforehand.
Here is the link to the old post (http://community.theturninggate.net/vie … hp?id=7788).
For me the php code:
unction ttg_pallet_top_title( $style, $path ) {
echo '
<li class="logo"><a href="#"><h1>Site Title</h1></a></li>
';
return false;
} // END /**/
worked so far (you can still see on the blog page of my homepage www.sven-michael.com).
Any ideas?
Many thanks in advance and Krgds
Sven M
Offline
Hi Sven, the PHPlugins format has changed with Backlight 2. They are now class-based, which allows access to contextual information such as album data.
Have a look at the sample files in backlight/custom/ in the Installer zip to see what the new format looks like. Looking at what you have, the equivalent code would look like:
function pallet_top_title() {
echo '
<li class="logo"><a href="#"><h1>Site Title</h1></a></li>
';
return false;
} // END /**/
Note that this needs to be wrapped in the same code as the sample PHPlugins files. See the leading code in the example, from the start of the file up to
class PHPlugins extends APHPlugins
{
and then ending in:
} ?>
With your functions in between.
Offline
Hi Ben,
many thanks!!
Works great again...
Cheers
Sven M
Offline
Offline
Hey Ben
after I've fixed, thanks to your update, the php issue with WP, the top pallet logo still doesn't show on the WP blog.
Any ideas how to fix this?
Many thanks in advance and Krgds
Sven M
Offline
Please check Admin => Backlight Modules to ensure you're running the latest updates. PHPlugins should be working in WP Theme.
Offline
Logo in the top-pallet is working in WordPress for me in my release-version test site.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Done - works all great again!! Thx!
Offline
Pages: 1