Changeset 2252523
- Timestamp:
- 03/01/2020 08:53:02 AM (6 years ago)
- Location:
- awesome-wp-comment-rating
- Files:
-
- 9 edited
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
trunk/awesome-wp-comment-rating.php (modified) (1 diff)
-
trunk/css/style.css (modified) (2 diffs)
-
trunk/functions.php (modified) (1 diff)
-
trunk/init.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/settings/class.settings-api.php (modified) (4 diffs)
-
trunk/shortcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
awesome-wp-comment-rating/trunk/awesome-wp-comment-rating.php
r2013127 r2252523 1 1 <?php 2 2 /** 3 * Plugin Name: Awesome WPComment Rating3 * Plugin Name: Awesome Comment Rating 4 4 * Plugin URI: https://github.com/mdobydullah/awesome-wp-comment-rating 5 * Description: Awesome WPComment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.6 * Author: Md .Obydullah5 * Description: Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. 6 * Author: Md Obydullah 7 7 * Author URI: https://obydul.me 8 * Version: 1. 08 * Version: 1.1 9 9 * License: GPLv2 or later 10 10 * Text Domain: awesome-wp-comment-rating -
awesome-wp-comment-rating/trunk/css/style.css
r2013127 r2252523 1 @import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400);2 @import url(https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);3 4 body {5 font-family: 'Roboto', sans-serif !important;6 color: #737373;7 font-weight: 300;8 }9 10 1 /* ## comment rating 11 2 --------------------------------------------- */ … … 256 247 .awcr-gaming .rate10{background:#109c00} 257 248 258 259 249 /**/ 260 261 250 .plugin-ratings .ratings-list { 262 251 list-style-type: none; -
awesome-wp-comment-rating/trunk/functions.php
r2013127 r2252523 2 2 /** 3 3 * File Name: Functions 4 * Author: Md .Obydullah4 * Author: Md Obydullah 5 5 * Description: Define functions of the plugin 6 6 */ -
awesome-wp-comment-rating/trunk/init.php
r2013127 r2252523 2 2 /** 3 3 * File Name: Initialization 4 * Author: Md .Obydullah4 * Author: Md Obydullah 5 5 * Description: Initilize the plugin 6 6 */ -
awesome-wp-comment-rating/trunk/readme.txt
r2013195 r2252523 1 === Awesome WPComment Rating ===1 === Awesome Comment Rating === 2 2 Contributors: obydul 3 Donate link: https://obydul.me/donate4 3 Tags: post rating, page rating, comment rating, rating, reviews, ratings, stars, rating stars, star rating, vote, votes, comment star field, postratings 5 4 Requires at least: 3.2 6 Tested up to: 5. 0.37 Stable tag: 1. 05 Tested up to: 5.3.2 6 Stable tag: 1.1 8 7 License: GPLv2 or later 9 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 9 11 Awesome WPComment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.10 Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. 12 11 13 12 == Description == 14 13 15 Awesome WPComment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. Integration is very easy and simple.14 Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. Integration is very easy and simple. 16 15 17 16 = STARS RATING ARE DESPLAYED AS = … … 47 46 1. Upload the plugin files to the "/wp-content/plugins/" directory 48 47 2. Activate the plugin through the 'Plugins' menu in WordPress 49 3. Go to Settings -> Awesome WPComment Rating to modify options48 3. Go to Settings -> Awesome Comment Rating to modify options 50 49 51 50 == Screenshots == … … 59 58 == Changelog == 60 59 60 = 1.1 = 61 Release Date: Mar 1, 2020 62 * Rename plugin name 63 61 64 = 1.0 = 62 65 Release Date: Jan 14, 2019 -
awesome-wp-comment-rating/trunk/settings/class.settings-api.php
r2013127 r2252523 2 2 /** 3 3 * File Name: Settings Class 4 * Author: Md .Obydullah4 * Author: Md Obydullah 5 5 */ 6 6 … … 28 28 29 29 function admin_menu() { 30 add_options_page( 'Awesome WP Comment Rating', 'Awesome WPComment Rating', 'manage_options', 'awesome-wp-comment-rating', array($this, 'awcr_plugin_page') );30 add_options_page( 'Awesome Comment Rating', 'Awesome Comment Rating', 'manage_options', 'awesome-wp-comment-rating', array($this, 'awcr_plugin_page') ); 31 31 } 32 32 … … 75 75 'desc' => __('Default: Google histogram', 'awcr_plugin_settings'), 76 76 'type' => 'select', 77 'default' => 'g oogle_histogram_dynamic',77 'default' => 'gauge_chart', 78 78 'options' => array( 79 79 'google_histogram' => 'Google Histogram', … … 317 317 function awcr_plugin_page() { 318 318 echo '<div class="wrap">'; 319 echo '<h1>Awesome WPComment Rating</h1>';319 echo '<h1>Awesome Comment Rating</h1>'; 320 320 321 321 $this->awcr_plugin_settings->show_navigation(); -
awesome-wp-comment-rating/trunk/shortcodes.php
r2013127 r2252523 2 2 /** 3 3 * File Name: Shortcodes 4 * Author: Md .Obydullah4 * Author: Md Obydullah 5 5 * Description: Define shortcodes of the plugin 6 6 */
Note: See TracChangeset
for help on using the changeset viewer.