Plugin Directory

Changeset 3389502

Timestamp:
11/04/2025 09:22:04 AM (2 weeks ago)
Author:
freewebmentor
Message:

fix Keyword Stuffing violation issues

Location:
fm-notification-bar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fm-notification-bar/trunk/admin/settings.php

    r1798849 r3389502  
    88
    99function fm_notification_bar_settings() {
    10     add_options_page('WordPress Notification Bar Setting', 'Notification Bar', 'manage_options', 'fm-notification-bar', 'fm_notification_bar_init');
     10    add_options_page('WordPress Notification Bar Setting', 'Simple Notification Bar', 'manage_options', 'simple-notification-bar', 'fm_notification_bar_init');
    1111}
    1212
     
    1616?>
    1717    <div>   
    18         <h2 class="smsb_pluginheader"><?php _e("FM Notification Bar - Settings", fm_notification_bar); ?></h2>     
    19         <?php _e("<p>You are using Wordpress: ".$wp_version." and Fee Version of Notification Bar: ".fm_notification_bar_version."</p>", fm_notification_bar); ?>
     18        <h2 class="smsb_pluginheader"><?php _e("FM Notification Bar - Settings", Simple_Notification_Bar_name); ?></h2>     
     19        <?php _e("<p>You are using Wordpress: ".$wp_version." and Fee Version of Notification Bar: ".Simple_Notification_Bar_version."</p>", Simple_Notification_Bar_name); ?>
    2020       
    2121        <form method="post" action="options.php">
     
    7575            </table>
    7676            <p>&nbsp;</p>
    77             <p><input type="submit" name="Submit" class="button-primary" value="<?php _e("Save Changes", fm_notification_bar); ?>"></p>
     77            <p><input type="submit" name="Submit" class="button-primary" value="<?php _e("Save Changes", Simple_Notification_Bar_name); ?>"></p>
    7878        </form>                   
    7979    </div>
  • fm-notification-bar/trunk/notification-bar.php

    r3056030 r3389502  
    11<?php
    22/*
    3  * Plugin Name: Notification Bar
     3 * Plugin Name: Simple Notification Bar
    44 * Plugin URI: https://www.premtiwari.in/
    5  * Description: Notification Bar is a quick and easy notification bar and call to action for your site.
    6  * Version: 1.0.2
     5 * Description: It is a simple Sticky Notification Bar is a quick and easy notification bar and call to action for your site.
     6 * Version: 1.0.3
    77 * Author: Prem Tiwari
    88 * Author URI: https://www.premtiwari.in/
     
    1111if (!defined('ABSPATH')){ exit; }
    1212
    13 // Define plugin name
    14 define('fm_notification_bar', 'FM Notification Bar');
     13// Define plugin name and version.
     14define('Simple_Notification_Bar_name', 'Simple Notification Bar');
    1515
    16 // Define plugin version
    17 define('fm_notification_bar_version', '1.0.0');
     16define('Simple_Notification_Bar_version', '1.0.3');
    1817
    19 
    20 if (is_admin()) {
     18if ( is_admin() ) {
    2119    include_once('admin/settings.php');
    2220}
     
    2422$fmnb_options = get_option('fmnb_settings');
    2523
    26 add_action('admin_head', 'fm_extra_fee_style');
     24add_action('admin_head', 'fm_admin_style');
    2725add_action('wp_head', 'fm_notification_bar_style');
    2826
    29 function fm_extra_fee_style() {
    30     wp_enqueue_style('fm_admin_style',plugins_url("css/admin.css",__FILE__)); 
     27function fm_admin_style() {
     28    wp_enqueue_style('fm_admin_style',plugins_url("css/admin.css",__FILE__), array(), Simple_Notification_Bar_version);
    3129}
    3230
    3331function fm_notification_bar_style() {
    34     wp_enqueue_style('fm_font_awesome','https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
    35     wp_enqueue_style('fm_notification_bar_style',plugins_url("css/style.css",__FILE__));
     32    wp_enqueue_style('fm_font_awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css', array(), Simple_Notification_Bar_version);
     33    wp_enqueue_style('fm_notification_bar_style', plugins_url('css/style.css', __FILE__), array(), Simple_Notification_Bar_version);
    3634}
    3735
  • fm-notification-bar/trunk/readme.txt

    r3056030 r3389502  
    1 === Notification Bar - Top Bar - Easy Sticky Notification Bar | FM Notification Bar ===
    2 Contributors: freewebmentor, niravmehta9
     1=== Simple Notification Bar ===
     2Contributors: freewebmentor
    33Tags: message, floating bar, notice, notification, sticky header, special offer bar, discount offer bar, notification bar
    44Requires at least: 3.0.1
    5 Tested up to: 6.4
     5Tested up to: 6.8
    66Stable tag: trunk
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
    99
    10 FM Notification Bar is a quick and easy notification bar and call to action for your site.
     10Simple Notification Bar is a quick and easy notification bar and call to action for your site.
    1111
    1212== Description ==
     
    1414[Homepage](https://www.premtiwari.in/) | [Documentation](https://wordpress.org/plugins/fm-notification-bar/installation/) | [Support](https://wordpress.org/support/plugin/fm-notification-bar/reviews/#new-post)
    1515
    16 **FM Notification Bar** is a quick and easy notification bar and call to action for your site, which is perfect for marketing promotions, increasing click through rate and so much more.
     16It is a quick and simple notification bar plugin and call-to-action tool for your website, perfect for marketing promotions, increasing click-through rates, and much more.
    1717
    18 You can place the **Notification Bar** at the header area of your website to display about your new releases, offers, messages, news, and etc to your website visitors.
     18You can place it in the header section of your website to display new releases, offers, messages, news, and other important updates to your visitors.
    1919
    2020
     
    2424*   Lightweight
    2525*   Custom message and call to action button
    26 *   Sticky Notification Bar
     26*   Simple Notification Bar
    2727*   Change background color of Notification Bar to match your site
    2828*   No coding knowledge required
     
    3131
    3232All the above features can be easily configured via admin panel. You have full control over the entire bar from the message, button text, button hyperlink url, and Notification Bar background color.
    33 
    3433
    3534= Feedback =
     
    5958* Compatible
    6059* Support multisite
     60
     61= 1.0.3 =
     62* Compatible
     63* minor changes
Note: See TracChangeset for help on using the changeset viewer.