Spree extension to allow linking of youtube reference IDs to products
Last updated on: December 03 at 12:49 PM
source code bug trackerDisplay YouTube video(s) on your product page.
watchable
association on Spree::Video
model — enables you to attach videos to any model in your appThere is no deface override included by default to include the videos in your product page. To add videos to your product page:
# products/show.html.erb
<%= render 'video', :product => @product %>
If you are using Twitter Bootstrap, you can easily add title tooltips to your video thumbnails:"
# javascripts/store/your.coffeescript
$('#video-thumbnails > a').tooltip()
bundle exec rails g spree_videos:install
# auto run via the install generator, but in case you didn't run it
bundle exec rake db:migrate
You can specify configuration options that get passed through to the JS dynamic youtube video switcher & the html5 embed. Take a look at config/initializers/spree_videos.rb
for example configuration.
By default spree_videos inserts the videos into #product_properties
in products/show
. Disable the override to remove this behavior.
You can easily customize the display of the thumbnails / player:
// stylesheets/store/videos.css.less
#product-videos {
#video-player {
// player holder
}
#video-thumbnails {
// thumbnail holder
a {
// thumbnails
display: block;
float: left;
&:hover { }
&:first-child { }
&:last-child { }
}
}
}
tags | spree versions |
---|---|
master | ~> 1.1 |