diff --git a/wp-content/themes/score/lib/scripts/custom.php b/wp-content/themes/score/lib/scripts/custom.php
index 1e4b9d4..2885f4b 100644
--- a/wp-content/themes/score/lib/scripts/custom.php
+++ b/wp-content/themes/score/lib/scripts/custom.php
@@ -197,6 +197,21 @@ function shrinkTitle()
jQuery(window).ready(function() {
+ if (jQuery('#slider-wrapper').length > 0 ) {
+ jQuery('#content-wrapper .post-loop .post-thumbnail a').click(function(e) {
+ e.preventDefault();
+ var oUrl = jQuery(this).attr('href');
+ jQuery('#playlist li [id^=postdata-link-]').each(function(indice, valor){
+ var nUrl = jQuery(this).html();
+ if (nUrl == oUrl) {
+ jQuery('#componentWrapper').videoGallery.loadMedia(indice);
+ return false;
+ }
+ });
+ return false;
+ });
+ }
+
if (jQuery('#slider-wrapper')) {
jQuery('#componentWrapper').videoGallery({
componentFixedSize: true,
diff --git a/wp-content/themes/score/loop-dedication-data.php b/wp-content/themes/score/loop-dedication-data.php
index 7418d09..b0b35b6 100644
--- a/wp-content/themes/score/loop-dedication-data.php
+++ b/wp-content/themes/score/loop-dedication-data.php
@@ -17,7 +17,7 @@ if(get_post_meta($post->ID, 'ghostpool_thumbnail_height', true) && get_post_meta
$gp_settings['image_height'] = $gp_settings['thumbnail_height'];
}
-$gp_settings['enc_link'] = getTinyUrl(add_query_arg('refid', bp_dedication_encode(get_permalink()), get_option('siteurl') . '/index.php'));
+//$gp_settings['enc_link'] = getTinyUrl(add_query_arg('refid', bp_dedication_encode(get_permalink()), get_option('siteurl') . '/index.php'));
// Song data
$gp_settings['video'] = get_post_meta($post->ID, 'ghostpool_dedication_url', true);
diff --git a/wp-content/themes/score/video-slider.php b/wp-content/themes/score/video-slider.php
index ea4fdf8..f7b5a01 100644
--- a/wp-content/themes/score/video-slider.php
+++ b/wp-content/themes/score/video-slider.php
@@ -130,9 +130,7 @@ if (have_posts()) {
-
+
FROM: