https://github.com/roke75/ifc-plugin
Instant Feedback Collector WordPress plugin allows you to create and manage questions on your WordPress site, offering real-time results
https://github.com/roke75/ifc-plugin
javascript php plugin wordpress
Last synced: 3 months ago
JSON representation
Instant Feedback Collector WordPress plugin allows you to create and manage questions on your WordPress site, offering real-time results
- Host: GitHub
- URL: https://github.com/roke75/ifc-plugin
- Owner: roke75
- Created: 2024-09-17T17:13:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-27T14:21:36.000Z (over 1 year ago)
- Last Synced: 2025-02-13T07:19:03.048Z (over 1 year ago)
- Topics: javascript, php, plugin, wordpress
- Language: PHP
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instant Feedback Collector
Instant Feedback Collector allows you to create and manage questions on your WordPress site, offering real-time results.
## Table of Contents
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Adding a New Question](#adding-a-new-question)
- [Displaying the Question Form](#displaying-the-question-form)
- [Displaying Real-Time Results](#displaying-real-time-results)
## Features
- **Real-Time Results:** Answers update automatically without page reloads.
- **Manage Questions and Answers:** Add, edit, and delete questions and their associated answers through an admin panel.
- **Shortcodes:** Easily embed questions and results on any page or post using shortcodes.
## Installation
1. **Download the plugin's zip file** from the [GitHub repository](#).
2. **Upload the plugin** to your WordPress site:
- Navigate to `Plugins` > `Add New` > `Upload Plugin`.
- Select the downloaded zip file and click `Install Now`.
3. **Activate the plugin**:
- After installation, click `Activate Plugin`.
## Usage
### Adding a New Question
1. In the WordPress admin dashboard, navigate to `Instant Feedback Collector`.
2. In the `Add New Question` section, enter your question text.
3. Click `Add Question`.
4. Note the **Question ID** from the list of questions; you will need this for displaying the question.
### Displaying the Question Form
To display the question form on a page or post, use the following shortcode:
```wordpress
[ifc id="X"]
```
Replace `X` with the **Question ID** of the question you want to display.
### Displaying Real-Time Results
To display the real-time results of a question, use the following shortcode:
```wordpress
[ifc_results id="X"]
```
### Displaying Real-Time Results in word cloud
To display the real-time results of a question in a word cloud, use the following shortcode:
```wordpress
[ifc_results id="X" view="word_cloud"]
```
Replace `X` with the **Question ID** whose results you want to display.