<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Moodle Plugins directory: Course ratings: Comments</title>
    <link>https://moodle.org</link>
    <description>Add ratings and reviews to the courses</description>
    <generator>Moodle</generator>
    <language>en</language>
    <copyright>(c) 2026 Moodle - Open-source learning platform | Moodle.org</copyright>
    <image>
      <url>https://moodle.org/theme/image.php/moodleorg/core/1776241734/i/rsssitelogo</url>
      <title>moodle</title>
      <link>https://moodle.org</link>
      <width>140</width>
      <height>35</height>
    </image>
    <item>
      <title>Tuesday, 17 March 2026, 3:46 AM - José Chacín</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-89813</link>
      <pubDate>Mon, 16 Mar 2026 19:46:05 GMT</pubDate>
      <description>by José Chacín. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello Marina! &lt;br&gt;
Is there any way that I can bring that raiting and its functions emmbeded into a Joomla html addon?&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-89813</guid>
    </item>
    <item>
      <title>Monday, 19 January 2026, 7:04 PM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-89333</link>
      <pubDate>Mon, 19 Jan 2026 11:04:47 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Please remember to use bug tracker (link above)&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-89333</guid>
    </item>
    <item>
      <title>Monday, 19 January 2026, 9:41 AM - Renato de Brito</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-89328</link>
      <pubDate>Mon, 19 Jan 2026 01:41:58 GMT</pubDate>
      <description>by Renato de Brito. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Marina Glancy!!&lt;br&gt;
&lt;br&gt;
I installed the plugin on Moodle version 4.5. For the &quot;Edwiser&quot; course format, the evaluation doesn't appear for the students!&lt;br&gt;
&lt;br&gt;
Is there any solution?&lt;br&gt;
&lt;br&gt;
Tks,&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-89328</guid>
    </item>
    <item>
      <title>Tuesday, 4 November 2025, 2:53 AM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-88803</link>
      <pubDate>Mon, 03 Nov 2025 18:53:38 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Please use bug tracker for reporting bugs (this issue has already been reported)&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-88803</guid>
    </item>
    <item>
      <title>Tuesday, 4 November 2025, 2:50 AM - iacademycertifications iacademycertifications</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-88802</link>
      <pubDate>Mon, 03 Nov 2025 18:50:22 GMT</pubDate>
      <description>by iacademycertifications iacademycertifications. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Error: “Call to undefined function tool_courserating\external_format_text()” on Moodle 5.1&lt;br&gt;
&lt;br&gt;
After upgrading to Moodle 5.1, the Course Rating plugin may display the star ratings correctly but fail to load the reviews page, throwing the following exception:&lt;br&gt;
&lt;br&gt;
Call to undefined function tool_courserating\external_format_text().&lt;br&gt;
&lt;br&gt;
Cause:&lt;br&gt;
In recent Moodle versions, the function external_format_text() still exists in the core file lib/externallib.php, but the plugin’s helper.php file runs inside the namespace tool_courserating.&lt;br&gt;
&lt;br&gt;
Because of that, PHP tries to resolve the call as tool_courserating\external_format_text() instead of the global \external_format_text() function from the core library, which leads to the error.&lt;br&gt;
&lt;br&gt;
Solution:&lt;br&gt;
Edit the file /admin/tool/courserating/classes/helper.php and, just below the line&lt;br&gt;
namespace tool_courserating;, add the following statement:&lt;br&gt;
&lt;br&gt;
use function \external_format_text;&lt;br&gt;
&lt;br&gt;
Optionally, for full compatibility with Moodle 5.1, you can also include:&lt;br&gt;
&lt;br&gt;
global $CFG; require_once($CFG-&amp;gt;libdir . '/externallib.php');&lt;br&gt;
&lt;br&gt;
Then purge Moodle caches using the CLI command:&lt;br&gt;
php admin/cli/purge_caches.php&lt;br&gt;
&lt;br&gt;
After that, reload the course ratings page — reviews will now appear correctly alongside the star ratings.&lt;br&gt;
&lt;br&gt;
The begining of the file helper.php should be in this way:&lt;br&gt;
 &amp;lt;?php&lt;br&gt;
namespace tool_courserating;&lt;br&gt;
&lt;br&gt;
defined('MOODLE_INTERNAL') || die();&lt;br&gt;
&lt;br&gt;
use function \external_format_text;&lt;br&gt;
use core_customfield\data_controller;&lt;br&gt;
use core_customfield\field_controller;&lt;br&gt;
use tool_courserating\external\stars_exporter;&lt;br&gt;
&lt;br&gt;
// Carga explícita por compatibilidad con Moodle 5.1&lt;br&gt;
global $CFG;&lt;br&gt;
require_once($CFG-&amp;gt;libdir . '/externallib.php');&lt;br&gt;
&lt;br&gt;
/**&lt;br&gt;
 * Additional helper functions&lt;br&gt;
 *&lt;br&gt;
 * @package     tool_courserating&lt;br&gt;
 * @copyright   2022 Marina Glancy   * @license     &lt;a href=&quot;https://www.gnu.org/copyleft/gpl.html&quot; class=&quot;_blanktarget&quot; target=&quot;_blank&quot; rel=&quot;noreferrer&quot;&gt;https://www.gnu.org/copyleft/gpl.html&lt;/a&gt; GNU GPL v3 or later&lt;br&gt;
 */&lt;br&gt;
class helper {&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-88802</guid>
    </item>
    <item>
      <title>Tuesday, 7 October 2025, 3:55 PM - Mac Dela Cruz</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-88525</link>
      <pubDate>Tue, 07 Oct 2025 07:55:07 GMT</pubDate>
      <description>by Mac Dela Cruz. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hi! I downloaded the plugins and uploaded it in our LMS. However, when I am using the Edwise course format, rating section/block is not showing. How can I address this?&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-88525</guid>
    </item>
    <item>
      <title>Monday, 19 May 2025, 5:42 PM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-87337</link>
      <pubDate>Mon, 19 May 2025 09:42:20 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello, this is a very good suggestion. Can you please create an issue on GitHub (bug tracker link above), so we keep the conversations in the correct place. Thank you.&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-87337</guid>
    </item>
    <item>
      <title>Monday, 19 May 2025, 5:05 PM - Emilie Neufeind</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-87336</link>
      <pubDate>Mon, 19 May 2025 09:05:09 GMT</pubDate>
      <description>by Emilie Neufeind. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello Marina,&lt;br&gt;
We use and like your plugin &lt;img class=&quot;icon emoticon&quot; alt=&quot;smile&quot; title=&quot;smile&quot; src=&quot;https://moodle.org/theme/image.php/moodleorg/core/1776241734/s/smiley&quot;&gt; &lt;br&gt;
But we want improve our accessibility to our moodlesite. &lt;br&gt;
For a further release, is it possible for you to add a better audio description for the stars, scoring and numbers of rates ?&lt;br&gt;
Thanks a lot&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-87336</guid>
    </item>
    <item>
      <title>Thursday, 20 February 2025, 7:27 PM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-86423</link>
      <pubDate>Thu, 20 Feb 2025 11:27:47 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Please use the &quot;Bug tracker&quot; link above to report bugs and suggest improvements&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-86423</guid>
    </item>
    <item>
      <title>Thursday, 20 February 2025, 7:20 PM - Luis Sanchez</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-86422</link>
      <pubDate>Thu, 20 Feb 2025 11:20:35 GMT</pubDate>
      <description>by Luis Sanchez. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello. I´m using the Lambda theme with Moodle 4.3 and the course ratings doesn´t appear. Thank you.&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-86422</guid>
    </item>
    <item>
      <title>Friday, 3 January 2025, 10:13 PM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-85934</link>
      <pubDate>Fri, 03 Jan 2025 14:13:17 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello Andy! Please use github issues to submit an improvement request. There there could be a capability or a setting for the allowed interval when user can change their rating&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-85934</guid>
    </item>
    <item>
      <title>Saturday, 21 December 2024, 4:27 PM - Andy Hill</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-85844</link>
      <pubDate>Sat, 21 Dec 2024 08:27:54 GMT</pubDate>
      <description>by Andy Hill. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hi Guys&lt;br&gt;
&lt;br&gt;
Firstly, I like the plugin and well done for the hard work. Not sure if i am missing something but once rating a course, this can be edited at a later date. I want the course ratings to not be editable after the rating has been made. I have tried defining role as student and looked for disabling the editing but its not available. Is this possible? I can see from your screenshots that i cant see the &quot;Edit&quot; ability. Any help would be appreciated. &lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-85844</guid>
    </item>
    <item>
      <title>Friday, 13 December 2024, 5:01 AM - Peter Haasdijk</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-85747</link>
      <pubDate>Thu, 12 Dec 2024 21:01:31 GMT</pubDate>
      <description>by Peter Haasdijk. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;In the settings I left the rating mode on default and enabled &quot;percourse&quot;. So now it should be possible to determin for each individual course that I do or do not want to show ratings. But I don't see a field for this in the course settings. This is in the most recent Moodle 4.1.11 version with tool_courserating v1.7.&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-85747</guid>
    </item>
    <item>
      <title>Monday, 2 December 2024, 7:44 AM - Marina Glancy</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-85638</link>
      <pubDate>Sun, 01 Dec 2024 23:44:09 GMT</pubDate>
      <description>by Marina Glancy. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello! The plugin may require additional configuration if you are using a custom theme. I suggest you to create an issue in github and attach screenshots and details about your theme. &lt;a href=&quot;https://github.com/marinaglancy/moodle-tool_courserating/issues&quot; class=&quot;_blanktarget&quot; target=&quot;_blank&quot; rel=&quot;noreferrer&quot;&gt;https://github.com/marinaglancy/moodle-tool_courserating/issues&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-85638</guid>
    </item>
    <item>
      <title>Monday, 2 December 2024, 4:30 AM - Sarmad Sajjad</title>
      <link>https://moodle.org/plugins/tool_courserating#comment-85637</link>
      <pubDate>Sun, 01 Dec 2024 20:30:17 GMT</pubDate>
      <description>by Sarmad Sajjad. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;no-overflow&quot;&gt;&lt;div class=&quot;text_to_html&quot;&gt;Hello,&lt;br&gt;
&lt;br&gt;
I have just installed the plugin.... i cant see any ratings...  i am using moodle 4.2 version and latest version of plugin.  Please guide me all the steps after installing the plugin.&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/plugins/tool_courserating#comment-85637</guid>
    </item>
  </channel>
</rss>