• I’ve looked at the plugin files and it looks like it would just be a matter of removing this section from the file?

    <div class="feedback-options-selection">
    <input id="feedback-options-general" type="checkbox" name="feedback-general" value="" />
    <label class="feedback-label" for="feedback-options-general">'. __('I am highly knowledgeable about this topic (optional)').'</label>
    </div>

    Are there any other considerations? Should I remove it from the array as well?

    https://www.ads-software.com/extend/plugins/rate-this-page-plugin/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Where do you remove that from? Which file?

    Thread Starter thatposhgirl

    (@thatposhgirl)

    I removed it from rate-this-page-plugin/rtp-main.php and it seems to work. There is an array with the value is_highly_knowledgable:

    $rtp_data = array(
    					'post_id' 					=> $post_id,
    					'user_type'					=> $user_type,
    					'session_key'				=> $session_key,
    					'trustworthy_rate' 			=> $trustworthy_rate,
    					'objective_rate' 			=> $objective_rate,
    					'complete_rate' 			=> $complete_rate,
    					'wellwritten_rate' 			=> $wellwritten_rate,
    					'is_highly_knowledgable' 	=> $_POST['is_highly_knowledgable'],
    					'is_relevant' 				=> $_POST['is_relevant'],
    					'is_my_profession' 			=> $_POST['is_my_profession'],
    					'is_personal_passion' 		=> $_POST['is_personal_passion'],
    					'rate_date'					=> $_POST['rate_date'],
    					'is_page'					=> $_POST['is_page'],
    				);

    And I left that in. But I removed the other block of code without any problems, at least that I can see so far.

    Here is the plugin in action: https://coocoocachaw.com/SandBox/Ratings/the-first-doctor/

    This is just a test site, I haven’t tried to implement it into a production site.

    excellent ‘thatposhgirl’ this really works

    thanks very much

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Rate This Page Plugin] How difficult would it be to remove the knowledgeable part?’ is closed to new replies.