Skip to content

Instantly share code, notes, and snippets.

@Alimir
Created March 16, 2022 13:39
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 Alimir/6bac4ce40e67d448e83538050b996d37 to your computer and use it in GitHub Desktop.
Save Alimir/6bac4ce40e67d448e83538050b996d37 to your computer and use it in GitHub Desktop.
Disaply modal after voting
<?php
add_filter( 'wp_ulike_pro_init_modal_after_success', function( $content, $data ){
ob_start();
echo "Thank You!";
return ob_get_clean();
}, 10 , 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment