- Posts: 15
Joomdle 2.x Installation
Joomdle Moodle Certificates Empty Message
- Garrett
- Topic Author
- Offline
- New Member
-
Less
More
1 year 7 months ago #1
by Garrett
Joomdle Moodle Certificates Empty Message was created by Garrett
Hello,
The "My Courses", "My Badges" both have messages when empty. ("No Badges Yet")
How can I get the "My Certificates" to have a empty message? It just shows blank.
Thanks
The "My Courses", "My Badges" both have messages when empty. ("No Badges Yet")
How can I get the "My Certificates" to have a empty message? It just shows blank.
Thanks
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7926
1 year 7 months ago #2
by Antonio Durán
Replied by Antonio Durán on topic Joomdle Moodle Certificates Empty Message
Hi.
Thanks for the tip, I will add this for next release.
If you want to have it now, you can edit modules/mod_joomdle_my_certificates/tmpl/default.php and add on the 4th line:
Also, on language/en-GB/en-GB.mod_joomdle_my_certificates.ini add:
COM_JOOMDLE_NO_CERTIFICATES_YET="No certificates yet"
Thanks for the tip, I will add this for next release.
If you want to have it now, you can edit modules/mod_joomdle_my_certificates/tmpl/default.php and add on the 4th line:
Code:
if (count ($certs) == 0)
{
echo JText::_ ('COM_JOOMDLE_NO_CERTIFICATES_YET');
return;
}
Also, on language/en-GB/en-GB.mod_joomdle_my_certificates.ini add:
COM_JOOMDLE_NO_CERTIFICATES_YET="No certificates yet"
Please Log in or Create an account to join the conversation.
- Garrett
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 15
1 year 7 months ago #3
by Garrett
Replied by Garrett on topic Joomdle Moodle Certificates Empty Message
Fixed!
Please Log in or Create an account to join the conversation.