geminilabs

Untitled

Nov 4th, 2025 (edited)
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. add_action('wp_enqueue_scripts', function () {
  2.     wp_add_inline_script(
  3.         'nectar-single-product-reviews',
  4.         "jQuery(function($){if(window.location.search.includes('?open-modal'))setTimeout(()=>$('a.nectar-product-reviews-trigger').click(),200)});"
  5.     );
  6. }, 20);
  7.  
  8. add_action('woocommerce_email_header', function ($heading, $email) {
  9.     if ('glsr_customer_review_reminder' === ($email->id ?? '')) {
  10.         add_filter('wpml_permalink', fn ($permalink) => "{$permalink}?open-modal", 20);
  11.     }
  12. }, 20, 2);
Advertisement
Add Comment
Please, Sign In to add comment