[PLUGIN] Ridiculously Responsive Social Sharing Buttons

DawidXT
Sr. Bludit
Posts: 38
Joined: Wed Jul 15, 2015 3:56 pm

Fred wrote:I agree with you.
But I is not solution yet.
The best would be able to place custom hooks in the theme, or order the plugins in the list of plugins.

To address facebook there is none. The plugin lets you post the link of the page / post with the title to share.
so right now, I it is not possible to place the social media in other place than that?
User avatar
Fred
Legend Bludit
Posts: 236
Joined: Wed Jun 24, 2015 2:14 pm
Location: France
Contact:

You can before or after page/post, for this replace in plugin.php:

Code: Select all

	public function postEnd()
	{
		if( $this->enable ) {
			return pluginRRSSB::RRSSB();
		}

		return false;
	}

	public function pageEnd()
	{
		global $Url;

		// Bludit check not-found page after the plugin method construct.
		// It's necesary check here the page not-found.

		if( $this->enable && !$Url->notFound()) {
			return pluginRRSSB::RRSSB();
		}

		return false;
	}	
To

Code: Select all

	public function postBegin()
	{
		if( $this->enable ) {
			return pluginRRSSB::RRSSB();
		}

		return false;
	}

	public function pageBegin()
	{
		global $Url;

		// Bludit check not-found page after the plugin method construct.
		// It's necesary check here the page not-found.

		if( $this->enable && !$Url->notFound()) {
			return pluginRRSSB::RRSSB();
		}

		return false;
	}	
╰☆╮Bludit╰☆╮ is a open source and community contributions are essential to project success!
You are looking for a light forum based Json? Try my project Flatboard, it is free. ;)
Sorry for my little english, i'm french :oops:
DawidXT
Sr. Bludit
Posts: 38
Joined: Wed Jul 15, 2015 3:56 pm

Thanks for the tip. It is not resolving the thing. But I think I found a workaround (temporary solution) for this.
I will make it position: absolute, with the top and left attributes I need, to fit it in the right place of my theme.

Once again thanks Fred.
fdans
Sr. Bludit
Posts: 49
Joined: Wed Jun 10, 2015 9:14 pm

Please help !
This and no other RRSS lugin available for Bludit working fine for me...

The only one working is twitter but G+ gives error ever and Facebook gives a blank page with no content nor opening facebook page at all...

How can i have RRSS in my blog working?
any help?

Many thanks and greetings from Madrid
Paco
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

fdans wrote: The only one working is twitter but G+ gives error ever and Facebook gives a blank page with no content nor opening facebook page at all...
Can you please give the address of your website to have a look at it.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
User avatar
Fred
Legend Bludit
Posts: 236
Joined: Wed Jun 24, 2015 2:14 pm
Location: France
Contact:

Update, read first post ;)
╰☆╮Bludit╰☆╮ is a open source and community contributions are essential to project success!
You are looking for a light forum based Json? Try my project Flatboard, it is free. ;)
Sorry for my little english, i'm french :oops:
Plou
Jr. Bludit
Posts: 2
Joined: Wed Aug 31, 2016 1:46 am

How i can change the dimension of buttons? Thanks. :D
User avatar
LRAM
Master Bludit
Posts: 199
Joined: Sat Sep 24, 2016 4:02 pm
Location: France
Has thanked: 22 times
Been thanked: 2 times
Contact:

Hi
Soundcloud's missing :)
https://sucrepop.com
Candies for the ears
donsenilo
Sr. Bludit
Posts: 37
Joined: Fri Nov 18, 2016 12:18 am

Plou wrote:How i can change the dimension of buttons? Thanks. :D
Yes, the buttons are HUGE. Where and how can we change it ?
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

The Plugin uses the project Ridiculously Responsive Social Sharing Buttons.

There is more information about it and the configuration at

https://github.com/kni-labs/rrssb
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
Post Reply