recipesharing / spree_social_products

Add social sharing buttons for your Spree products

Home Page:http://spreecommerce.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Spree Social Products

Build Status Code Climate

A Spree extension that allows you to add social network sharing buttons (e.g. the Facebook like button) to your product pages.

There is some default styling that works well with the default spree theme, but this can be overrided.

Screenshot


Installation

Add this extension to your Gemfile:

gem 'spree_social_products', github: 'spree-contrib/spree_social_products', branch: 'master'

Then run:

bundle install

If you would like to use the default styles you can run:

bundle exec rails g spree_social_products:install

in order to copy over the required css files.


Usage

Enabled social networks will show up on product detail pages. In order to disable/enable social networks, head to Admin -> Configuration -> Social Sharing Settings.

NOTE: To enable the Facebook like button, you must update the Spree::Social::Config.facebook_app_id setting with your Facebook application ID. You can update this setting by running the following in the rails console:

Spree::Social::Config.facebook_app_id = 'YOUR_FACEBOOK_APP_ID'

Additionally, you may further customize the looks of the Facebook like button with the settings shown below with their default values and other possible values in comments:

Spree::Social::Config.facebook_layout = 'standard'      # button_count, box_count
Spree::Social::Config.facebook_show_faces = false       # true
Spree::Social::Config.facebook_verb_to_display = 'like' # recommend
Spree::Social::Config.facebook_color_scheme = 'light'   # dark
Spree::Social::Config.facebook_send_button = false      # true

You may refer to https://developers.facebook.com/docs/reference/plugins/like/ to preview the looks of different settings.


Contributing

See corresponding guidelines


Copyright (c) 2010-2015 John Dyer and other contributors. released under the New BSD License

About

Add social sharing buttons for your Spree products

http://spreecommerce.com

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Ruby 58.0%Language:HTML 37.6%Language:CSS 3.1%Language:CoffeeScript 1.0%Language:JavaScript 0.3%