Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action( 'wp_head', 'remove_my_action' );
- function remove_my_action(){
- remove_action( 'woocommerce_after_shop_loop_item', 'jas_gecko_wc_add_buton' );
- }
- function jas_gecko_child_wc_add_buton() {
- global $post, $jassc;
- // Get product hover style
- $hover_style = $jassc ? $jassc['hover-style'] : cs_get_option( 'wc-hover-style' );
- if ( $hover_style == 1 ) {
- // Quick view
- echo '<a class="cp pr br-36 mb__10" href="'.get_permalink($product_id).'" data-prod="' . esc_attr( $post->ID ) . '"><i class="fa fa-eye mr__10"></i>' . esc_html__( 'Quick View', 'gecko' ) . '</a>';
- // Wishlist
- echo jas_gecko_wc_wishlist_button();
- } elseif ( $hover_style == 2 ) {
- // Quick view
- echo '<a class="cp pr bs-36" href="'.get_permalink($product_id).'" data-prod="' . esc_attr( $post->ID ) . '"><i class="fa fa-eye"></i><span class="tooltip pa cw fs__12 ts__03">' . esc_html__( 'Quick View', 'gecko' ) . '</span></a>';
- // Wishlist
- echo jas_gecko_wc_wishlist_button();
- }
- }
- add_action( 'woocommerce_after_shop_loop_item', 'jas_gecko_child_wc_add_buton' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement