Nid yw'r ategyn hwn wedi cael ei ddiweddaru ers 3 ryddhad mawr. Efallai nad yw'n cael ei gynnal bellach ac efallai bod materion cydnawsedd wrth gael ei ddefnyddio gyda fersiynau mwy diweddar o WordPress.

Yournotify

Disgrifiad

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

Gosod

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

Cwestiynau Cyffredin

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' );

Adolygiadau

Mai 25, 2022
Everything just works, suitable for people, brands and businesses looking to collect email contact from anywhere on their website via the shortcode!
Read all 1 review

Contributors & Developers

“Yournotify” is open source software. The following people have contributed to this plugin.

Cyfranwyr

Translate “Yournotify” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Cofnod Newid

Release Date – 23 May 2022

  • Initial release!