Display Sku with premium version

0
Display Sku with premium version 1
emiliano
Nov 04, 2016 09:48 PM 1 Answers General
Member Since Nov 2016
Subscribed Subscribe Not subscribe
Flag(0)

hi,

i'm interested to buy the premium version of this plugin.

it's possible to display SKU in content section ?

see the image : http://prnt.sc/d2zt59

thanks

2 Subscribers
Display Sku with premium version 1
Display Sku with premium version 3
Submit Answer
Please login to submit answer.
1 Answers
Sort By:
Best Answer
0
Display Sku with premium version 4
PickPlugins
Nov 04, 2016
Flag(0)

Welcome to our forum,

Display SKU in slider still not available , but you can use filter hook to accomplish, you don't need premium version

Here is example code to filter title to display SKU under title

add_filter('wcps_filter_title', 'wcps_filter_title_extra' );
    
function wcps_filter_title_extra($title){
  
  global $product;
  
  return ''.$product->get_sku().''.$title;
  
  }

http://pickplugins.com/documentation/woocommerce-products-slider/filter-hooks/filters-wcps_filter_title/

http://imgur.com/a/nA5H4

http://imgur.com/a/HRUev

you can also filter same way price, cart, excerpt.

 

Let me know for more help.

 

Regards

 

Display Sku with premium version 5
PickPlugins
- Nov 07, 2016 08:20 AM
Flag (0)
0

If you love the support and our plugins please submit us five star reviews at wordpress.org plugin page
https://wordpress.org/support/plugin/woocommerce-products-slider/reviews/

If you need more help please feel free to contact any time.

Regards

Display Sku with premium version 5
PickPlugins
- Nov 05, 2016 02:45 PM
Flag (0)
0

i have update the code, please refresh and see it.

Regards

Display Sku with premium version 7
emiliano
- Nov 05, 2016 04:03 AM
Flag (0)
0

Thank you very much !!!!!

If I would insert the Sku above the product title what is the code ?

Thanks

Sign in to Reply
Replying as Submit