Demoris
Forum Replies Created
-
Alewis,
Those are the lines I removed, and it worked for disabling the star rating requirement for me. Not sure what else could cause it, as these are the only area I found related to a star rating requirement.
Forum: Plugins
In reply to: [Definition List] [Plugin: Definition List] Blank Screen as it pop upThe file panel.php in the plugin has an html error that seems to be preventing it from displaying when you click the ‘DL” button in the rich editor.
Edit line 9 of the file panel.php to properly close the <title> tag:
<title>Definition List</title>
This should then display the popup properly.
The file panel.php in the plugin has an html error that seems to be preventing it from displaying when you click the ‘DL” button in the rich editor.
Edit line 9 of the file panel.php to properly close the <title> tag:
<title>Definition List</title>
This should then display the popup properly.
That works for me on my dev site. Do you have any reviews yet, or are they at 0 reviews?
Hey there,
You’ll need to edit 2 files from what I can tell to remove the requirement for a star rating.
1: open wp-customer-reviews.php and delete/comment out the lines from 1184 – 1186:
if ($this->p->frating < 1 || $this->p->frating > 5) { $errors .= 'You have triggered our anti-spam system. Please try again. Code 003<br />'; }
2: open wp-customer-reviews.js and delete/comment out the lines from 87-89:
if (frating < 1 || frating > 5) { err.push("Please select a star rating from 1 to 5."); }
This will disable the requirement for leaving a star rating.
Hey Lemon,
This might be what you’re looking for (note that this modifies the plugin code, which would be lost when upgrading):
Open wp-customer-reviews.php, and find the following line:
$the_content .= '<div id="wpcr_respond_1">'; /* start the div */
and add this directly below that:
global $wpdb; $row = $wpdb->get_results("SELECT COUNT(*) AS 'total' FROM '$this->dbtable' WHERE 'page_id'=$post->ID AND 'status'=1"); $the_content .= $row[0]->total . ' Reviews';
Forum: Plugins
In reply to: Asides TroubleAh well, got the Sideblog plugin to work, with no apparent reason of why it didn’t want to work earlier. Thanks for the help.
Forum: Plugins
In reply to: Asides TroubleTried that. Followed the instructions, but I get “Aside category not selected.” Even though I’ve selected the category in the Options and added <?php sideblog(’asides’); ?> like it said to.
Forum: Plugins
In reply to: Asides TroubleSettings is set to only show one post.
Asides should only show up in sidebar.