Title: Plugiva Pulse &#8211; Inline Feedback Plugin for WordPress
Author: Amit Biswas
Published: <strong>ફેબ્રુવારી 19, 2026</strong>
Last modified: એપ્રિલ 14, 2026

---

પ્લગીન શોધો

![](https://ps.w.org/plugiva-pulse/assets/banner-772x250.png?rev=3464907)

![](https://ps.w.org/plugiva-pulse/assets/icon-256x256.png?rev=3464907)

# Plugiva Pulse – Inline Feedback Plugin for WordPress

 [Amit Biswas](https://profiles.wordpress.org/amitbiswas06/) દ્વારા

[ડાઉનલોડ](https://downloads.wordpress.org/plugin/plugiva-pulse.1.2.1.zip)

 * [વિગતો](https://gu.wordpress.org/plugins/plugiva-pulse/#description)
 * [સમીક્ષાઓ](https://gu.wordpress.org/plugins/plugiva-pulse/#reviews)
 *  [સ્થાપન](https://gu.wordpress.org/plugins/plugiva-pulse/#installation)
 * [ડેવલપમેન્ટ](https://gu.wordpress.org/plugins/plugiva-pulse/#developers)

 [સપોર્ટ](https://wordpress.org/support/plugin/plugiva-pulse/)

## વર્ણન

Plugiva Pulse lets you collect lightweight feedback and quick reactions directly
inside your content.

Create structured pulses using yes/no, emoji, or short text questions, or embed 
inline feedback prompts anywhere using a shortcode. Responses are submitted instantly
via AJAX without page reloads.

It is designed to be privacy-conscious, fast, and easy to manage from the WordPress
admin without relying on third-party services.

### Key Features

 * Create and manage pulses from the admin panel
 * Embed inline feedback questions directly inside posts and pages (e.g. “Was this
   helpful?”)
 * Support for yes/no, emoji, and custom response types
 * AJAX-based submissions (no page reloads)
 * Built-in spam protection and duplicate prevention
 * Admin responses table with filtering and pagination
 * CSV export with post context
 * Developer-friendly filters for customization
 * Clean uninstall (optional data removal)

### Use Cases

 * Quick inline feedback inside blog posts
 * One-question reactions (e.g. “Was this helpful?”)
 * Emoji-based engagement prompts
 * Lightweight internal polls

Plugiva Pulse is intentionally focused. It does not try to be a full form builder.

### Usage

### Inline Feedback (New)

Plugiva Pulse allows you to embed lightweight feedback prompts directly inside your
content using a shortcode.

Example:

    ```
    [ppls_question q="Was this helpful?" type="yesno"]
    ```

You can also use emoji-based feedback:

    ```
    [ppls_question q="How do you feel about this?" type="emoji"]
    ```

Inline feedback is designed for quick engagement:

 * No page reloads (AJAX powered)
 * Duplicate submissions are prevented automatically
 * Feedback is stored with post context
 * Works seamlessly inside posts and pages

Custom response types can be added using the developer hooks below.

### Block

Use the **Plugiva Pulse** block in the block editor and select a pulse.

### Shortcodes

#### Pulse

    ```
    [ppls_pulse id="pulse_id_here"]
    ```

Replace `pulse_id_here` with the pulse ID shown in the admin panel.

#### Inline Feedback

Use inline feedback to collect quick reactions directly inside your content.

    ```
    [ppls_question q="Was this helpful?" type="yesno"]
    ```

You can also use:

    ```
    [ppls_question q="How do you feel about this?" type="emoji"]
    ```

### Developer Hooks

Plugiva Pulse provides filters to customize inline feedback behavior and extend 
response types.

#### ppls_inline_options

Modify or add custom inline question types.

Each type is defined as an array of key  label pairs.

Example:

    ```
    add_filter( 'ppls_inline_options', function( $options ) {

        $options['rating'] = [
            '1' => '⭐',
            '2' => '⭐⭐',
            '3' => '⭐⭐⭐',
        ];

        return $options;
    });
    ```

Use in shortcode:

    ```
    [ppls_question q="Rate this post" type="rating"]
    ```

Note: Validation is handled automatically based on defined options.

#### ppls_inline_feedback

Modify the feedback message shown after submission.

Example:

    ```
    add_filter( 'ppls_inline_feedback', function( $feedback ) {

        return [
            'icon' => '✓',
            'text' => 'Thanks for your feedback!',
        ];
    });
    ```

#### ppls_inline_hash_window

Control how long an inline session remains valid.

Default is 1 hour.

Example:

    ```
    add_filter( 'ppls_inline_hash_window', function( $window ) {
        return 600; // 10 minutes
    });
    ```

### Notes

 * Labels support safe HTML (sanitized via wp_kses_post)
 * Custom types automatically work with validation
 * No additional hooks are required for custom answer handling

## સ્ક્રીનશોટ

 * [[
 * Inline feedback inside post
 * [[
 * Inline feedback after submission
 * [[
 * Pulse list in admin
 * [[
 * Pulse editor
 * [[
 * Frontend pulse form
 * [[
 * Responses table
 * [[
 * CSV export

## સ્થાપન

 1. Upload the plugin files to the `/wp-content/plugins/plugiva-pulse` directory, or
    install the plugin through the WordPress plugins screen.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress.
 3. Go to **Plugiva Pulse  Pulses** to create your first pulse.

## એફએક્યુ (FAQ)

### Does this plugin store data externally?

No. All data is stored locally in your WordPress database.

### Does it support CSV export?

Yes. Responses can be exported as CSV from the admin interface.

### Is this GDPR-friendly?

Plugiva Pulse does not collect personal data by default. You are responsible for
how you configure and use it.

### Can I remove all data on uninstall?

Yes. The plugin includes a clean uninstall routine to remove stored data.

## સમીક્ષાઓ

આ પ્લગઇન માટે કોઈ સમીક્ષાઓ નથી.

## ફાળો આપનાર & ડેવલપર્સ

આ ઓપન સોર્સ સોફ્ટવેર છે. નીચેના લોકો એ આ પ્લગિન માટે ફાળો આપ્યો છે.

ફાળો આપનારા

 *   [ Amit Biswas ](https://profiles.wordpress.org/amitbiswas06/)

[“Plugiva Pulse – Inline Feedback Plugin for WordPress” ને તમારી ભાષામાં અનુવાદ કરો.](https://translate.wordpress.org/projects/wp-plugins/plugiva-pulse)

### વિકાસમાં રસ ધરાવો છો?

[કોડ બ્રાઉઝ કરો](https://plugins.trac.wordpress.org/browser/plugiva-pulse/), જોવો
[અસ્વીએન રેપોઝિટરીમાંથી](https://plugins.svn.wordpress.org/plugiva-pulse/),અથવા 
સબ્સ્ક્રાઇબ કરો[ડેવલપમેન્ટ](https://plugins.trac.wordpress.org/log/plugiva-pulse/)
દ્વારા[આરઅસઅસ](https://plugins.trac.wordpress.org/log/plugiva-pulse/?limit=100&mode=stop_on_copy&format=rss).

## ચેન્જલૉગ

#### 1.2.1

 * Improved plugin title and readme for better clarity and discovery
 * Minor optimizations

#### 1.2.0

 * New: Inline feedback questions via shortcode (yes/no, emoji, custom types)
 * New: Support for custom inline response types using filters
 * New: Developer hooks for options, feedback message, and hash window
 * Improved: Unified hash system for consistent session handling
 * Improved: Inline UX with instant feedback and smooth interactions
 * Improved: Duplicate prevention and session validation for inline responses
 * Improved: CSV export includes response context (type, source, post)
 * Improved: Admin responses table with better filtering support
 * Refactor: Centralized inline utilities for options, labels, and validation
 * Refactor: Simplified developer API (single source of truth for options)

#### 1.1.0

 * New: Admin “New Responses” bubble in menu
 * New: Highlight new responses in admin table
 * Improved: Better visibility of incoming feedback

#### 1.0.0

 * Initial release

## મેટા

 *  વર્ઝન **1.2.1**
 *  છેલ્લી અપડેટ: **5 દિવસ પહેલા**
 *  સક્રિય સ્થાપનો: **10 કરતા ઓછા**
 *  વર્ડપ્રેસ વર્ઝન ** 6.0 અથવા ઉચ્ચતર **
 *  **6.9.4** સુધી પરીક્ષણ કર્યું
 *  PHP સંસ્કરણ ** 7.4 અથવા ઉચ્ચતર **
 *  ભાષા
 * [English (US)](https://wordpress.org/plugins/plugiva-pulse/)
 * ટૅગ્સ:
 * [engagement](https://gu.wordpress.org/plugins/tags/engagement/)[feedback](https://gu.wordpress.org/plugins/tags/feedback/)
   [poll](https://gu.wordpress.org/plugins/tags/poll/)[questionnaire](https://gu.wordpress.org/plugins/tags/questionnaire/)
   [survey](https://gu.wordpress.org/plugins/tags/survey/)
 *  [વિગતવાર દૃશ્ય](https://gu.wordpress.org/plugins/plugiva-pulse/advanced/)

## પૉઇન્ટ્સ

હજુ સુધી કોઈ સમીક્ષા સબમિટ કરવામાં આવી નથી.

[Your review](https://wordpress.org/support/plugin/plugiva-pulse/reviews/#new-post)

[બધા  સમીક્ષાઓ જુઓ](https://wordpress.org/support/plugin/plugiva-pulse/reviews/)

## ફાળો આપનારા

 *   [ Amit Biswas ](https://profiles.wordpress.org/amitbiswas06/)

## સપોર્ટ

કંઈક કહેવું છે? મદદ જોઈએ છે?

 [આધાર ફોરમ જુઓ](https://wordpress.org/support/plugin/plugiva-pulse/)