An open API service indexing awesome lists of open source software.

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

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.