Changeset 1628786
- Timestamp:
- 04/04/2017 02:38:39 AM (9 years ago)
- Location:
- jp-students-result-management-system/trunk
- Files:
-
- 3 edited
-
css/style.css (modified) (2 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jp-students-result-management-system/trunk/css/style.css
r1183093 r1628786 1 1 2 2 div.form-row { 3 margin-bottom: 5px;3 margin-bottom: 10px; 4 4 } 5 6 input#exam-reg { 7 margin-top: 10px; 8 } 9 10 /* 5 11 6 12 input.result-submit-btn { … … 13 19 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important; 14 20 } 21 */ 15 22 16 23 .loader { -
jp-students-result-management-system/trunk/index.php
r1628773 r1628786 9 9 * Author URI: http://skjoy.info 10 10 * Requires at least: 3.8 11 * Tested Up to: 4. 6.111 * Tested Up to: 4.7.3 12 12 * Stable Tag: 2.0 13 13 * License: GPL v2 … … 24 24 define('JP_SRMS_PATH', WP_PLUGIN_URL . '/' . plugin_basename( dirname(__FILE__) ) . '/' ); 25 25 26 /* Adding Plugin javascript file */ 27 wp_enqueue_script('jp-srms-js', plugin_dir_url(__FILE__).'js/scripts.js', array('jquery')); 28 29 /* Adding Plugin custm CSS file */ 30 wp_enqueue_style('jp-srms-css', plugin_dir_url(__FILE__).'css/style.css'); 26 /* Add style and script */ 27 28 function jsrms_frontend_style() { 29 wp_register_style( 'jsrms_fstyle', plugin_dir_url(__FILE__).'css/style.css', false, '1.0.1' ); 30 wp_enqueue_style( 'jsrms_fstyle' ); 31 32 wp_register_script( 'jsrms_fscript', plugin_dir_url(__FILE__).'js/scripts.js', array('jquery') ); 33 wp_enqueue_script( 'jsrms_fscript' ); 34 } 35 add_action( 'wp_enqueue_scripts', 'jsrms_frontend_style' ); 31 36 32 37 function jsrms_add_jquery() { -
jp-students-result-management-system/trunk/readme.txt
r1528647 r1628786 3 3 Tags: student result, student, result, result management system, academic, academic result, university, education, ajax, student result management system 4 4 Requires at least: 3.8 5 Tested Up to: 4. 6.15 Tested Up to: 4.7.3 6 6 Stable Tag: 2.0 7 7 License: GPLv2 … … 22 22 <li>Certificate adding facility.</li> 23 23 <li>Unlimited subject, class, year, group and section.</li> 24 <li>Result adding facility from CSV file.</li> 24 25 <li>Advanced result search form.</li> 25 26 <li>Responsive and customizable custom page template.</li> … … 28 29 <li>Translation support.</li> 29 30 <li>Shortcode system.</li> 31 <li>Export & Import.</li> 30 32 <li>Setting panel and many more.</li> 31 33 </ul>
Note: See TracChangeset
for help on using the changeset viewer.