Nurul Umbhiya
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Student Results] How to add language?Hi,
previous version po file created with wrong text domain. Now I’ve fixed this problem on version 1.5. Please update your version and try again.
Thanks,Forum: Plugins
In reply to: [Easy Student Results] search of the resultsHi there,
Developed a new addOns for this plugin. Check this out: Easy Student Results : Private Result SearchForum: Plugins
In reply to: [Easy Student Results] Adjust available fieldsHi there,
I’m glad you are using this plugin.
If you mean, showing student information on frontend with [esc_students] shortcode, goto,WP Admin Panel –> Student Results –> Settings –> Shortcode Student
Now under Student Informations section, you can add new fields or delete existing one.
you can find all supported fields under Available Fields section.
Example:
suppose you want to show Present Address as student information, you can do this by:
present_address:Present Address
Note: use , (comma) to separate each entry.- This reply was modified 9 years, 5 months ago by Nurul Umbhiya.
Forum: Plugins
In reply to: [Easy Student Results] correction rtequiredHi,
Goto Student Results –> Settings –> Result or Student Tab –> Find Custom CSS section..
here you can add any css to fix your problem…
If this not fix your problem, send me your site link at contact(at)nurul.me, so that I can take a look.Thanks
Forum: Plugins
In reply to: [Easy Student Results] Getting warningHi,
Change line 138:if ( !array_key_exists(‘total_marks_obtained’, $metadata) ) {
to
if ( is_array( $metadata ) && !array_key_exists(‘total_marks_obtained’, $metadata) ) {
And change line 143:
if ( array_key_exists(‘final_grade’, $metadata) ) {
to
if ( is_array($metadata) && array_key_exists(‘final_grade’, $metadata) ) {
Hope this will solve your problem.
Thanks
Forum: Plugins
In reply to: [Easy Student Results] Importing Excel sheetInternal structure of this plugin is somehow complex for this plugin, as I’ve tried to make this plugin versatile. By this plugin, you can keep record last 10 years (just an example) Result for a student. None other available plugin provide this feature. So in order to exporting result directly from a Excel file, you need to provide some extra fields to that excel file. I’m thinking about this feature right now. I’m trying to make this process as simple as possible. Probably I’ll start building this feature soon.
Thanks.
Forum: Plugins
In reply to: [Easy Student Results] private view of resultsHi,
For now there is no option to private search for result.
There is a shortcode available to search result by registration number or Roll number. Try [esr_result2] to search result by Roll Number or try [esr_results2 search_by=’reg’] to search result by registration number.
I’m planning to add private result search feature in the next version. But first I need to write some documentation for this plugin and probably some video tutorial also.
Thanks.
Forum: Plugins
In reply to: [Easy Student Results] Multisite SupportHi Yadav,
Can you please try network deactivate this plugin and again network activate ? My guess is required tables is not created on your end. I guess deactivating this plugin and then activating this plugin will solve your problem
Thanks.
Forum: Plugins
In reply to: [Easy Student Results] More SemesterHello eduunix,
For now, there is no options for displaying result semester by semester. But this can be done easily. I guess this will be a great plugin feature to add. Can you please send me html code for your design (contact(at)nurul.me), and I’ll add a new shortcode on next plugin updates.
Thanks.
Forum: Reviews
In reply to: [Easy Student Results] AppriciatedHello mshohail,
Thanks for your review. I’ll try to add documentation as soon as possible.Forum: Plugins
In reply to: [Easy Student Results] Setting page is restrictedAlso follow above steps for /plugins/easy-student-results/RPS/Admin/Menu/Main.php files too.
Forum: Plugins
In reply to: [Easy Student Results] Setting page is restrictedHi,
Thanks for contacting support.
For user role access, all menu items are assigned administrator as capability while using add_submenu_page() function. If other menu item works, I guess this should work too. Can you please check Advanced Access Manager plugin again ?Try to find rps_result in your Advanced Access Manager plugin settings. If you can locate rps_result, give administrator access for rps_result.
I guess this will solve your problem, if it doesn’t solve your problem, follow below steps.
- Open plugins/easy-student-results/RPS/Admin/Menu/Settings.php using any ftp client like FileZilla.
- Goto Line number: 30, this should looks like:
add_submenu_page(RPS_Result_Management::PLUGIN_SLUG, __('Easy Student Results', $this->TD) . ' - ' . __("Settings", $this->TD), __("Settings", $this->TD), 'administrator', RPS_Result_Management::PLUGIN_SLUG . '_settings',array($this,'mainDiv')); - Replace administrator with manage_options ie:
add_submenu_page(RPS_Result_Management::PLUGIN_SLUG, __('Easy Student Results', $this->TD) . ' - ' . __("Settings", $this->TD), __("Settings", $this->TD), 'manage_options', RPS_Result_Management::PLUGIN_SLUG . '_settings',array($this,'mainDiv'));
Hope this steps will solve your options. If it doesn’t, then don’t hesitate to contact support.
Thanks,
Nurul UmbhiyaForum: Plugins
In reply to: [Easy Student Results] Great Plugin, but few questions to askHi,
You don’t need to edit or delete department and semester for this. Install Duplicate Post WordPress plugin and copy each student. Now add new department/class, semester/section what you need and assigned this to copied student. This way you can keep records of all results. Suppose a student is in class 1 now and you added result for this student. Now this student is promoted to class two, so if you copy this student data using Duplicate Post plugin and changed copied student class to class 2, you’ll get two entry for this student, one for class one and one for class two. Now you can add result for this student for class two. Later if you want to find out this student class one result, you can do that too.I’ve plan to add automatically promote students to next class in future release. Will let you know, when I add this feature.
Thanks.
Forum: Plugins
In reply to: [Easy Student Results] Delete and reinstallingYou are welcome 🙂
Forum: Plugins
In reply to: [Easy Student Results] Delete and reinstallingTo Delete Semesters, You’ve to edit source code now.. By using any ftp client, open wp-content/plugins/easy-student-results/RPS/Admin/Init/Taxonomi.php
Comment out line number 82 ie:
change
add_action( ‘delete_term_taxonomy’, array( $this, ‘prevent_delete_taxonomy’) );
with:
//add_action( ‘delete_term_taxonomy’, array( $this, ‘prevent_delete_taxonomy’) );Now for deleting Department, delete {your wordpress installation table prefix}rps_departments table from phpmyadmin
*I’ll add delete feature on next plugin updates.
Thanks for using Easy Student Results plugin.