Plugin Directory

Changeset 2252523


Ignore:
Timestamp:
03/01/2020 08:53:02 AM (6 years ago)
Author:
obydul
Message:

Rename plugin, update logo

Location:
awesome-wp-comment-rating
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • awesome-wp-comment-rating/trunk/awesome-wp-comment-rating.php

    r2013127 r2252523  
    11<?php
    22/**
    3  * Plugin Name: Awesome WP Comment Rating
     3 * Plugin Name: Awesome Comment Rating
    44 * Plugin URI: https://github.com/mdobydullah/awesome-wp-comment-rating
    5  * Description: Awesome WP Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.
    6  * Author:  Md. Obydullah
     5 * Description: Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.
     6 * Author:  Md Obydullah
    77 * Author URI: https://obydul.me
    8  * Version: 1.0
     8 * Version: 1.1
    99 * License: GPLv2 or later
    1010 * 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 
    101/* ## comment rating
    112--------------------------------------------- */
     
    256247.awcr-gaming .rate10{background:#109c00}
    257248
    258 
    259249/**/
    260 
    261250.plugin-ratings .ratings-list {
    262251    list-style-type: none;
  • awesome-wp-comment-rating/trunk/functions.php

    r2013127 r2252523  
    22/**
    33 * File Name: Functions
    4  * Author:  Md. Obydullah
     4 * Author:  Md Obydullah
    55 * Description: Define functions of the plugin
    66 */
  • awesome-wp-comment-rating/trunk/init.php

    r2013127 r2252523  
    22/**
    33 * File Name: Initialization
    4  * Author:  Md. Obydullah
     4 * Author:  Md Obydullah
    55 * Description: Initilize the plugin
    66 */
  • awesome-wp-comment-rating/trunk/readme.txt

    r2013195 r2252523  
    1 === Awesome WP Comment Rating ===
     1=== Awesome Comment Rating ===
    22Contributors: obydul
    3 Donate link: https://obydul.me/donate
    43Tags: post rating, page rating, comment rating, rating, reviews, ratings, stars, rating stars, star rating, vote, votes, comment star field, postratings
    54Requires at least: 3.2
    6 Tested up to: 5.0.3
    7 Stable tag: 1.0
     5Tested up to: 5.3.2
     6Stable tag: 1.1
    87License: GPLv2 or later
    98License URI: https://www.gnu.org/licenses/gpl-2.0.html
    109
    11 Awesome WP Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.
     10Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages.
    1211
    1312== Description ==
    1413
    15 Awesome WP Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. Integration is very easy and simple.
     14Awesome Comment Rating allows users to provide star rating on comment form of WordPress posts, custom posts or pages. Integration is very easy and simple.
    1615
    1716= STARS RATING ARE DESPLAYED AS =
     
    47461. Upload the plugin files to the "/wp-content/plugins/" directory
    48472. Activate the plugin through the 'Plugins' menu in WordPress
    49 3. Go to Settings -> Awesome WP Comment Rating to modify options
     483. Go to Settings -> Awesome Comment Rating to modify options
    5049
    5150== Screenshots ==
     
    5958== Changelog ==
    6059
     60= 1.1 =
     61Release Date: Mar 1, 2020
     62* Rename plugin name
     63
    6164= 1.0 =
    6265Release Date: Jan 14, 2019
  • awesome-wp-comment-rating/trunk/settings/class.settings-api.php

    r2013127 r2252523  
    22/**
    33 * File Name: Settings Class
    4  * Author:  Md. Obydullah
     4 * Author:  Md Obydullah
    55 */
    66
     
    2828
    2929    function admin_menu() {
    30         add_options_page( 'Awesome WP Comment Rating', 'Awesome WP Comment 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') );
    3131    }
    3232
     
    7575                    'desc' => __('Default: Google histogram', 'awcr_plugin_settings'),
    7676                    'type' => 'select',
    77                     'default' => 'google_histogram_dynamic',
     77                    'default' => 'gauge_chart',
    7878                    'options' => array(
    7979                        'google_histogram' => 'Google Histogram',
     
    317317    function awcr_plugin_page() {
    318318        echo '<div class="wrap">';
    319         echo '<h1>Awesome WP Comment Rating</h1>';
     319        echo '<h1>Awesome Comment Rating</h1>';
    320320
    321321        $this->awcr_plugin_settings->show_navigation();
  • awesome-wp-comment-rating/trunk/shortcodes.php

    r2013127 r2252523  
    22/**
    33 * File Name: Shortcodes
    4  * Author:  Md. Obydullah
     4 * Author:  Md Obydullah
    55 * Description: Define shortcodes of the plugin
    66 */
Note: See TracChangeset for help on using the changeset viewer.