[CDB] Thanks for posts

A place for Extension Authors to post and receive feedback on Extensions still in development. No Extensions within this forum should be used within a live environment!
Suggested Hosts
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: Extensions Development rules

IMPORTANT FOR NEEDED EVENTS!!!
If you need an event for your extension please read this for the steps to follow to request the event(s)
Locked
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [DEV] Thanks for posts

Post by </Solidjeuh> »

rxu wrote: Sat Aug 05, 2017 5:49 am
Froddelaar wrote: Fri Aug 04, 2017 8:25 pm It's all enabled
Try disabling all "...in a column" options as they're unworkable and most likely will be removed at some point.
Very strange :D it works when I disable those 2:

Show topic rating in a column:
Show forums rating in a column:

Thank you :D
User avatar
Galixte de EzCom
Registered User
Posts: 1106
Joined: Mon Oct 04, 2004 11:14 pm
Location: France
Name: Raphaël M.
Contact:

Re: [DEV] Thanks for posts

Post by Galixte de EzCom »

Froddelaar wrote: Sat Aug 05, 2017 12:03 pm
rxu wrote: Sat Aug 05, 2017 5:49 am
Froddelaar wrote: Fri Aug 04, 2017 8:25 pm It's all enabled
Try disabling all "...in a column" options as they're unworkable and most likely will be removed at some point.
Very strange :D it works when I disable those 2:

Show topic rating in a column:
Show forums rating in a column:

Thank you :D
Yes me too, i forgot to tell you, sorry.
Communau EzCom
📖 « Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
📋 Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
📋 Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Image Tu as un forum et tu veux aussi un site web ? Regarde par ici.
Maiden2k
Registered User
Posts: 10
Joined: Wed Mar 10, 2010 5:08 pm

Re: [DEV] Thanks for posts

Post by Maiden2k »

I have an issue with the redirection after thanking the post since upgraded to 3.2.1, when i click the icon, i get a blank page in firefox or a http error 500 in chrome, if i refresh the page, it gets to the invalid thank page but the thank is still working after that and counted.... any clue ? i reinstalled it a few times, cleared the counters....

im coming from 3.1.10, it was working well.
rxu
Extensions Development Team
Posts: 3712
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation
Contact:

Re: [DEV] Thanks for posts

Post by rxu »

If you upgraded from phpBB 3.1, you have to update the extension with its develop-3.2.x branch.
Maiden2k
Registered User
Posts: 10
Joined: Wed Mar 10, 2010 5:08 pm

Re: [DEV] Thanks for posts

Post by Maiden2k »

rxu wrote: Thu Aug 10, 2017 3:19 am If you upgraded from phpBB 3.1, you have to update the extension with its develop-3.2.x branch.
worked, thanks
User avatar
eunaumtenhoid
Registered User
Posts: 1007
Joined: Wed Jun 03, 2009 12:46 am
Location: ????

Re: [DEV] Thanks for posts

Post by eunaumtenhoid »

hi dude?

have i style flatboots and button thansk dont work help me pls?

Image
My translations of the extensions for Brazilian Portuguese
https://github.com/phpBBTraducoes
rxu
Extensions Development Team
Posts: 3712
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation
Contact:

Re: [DEV] Thanks for posts

Post by rxu »

That's a paid style which I don't have, so I can't, sorry.
User avatar
eunaumtenhoid
Registered User
Posts: 1007
Joined: Wed Jun 03, 2009 12:46 am
Location: ????

Re: [DEV] Thanks for posts

Post by eunaumtenhoid »

rxu wrote: Thu Aug 10, 2017 2:00 pm That's a paid style which I don't have, so I can't, sorry.
all work button only dont apper
What do you need?
I prey to edit what to pack cans in styles?
Before in 3.0 it was only edit HTML, in 3.1 I do not know where to edit to change buttons
My translations of the extensions for Brazilian Portuguese
https://github.com/phpBBTraducoes
rxu
Extensions Development Team
Posts: 3712
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation
Contact:

Re: [DEV] Thanks for posts

Post by rxu »

eunaumtenhoid wrote: Thu Aug 10, 2017 2:05 pm Before in 3.0 it was only edit HTML, in 3.1 I do not know where to edit to change buttons
1st, you need to connect the extension with your custom style. To start that, you can copy /ext/gfksx/ThanksForPosts/styles/prosilver/ to /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/. Purge the cache.
Then, you can edit /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/theme/thanks.css and html files in /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/template/ and /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/template/events/.

F.e. to adjust the thumbs up/down button, you'd need to change the code in /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/theme/thanks.css by deleting the font-size: 14px;
for both .thanks-icon:before and .removethanks-icon:before and replacing the content of /ext/gfksx/ThanksForPosts/styles/FLATBOOTS/template/viewtopic_body_post_buttons_after.html 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) -->
		<div class="btn-group btn-group-sm hidden-xs visible-sm visible-md visible-lg" role="group">
			<a id='lnk_thanks_post{postrow.POST_ID}' href="{postrow.THANKS_LINK}" title="{postrow.THANK_ALT}{postrow.POST_AUTHOR}"  class="btn btn-default btn-sm"  role="button">
				<i class="icon {postrow.THANKS_IMG} fa"></i>
			</a>
		</div>
	<!-- ENDIF -->
<!-- ENDIF -->
Then purge the cache (that needs to be done after every change like that).
User avatar
eunaumtenhoid
Registered User
Posts: 1007
Joined: Wed Jun 03, 2009 12:46 am
Location: ????

Re: [DEV] Thanks for posts

Post by eunaumtenhoid »

OMG dude i love u^^
perfect very thanks
My translations of the extensions for Brazilian Portuguese
https://github.com/phpBBTraducoes
FAMZONE
Registered User
Posts: 15
Joined: Mon May 22, 2017 12:33 pm

Re: [DEV] Thanks for posts

Post by FAMZONE »

Hi, I have a little "problem".
How can I move the like button on the line with the others buttons? Right now is like this: Image
rxu
Extensions Development Team
Posts: 3712
Joined: Wed Oct 25, 2006 12:46 pm
Location: Siberia, Russian Federation
Contact:

Re: [DEV] Thanks for posts

Post by rxu »

FAMZONE wrote: Mon Sep 04, 2017 5:47 pm How can I move the like button on the line with the others buttons
What's the style?
FAMZONE
Registered User
Posts: 15
Joined: Mon May 22, 2017 12:33 pm

Re: [DEV] Thanks for posts

Post by FAMZONE »

rxu wrote: Tue Sep 05, 2017 7:40 pm
FAMZONE wrote: Mon Sep 04, 2017 5:47 pm How can I move the like button on the line with the others buttons
What's the style?
Ravaio by Gramziu.
FAMZONE
Registered User
Posts: 15
Joined: Mon May 22, 2017 12:33 pm

Re: [DEV] Thanks for posts

Post by FAMZONE »

Anyone here?
User avatar
Galixte de EzCom
Registered User
Posts: 1106
Joined: Mon Oct 04, 2004 11:14 pm
Location: France
Name: Raphaël M.
Contact:

Re: [DEV] Thanks for posts

Post by Galixte de EzCom »

It’s a premium style, ask to the style author, here: https://themeforest.net/item/ravaio-mod ... 86/support.
Communau EzCom
📖 « Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
📋 Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
📋 Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Image Tu as un forum et tu veux aussi un site web ? Regarde par ici.
Locked

Return to “Extensions in Development”