ეს პლაგინი არ დატესტილა WordPress-ის 3 ძირითად ვერსიაზე. როგორც ჩანს, ის უკვე აღარ არის მხარდაჭერილი და შესაძლოა არ იყოს თავსებადი WordPress-ის მიმდინარე ვერსიასთან.

Yournotify

აღწერა

This plugin registers a custom WordPress widget called Yournotify. This widget will allow you to connect to your Yournotify account with your API key and you will be able to select the list you want your visitors to subscribe to.

This widget can be used for all sorts of things, like: newsletter, lead capture, email sequence, and much more!

The Widget will output an email and telephone input field and a submit button, that’s all you need to capture your visitor’s email address and telephone. Main idea behind this plugin is that’s easy and simple to use.

External service

• This plugin uses external service (https://yournotify.com) via AJAX to pull your contact list, we use these data to populate your admin list selection for your newsletter subscribers.
• The link to the external service: https://yournotify.com
• The link to our data privacy policy page with information what we use your data for: https://yournotify.com/privacy-policy

დაყენება

From your WordPress dashboard

  1. Visit ‘Plugins > Add New’,
  2. Search for ‘Yournotify’ and install the plugin,
  3. Activate ‘Yournotify’ from your Plugins page.

From WordPress.org

  1. Download ‘Yournotify’.
  2. Upload the ‘yournotify’ directory to your ‘/wp-content/plugins/’ directory, using your favorite method (ftp, sftp, scp, etc…)
  3. Activate ‘Yournotify’ from your Plugins page.

Once the plugin is activated you will find the widget (Yournotify) in Appearance -> Widgets or in your page builder, if it supports widgets

ხდკ

How do I disable the default widget form styles?

You can do that easily with a help of custom WP filter. Please add this code to your theme:

add_filter( 'yournotify/disable_frontend_styles', '__return_true' );

How do I change the texts of the widget?

You can change it with a help of custom WP filter. Please add this code to your theme and change the texts to your liking:

function yournotify_form_texts() {
    return array(
        'name'  => esc_html__( 'Your Name', 'yournotify-btn' ),
        'email'  => esc_html__( 'Your E-mail Address', 'yournotify-btn' ),
        'telephone'  => esc_html__( 'Your Telephone', 'yournotify-btn' ),
        'submit' => esc_html__( 'Subscribe!', 'yournotify-btn' ),
    );
}
add_filter( 'yournotify-btn/form_texts', 'yournotify_form_texts' );

მიმოხილვები

25.05.2022
Everything just works, suitable for people, brands and businesses looking to collect email contact from anywhere on their website via the shortcode!
1 რევიუს წაკითხვა

მონაწილეები & დეველოპერები

“Yournotify” ღია პროგრამული უზრუნველყოფაა. შემდეგმა ადამიანებმა წვილი შეიტანეს მის განვითარებაში.

მონაწილეები

გადათარგმნეთ Yournotify თქვენს ენაზე.

დაინტერესებული ხართ დეველოპმენტით?

დაათვალიერეთ კოდი, შეამოწმეთ SVN რეპო, ან გამოიწერეთ შექმნის ჟურნალი : RSS.

ცვლილებები

Release Date – 23 May 2022

  • Initial release!