Forum Replies Created

Viewing 15 replies - 31 through 45 (of 73 total)
  • Plugin Author Nurul Umbhiya

    (@zikubd)

    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,

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi there,
    Developed a new addOns for this plugin. Check this out: Easy Student Results : Private Result Search

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi 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.
    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi,

    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

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi,
    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

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Internal 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.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi,

    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.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi 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.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hello 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.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hello mshohail,
    Thanks for your review. I’ll try to add documentation as soon as possible.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Also follow above steps for /plugins/easy-student-results/RPS/Admin/Menu/Main.php files too.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi,
    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.

    1. Open plugins/easy-student-results/RPS/Admin/Menu/Settings.php using any ftp client like FileZilla.
    2. 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'));
    3. 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 Umbhiya

    Plugin Author Nurul Umbhiya

    (@zikubd)

    Hi,
    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.

    Plugin Author Nurul Umbhiya

    (@zikubd)

    You are welcome 🙂

    Plugin Author Nurul Umbhiya

    (@zikubd)

    To 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.

Viewing 15 replies - 31 through 45 (of 73 total)