https://github.com/themefuse/unyson-feedback-extension
Adds the possibility to leave feedback (comments, reviews and rating) about your products, articles, etc. This replaces the default comments system
https://github.com/themefuse/unyson-feedback-extension
Last synced: 11 months ago
JSON representation
Adds the possibility to leave feedback (comments, reviews and rating) about your products, articles, etc. This replaces the default comments system
- Host: GitHub
- URL: https://github.com/themefuse/unyson-feedback-extension
- Owner: ThemeFuse
- Created: 2014-11-26T16:29:36.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-12-22T12:32:18.000Z (over 9 years ago)
- Last Synced: 2025-04-07T17:41:20.505Z (about 1 year ago)
- Language: PHP
- Size: 30.3 KB
- Stars: 4
- Watchers: 9
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md.php
Awesome Lists containing this project
README
##STEP 1
###Copy the feedback code
This code is what displays the feedback on your website. Copy the following to your clipboard:
<?php if( function_exists('fw_ext_feedback') ) { fw_ext_feedback(); } ?>
---
##STEP 2
###Paste the feedback code in your theme
Open Appearance/Editor and select single.php file to edit.
In the theme, paste the code where you want your feedback to appear (usually beneath the the_title() tag) and then save your theme.
---
##STEP 3 (optional)
###Add the feedback to your archive listings
Copy the following code to your clipboard:
<?php if( function_exists('fw_ext_feedback') ) { fw_ext_feedback(); } ?>
Open Appearance/Editor and select archive.php file to edit.
In the theme, find the place where each item is rendered and paste the code inside that code block.
Then, save your theme.