Is your Subway style updated to phpBB 3.1.5? phpBB 3.1.4 misses some template events required.Booster1304 wrote:I´m on 3.1.5.
As I probably said before (iirc), Subway is a paid style, so I don't have it to play with, sorry.
Is your Subway style updated to phpBB 3.1.5? phpBB 3.1.4 misses some template events required.Booster1304 wrote:I´m on 3.1.5.
So now i got 2 issues remaining:rxu wrote:For the Elegance style, you can try to create a folder namedelegance
in\ext\gfksx\ThanksForPosts\styles\
folder, and copy the content of\ext\gfksx\ThanksForPosts\styles\prosilver
folder into it.
Then open\ext\gfksx\ThanksForPosts\styles\elegance\theme\thanks.css
, find the codeand replace it with the codeCode: Select all
.thanks-icon:before { background-position: -3px -1px; background-image: url("./images/icons_button_likes.png"); } .thanks-icon:hover:before{ background-position: -3px -19px; } .removethanks-icon:before { background-position: -18px -2px; background-image: url("./images/icons_button_likes.png"); } .removethanks-icon:hover:before {background-position: -18px -20px; }
Code: Select all
.thanks-icon:before { content: '\f087'; font-size: 12px; } .removethanks-icon:before { content: '\f088'; font-size: 12px; }
That circled looks more like "image is missing".Booster1304 wrote:![]()
That´s it!!! Thank you for that hint!rxu wrote:Not really. There's forum based permissionSchtorsch wrote:There is only a permission to see the toplistsCan thank for posts
. Try checking permission masks for groups forum permissions.
If you switch to prosilver, does it work for you?SalazarAG wrote:No one has a solution to the button to thank that does not appear in Bootlike style?
In prosilver and elegance works very well. Only Bootlike the button is not visible.rxu wrote:If you switch to prosilver, does it work for you?SalazarAG wrote:No one has a solution to the button to thank that does not appear in Bootlike style?
Ok, let's try the following.SalazarAG wrote: Only Bootlike the button is not visible.
ext/gfksx/ThanksForPosts/bootlike/theme/thanks.css
please apply the trick from here viewtopic.php?p=14121016#p14121016ext\gfksx\ThanksForPosts\styles\bootlike\template\event\viewtopic_body_post_buttons_after.html
replace the whole code with the following:
Code: Select all
<!-- IF not postrow.S_FIRST_POST_ONLY or postrow.S_ONLY_TOPICSTART -->
<!-- IF not postrow.S_GLOBAL_POST_THANKS and not postrow.S_POST_ANONYMOUS and S_FORUM_THANKS and S_USER_LOGGED_IN and not postrow.S_IS_OWN_POST and (not postrow.S_ALREADY_THANKED or postrow.S_REMOVE_THANKS) -->
<a id="lnk_thanks_post{postrow.POST_ID}" href="{postrow.THANKS_LINK}" class="btn btn-default" title="{postrow.THANK_ALT}{postrow.POST_AUTHOR}"><i class="fa {postrow.THANKS_IMG} fa-fw"></i><span>{postrow.THANK_ALT_SHORT}</span></a>
<!-- ENDIF -->
<!-- ENDIF -->
Booster1304 wrote:The Square shows "F087" or "F088" like in exchanged code i´ve quoted a few posts earlier.
rxu any idea?
styles/Subway/template/viewtopic_body.html
looks pretty much just like prosilver one, so with the css edits above should work fine. Although, if you could PM me the style (I'll keep it private), I could try to dig into it deeper.Perfect! Appeared!rxu wrote:Ok, let's try the following.SalazarAG wrote: Only Bootlike the button is not visible.
1st, for theext/gfksx/ThanksForPosts/bootlike/theme/thanks.css
please apply the trick from here viewtopic.php?p=14121016#p14121016
2nd, for theext\gfksx\ThanksForPosts\styles\bootlike\template\event\viewtopic_body_post_buttons_after.html
replace the whole code with the following:Purge the cache and check result.Code: Select all
<!-- IF not postrow.S_FIRST_POST_ONLY or postrow.S_ONLY_TOPICSTART --> <!-- IF not postrow.S_GLOBAL_POST_THANKS and not postrow.S_POST_ANONYMOUS and S_FORUM_THANKS and S_USER_LOGGED_IN and not postrow.S_IS_OWN_POST and (not postrow.S_ALREADY_THANKED or postrow.S_REMOVE_THANKS) --> <a id="lnk_thanks_post{postrow.POST_ID}" href="{postrow.THANKS_LINK}" class="btn btn-default" title="{postrow.THANK_ALT}{postrow.POST_AUTHOR}"><i class="fa {postrow.THANKS_IMG} fa-fw"></i><span>{postrow.THANK_ALT_SHORT}</span></a> <!-- ENDIF --> <!-- ENDIF -->
Try the following code in thanks.css:Booster1304 wrote:Got it to PN you
Code: Select all
.thanks-icon:before
{
content: '\e0aa';
font-size: 12px;
}
.removethanks-icon:before
{
content: '\e0af';
font-size: 12px;
}