Αυτό το πρόσθετο δεν έχει δοκιμασθεί με τις 3 τελευταίες κύριες εκδόσεις του WordPress. Μπορεί να μην αναπτύσσεται ή να υποστηρίζεται άλλο και να έχει προβλήματα συμβατότητας με τις πιο πρόσφατες εκδόσεις του 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 Μαΐου 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” είναι λογισμικό ανοιχτού κώδικα. Οι παρακάτω έχουν συνεισφέρει στη δημιουργία του.

Συντελεστές

Σύνοψη αλλαγών

Release Date – 23 May 2022

  • Initial release!