Content sharing buttons

General discussion of development ideas and the approaches taken in the 3.x branch of phpBB. The current feature release of phpBB 3 is 3.3/Proteus.
Forum rules
Please do not post support questions regarding installing, updating, or upgrading phpBB 3.3.x. If you need support for phpBB 3.3.x please visit the 3.3.x Support Forum on phpbb.com.

If you have questions regarding writing extensions please post in Extension Writers Discussion to receive proper guidance from our staff and community.
Post Reply
KnocksX
Registered User
Posts: 80
Joined: Thu Jul 19, 2012 2:03 am

Content sharing buttons

Post by KnocksX »

Can we start looking at making it easier to integrate share buttons from social media and other content sharing sites into the forum? While it's possible to add "like" buttons to the main forum URL manually, it requires editing code in at least 3 different places (metadata, javascript, and actual button code) for every social network you would like to integrate. I propose the ability to add the metadata, javascript, and generic button code in ACP, with the ability for writers of styles to tweak the exact placement of the buttons.

A slightly more complex problem is the ability to share individual topics or "like" individual posts. This is currently somewhat accomplished with a mod but doesn't work in all scenarios, mostly because of the reason mentioned above--adding the metadata and javascript code correctly is still a chore.

For forums that do have this sort of content sharing or "liking" enabled, it really does wonders for their traffic. A "like" of a single post has the ability to bring exposure to hundreds of people.

Please note that there already is a topic called Social networks integration, but it discusses integrating the Facebook login system into the forum which is different from this topic.

Senky
Extension Customisations
Extension Customisations
Posts: 315
Joined: Thu Jul 16, 2009 4:41 pm

Re: Content sharing buttons

Post by Senky »

Sharing buttons overally are just great example of extension. I cannot imagine why we should integrate such feature into the core. While now it is quite complex MOD, in 3.1 user will not care extension is 0.5MB big, or just 0.1kb small - they will not modify anything themselves.

KnocksX
Registered User
Posts: 80
Joined: Thu Jul 19, 2012 2:03 am

Re: Content sharing buttons

Post by KnocksX »

I think if you want to look forward, it really needs to be in the core. Sharing has become such a major force that it is making its way into pretty much every website, let alone apps that are inherently social, like forums. Several forum teams, such as XenForo, are implementing it already.

I currently use my own code instead of the mod you've mentioned, but there are issues with asynchronous loading of the different javascripts, which reflects both on performance and the way the forum and the buttons load for the user. It would be much better if it was centralized in ACP and the loading was optimized in sync with the forum code.

User avatar
Vinny
Style Customisations
Style Customisations
Posts: 129
Joined: Thu May 20, 2010 4:01 am
Location: Brazil
Contact:

Re: Content sharing buttons

Post by Vinny »

I agree totally with Senky.

There are great MODs on CBD for this purpose that can be converted in extension.

I even started the conversion of my Share On MOD in extension to 3.1.

User avatar
callumacrae
Former Team Member
Posts: 1046
Joined: Tue Apr 27, 2010 9:37 am
Location: England
Contact:

Re: Content sharing buttons

Post by callumacrae »

I'm against this. Even if I did think the features should be implemented, there is no good way to implement them - Google's +1 button (and probably some others) cannot be loaded asynchronously. That means that if the social network goes down, or there are DNS issues, or if you work in an office which blocks the social network, they will kill the loading of the page (for example, route the google +1 URL to http://blackhole.webpagetest.org/ and try to load the chrome web store / mashable / business insider).
Made by developers, for developers!
My blog

User avatar
MichaelC
Development Team
Development Team
Posts: 889
Joined: Thu Jan 28, 2010 6:29 pm

Re: Content sharing buttons

Post by MichaelC »

Content sharing, not follow us etc.

Maybe an implementation of something like Add This?
Formerly known as Unknown Bliss
psoTFX wrote: I went with Olympus because as I said to the teams ... "It's been one hell of a hill to climb"
No unsolicited PMs please except for quotes.

Senky
Extension Customisations
Extension Customisations
Posts: 315
Joined: Thu Jul 16, 2009 4:41 pm

Re: Content sharing buttons

Post by Senky »

I still think it is the job of an extension. Even sharing code sometimes change, and slowness of phpBB's development could kill all possible sharing. I know all extensions are to be validated, so fix may come as slow as new version of phpB, however, the core code should not rely on remote, unstable code... (it is something else to use parts of Symfony, because they are part of core code, so there is not chance of change without knowledge of phpBB's development team. While sharing buttons are something else, not managed on phpBB's side...)

Post Reply