Advertisement
tommyosheawebdesign

emails.php

Jul 15th, 2021
1,450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.02 KB | None | 0 0
  1. * **********************************************************************
  2.  * Match Submission
  3.  * **********************************************************************/
  4. Redux::setSection( $houzez_opt_name, array(
  5.     'title'  => esc_html__( 'Matching Submission', 'houzez' ),
  6.     'id'     => 'email-matchingsubmission',
  7.     'desc'   => '',
  8.     'icon'   => '',
  9.     'subsection' => true,
  10.     'fields'    => array(
  11.         array(
  12.             'id'     => 'email-matching-submissions-info',
  13.             'type'   => 'info',
  14.             'notice' => false,
  15.             'style'  => 'info',
  16.             'title'  => wp_kses(__( '<span class="font24">Matching Submission.</span>', 'houzez' ), $allowed_html_array),
  17.             'desc'   => esc_html__('Use %matching_submissions as matching submissions list, %listing_count for number of listing count', 'houzez')
  18.         ),
  19.         array(
  20.             'id'       => 'houzez_subject_matching_submissions',
  21.             'type'     => 'text',
  22.             'title'    => esc_html__('Subject for Matching Submissions', 'houzez'),
  23.             'subtitle' => esc_html__('Email subject for matching submissions', 'houzez'),
  24.             'desc'     => '',
  25.             'default'  => esc_html__('Matching Submissions on %website_url', 'houzez'),
  26.         ),
  27.         array(
  28.             'id'       => 'houzez_matching_submissions',
  29.             'type'     => 'editor',
  30.             'title'    => esc_html__('Content for Matching Submissions', 'houzez'),
  31.             'subtitle' => esc_html__('Email content for matching submissions', 'houzez'),
  32.             'desc'     => '',
  33.             'default'  => '<div class="title">
  34. <h1 style="font-size: 20px; line-height: 30px; margin: 0 0 10px;">New Suggested Properties</h1>
  35. <p style="margin: 0 0 30px; color: #777777;">We have found %listing_count new properties that match your saved searches.</p>
  36.  
  37. </div>
  38. %matching_submissions',
  39.             'args' => array(
  40.                 'teeny' => false,
  41.                 'textarea_rows' => 10
  42.             )
  43.         ),
  44.     )
  45. ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement