Nobs • Share Buttons
Add smart designed buttons after/before your posts (or wherever you want) to allow visitors to share your content (includes no JavaScript mode & counters). Buttons are Retina/HDPI-ready, translation-ready and come with useful options and hooks. Totally GDPR compliant, and accessibility and performance friendly. Includes a Gutenberg block. Select your favorites social networks among a little list. Display an optional sharings counter. You’re done! You can donate to support Creating a plugin and maintaining it of the years takes time and energy. Any support is really appreciated. Donate with Paypal Buy Me a Coffee (you can even subscribe for exclusive content, like sneak peek, free license, exclusive info, etc.) Revolut me Please, use the support forum to tell me bugs encountered, and be patient, remember it’s a free product build on my spare time Social networks supported: Diigo Evernote Facebook LinkedIn Mix Pinterest Pocket Reddit Tumblr Twitter Viadeo Weibo WhatsApp VKontakte Native Share API (for mobile devices, mostly, allowing to share with your favorite applications) Future supported Networks here Other actions supported: Send by Mail (mailto: or multi-recipient lightbox form) Print (buttons are not printed 😜) Add to bookmark Plugin Options: 8 graphic templates available (reworked) Compact option for smaller icons Choose to display only the social network icon Choose from all available networks Open links in a new window (deactivated by default) Add your Twitter account name to add “via” while sharing Choose to display buttons only on certain type of post (compatible with Custom Post Type) Choose to hide buttons only on certain posts directly in the edit page (metabox). Choose to display buttons at the bottom, the top of the content, or both (or just with shortcode or template function) Customize mail texts (subject and body), or mail in a lightbox Display a sharing counter (optional) Use shortcode [juiz_sps] or [juiz_social] wherever you want Use the Gutenberg Block wherever you need. (no settings available yet for this block) For developers: A lot of hooks are available for markup customization (or add some things) A hook is available and offers you the opportunity to add the buttons you need Use template function juiz_sps() or get_juiz_sps() in your code Contribute by creating you own button Skins easily. Available Languages: Deutsch (thank to Dennis Schmitz!) English French Japanese (thank to 半月 (Hangetsu)!) Russian (thank you Fandia!) Serbian (thank to Borisa Djuraskovic!) Spanish (thank to Roberto Castiñeira!) Turkish (thanks to Hakaner!) 🏁 You can contribute to translating in your own language! Thank you for your help 💕 Full Documentation available. This tool if made on my spare time for free, so if you say “it’s broken”, please tell me why, how, what so I can help you 😊 (better than a bad rating that won’t make things better) Before adding a bad rating, please open a support ticket to solve your issue. I’m here to help. Other plugins Find my plugins at https://profiles.wordpress.org/creativejuiz/
Top keywords
- available7×1.42%
- buttons7×1.42%
- add6×1.22%
- thank6×1.22%
- choose5×1.02%
- display5×1.02%
- juiz4×0.81%
- networks4×0.81%
- social4×0.81%
- support4×0.81%
- block3×0.61%
- choose to display3×0.61%
Saiy2k Nostr Components
Nostr Components brings the power of Nostr (Notes and Other Stuff Transmitted by Relays) to your WordPress site through modern web components. This plugin provides Gutenberg blocks and shortcodes that allow you to seamlessly integrate Nostr content into your posts and pages. Key Features Gutenberg Blocks: Modern block editor integration for Nostr Zap button, Post, Profile, Profile Badge, Follow Button, Like Button, and Livestream Shortcodes: Classic editor support with simple shortcode syntax Selective Loading: Enable only the components you need for optimal performance Customizable: Configure relays, themes, and component settings Security: Built-in security with custom element allowlist via KSES Performance: Conditional asset loading based on enabled components Available Components Nostr Zap button: Allows your readers to zap to your posts and pages Nostr Follow Button: Interactive follow/unfollow buttons for Nostr users Nostr Post: Display Nostr notes/posts with full content and metadata Nostr Profile: Show complete Nostr user profiles with bio, stats, and social links Nostr Profile Badge: Compact profile display perfect for sidebars and footers Nostr Like Button: Like URLs using Nostr reactions (NIP-25) Nostr Livestream: Display Nostr livestreams (NIP-53) with video playback and participant information How It Works Install and activate the plugin Go to Settings → Saiy2k Nostr Components to configure Enable only the components you need Add blocks in the Gutenberg editor or use shortcodes Configure relays and theme settings as needed Example Usage Gutenberg Blocks: Simply add the Nostr blocks from the block inserter and configure them in the block settings. Shortcodes: [nostr_zap_button pubkey=”npub1abc…” url=””] [nostr_post eventid=”note1abc…”] [nostr_profile pubkey=”npub1abc…”] [nostr_profile_badge pubkey=”npub1abc…”] [nostr_follow_button pubkey=”npub1abc…”] [nostr_like_button] [nostr_livestream naddr=”naddr1abc…”] Adding Like and Zap Buttons to All Posts/Pages To automatically add Like and Zap buttons to the end of every post and page: Go to Appearance → Theme Editor (or use a child theme for safer customization) Select your active theme (or child theme) Open functions.php Add the following code at the end of the file: // Add shortcode to the end of every post and page function add_shortcode_to_content($content) { // Only add in single posts and pages (not homepage or archives) if (is_singular(['post', 'page']) && in_the_loop() && is_main_query()) { $shortcode_1 = do_shortcode('[nostr_like_button]'); $current_url = esc_url(get_permalink()); $shortcode_2 = do_shortcode('[nostr_zap_button npub="[YOUR-NPUB-GOES-HERE]" url="' . $current_url . '"]'); $content .= ' ' . $shortcode_1 . ' ' . $shortcode_2 . ' '; } return $content; } add_filter('the_content', 'add_shortcode_to_content'); Important Notes: * Replace [YOUR-NPUB-GOES-HERE] with your actual Nostr public key (npub format) * Always use a child theme when modifying theme files to preserve changes during theme updates * The buttons will only appear on single post and page views, not on archive pages or the homepage Development This plugin is developed as part of the Nostr Components project. For development, bug reports, and feature requests, please visit the GitHub repository. Support For support, please visit the GitHub repository or create an issue. Privacy Policy This plugin does not collect, store, or transmit any personal data. All Nostr data is fetched directly from public relays and displayed locally on your site. If components fetch data client‑side, visitors’ browsers may directly connect to configured relays (exposing their IP and user agent to those relays). Configure trusted relays accordingly.