• Resolved clorange

    (@clorange)


    Is there away to remove the minus symbol (-) between the rating category title and the stars? I am speaking of the minus symbol that sets the star rating to zero.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author dpowney

    (@dpowney)

    Yes you can. You can use the following code snippet to not show the minus sign.

    function my_rating_form_include_minus( $remove ) {
    	return false;
    }
    add_filter( 'mr_rating_form_include_minus', 'my_rating_form_include_minus', 10, 1 );

    Daniel

    Thread Starter clorange

    (@clorange)

    Thank you very much. The code you provided didn’t work but a slight modification did

    
    add_filter( 'mrp_rating_form_include_minus', 'mrp_rating_form_include_minus', 10, 1 );
    
    function mrp_rating_form_include_minus( $remove ) {
    	return false;
    }
    
    Plugin Author dpowney

    (@dpowney)

    OK. You must be using the Pro version then ):

    isn’t it easier to remove fa-minus-circle ?

    Plugin Author dpowney

    (@dpowney)

    Yes I believe if you set the rating item as required then the minus symbol disappears. Daniel

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Minus symbol next to starts’ is closed to new replies.