Skip to content

Instantly share code, notes, and snippets.

@shreyans94
Created January 23, 2018 21:34
Show Gist options
  • Save shreyans94/65b08bd182e374cc33ac5c5c0bd8ae5a to your computer and use it in GitHub Desktop.
Save shreyans94/65b08bd182e374cc33ac5c5c0bd8ae5a to your computer and use it in GitHub Desktop.
Yith Review Mods
/* Yith Add 'Submit review' Link on Top */
if( defined('YITH_YWAR_PREMIUM') ){
add_action( 'ywar_summary_prepend','yith_ywar_show_submit_review_link',5 );
function yith_ywar_show_submit_review_link(){
echo '<a href="#review_form_wrapper">Submit review</a>';
}
}
/* Yith review customer image in lightbox compatibility */
if( defined('YITH_YWAR_PREMIUM') ){
add_action('wp_enqueue_scripts','yith_ywar_enqueue_pretty_photo',999);
function yith_ywar_enqueue_pretty_photo(){
wp_enqueue_script('prettyPhoto');
if( function_exists('WC') ){
wp_enqueue_style( 'woocommerce_fix_prettyPhoto_css', trailingslashit(WC()->plugin_url()) . 'assets/css/prettyPhoto.css');
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment