mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
6 lines
187 B
Text
6 lines
187 B
Text
add_filter( 'cartflows_variation_popup_toggle_text', 'change_variation_toggle_text', 10, 1 );
|
|
|
|
function change_variation_toggle_text( $text ) {
|
|
|
|
return "Add your choice of text here";
|
|
}
|