Support Center

Frequently asked questions and support documentation for RatingWidget.

Results

  • How to hide the content recommendations shown in the after vote report popup?

    To disable recommendations shown in the report popup, simply add this code snippet

    1
    "hideRecommendations": true,

    to your existing integration code options. Your new integration code should be something like:

    1
    2
    3
    4
    5
    6
    7
    ...
    options: {
       "hideRecommendations": true,
       "size": "medium",
       "style": "oxygen",
    }
    ...

    WordPress Plugin User?

    • Go to Dashboard > RatingWidget
    • Select the rating type tab you’d like to modify
    • Scroll to the bottom of the setting page until you get to the Power User Settings
    • Check the Activate / in-activate checkbox to activate the Power User Settings.
    • By default, the hideRecommendations option will already be there as one of the examples:
      1
      options.hideRecommendations = true;
    • Delete all other preset functions if not needed or modify when necessary. Then click Save Changes and you’re all set!