Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/ffc84d84846659b4a4de7f737e7dba6f to your computer and use it in GitHub Desktop.
Save plugin-republic/ffc84d84846659b4a4de7f737e7dba6f to your computer and use it in GitHub Desktop.
Filter 'Edit Options' text
<?php
/**
* Filter 'Edit Options' text
*/
function prefix_after_cart_item_edit_options_text( $text, $product_id ) {
$text = 'My new text here';
return $text;
}
add_filter( 'pewc_after_cart_item_edit_options_text', 'prefix_after_cart_item_edit_options_text', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment