rdusnr

after theme_setup...

Sep 7th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1.  
  2. function patricks_woocommerce_catalog_orderby( $orderby ) {
  3. unset($orderby["price"]);
  4. unset($orderby["price-desc"]);
  5. return $orderby;
  6. }
  7.  
  8. function woo_archive_custom_cart_button_text() {
  9. return __( 'Check It Out', 'woocommerce' );
  10. }
  11.  
  12. function woocoommerce_my_settings() {
  13. add_filter( 'woocommerce_catalog_orderby', 'patricks_woocommerce_catalog_orderby', 20 );
  14. add_filter( 'woocommerce_product_add_to_cart_text’, ‘woo_archive_custom_cart_button_text' ); // 2.1 +
  15. }
  16.  
  17. add_action('after_setup_theme', 'woocoommerce_my_settings');
Advertisement
Add Comment
Please, Sign In to add comment