Plugin Directory

Changeset 2455453


Ignore:
Timestamp:
01/13/2021 10:48:19 AM (5 years ago)
Author:
jabedbd
Message:

Updated to 1.0.2

Location:
unblock-adblocker
Files:
103 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • unblock-adblocker/trunk/README.txt

    r2454469 r2455453  
    55Requires at least: 3.0.1
    66Tested up to: 5.6
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    20202. Activate the plugin through the ‘Plugins’ menu in WordPress.
    2121
     22
     23= 1.0.2 =
     24* Bug Fixes
     25* Add Theme Support (for Pro)
     26* Fix icon issue
     27
    2228= 1.0 =
    2329* Initial Release
  • unblock-adblocker/trunk/admin/class-unblockadblocker-admin.php

    r2454466 r2455453  
    191191        $slug = $this->plugin_name . '-general-settings-page';
    192192        $callback = array( $this, 'page_options' );
    193         $icon = 'uashicons-welcome-widgets-menus';
     193        $icon = 'dashicons-welcome-widgets-menus';
    194194        $position = 100;
    195195
     
    342342            )
    343343        );
     344
     345
     346
    344347
    345348        add_settings_field(
     
    17731776     */
    17741777    public function go_pro_link() {
    1775         return 'https://space.kites.dev/unblockadblocker-pro';
     1778        return 'https://space.kites.dev/public/item/unblock-adblocker-pro';
    17761779    }
    17771780
  • unblock-adblocker/trunk/admin/partials/unblockadblocker-admin-page-settings.php

    r2454466 r2455453  
    2424                    <a href="<?php echo network_admin_url( 'admin.php?page=' . $this->plugin_name . '-general-settings-page' . '&tab=content_settings' ); ?>" class="nav-tab <?php echo ( $this->get_current_tab() == 'content_settings' ) ? 'nav-tab-active' : ''; ?>">Content</a>
    2525                    <a href="<?php echo network_admin_url( 'admin.php?page=' . $this->plugin_name . '-general-settings-page' . '&tab=style_settings' ); ?>" class="nav-tab <?php echo ( $this->get_current_tab() == 'style_settings' ) ? 'nav-tab-active' : ''; ?>">Style</a>
     26                    <a href="<?php echo network_admin_url( 'admin.php?page=' . $this->plugin_name . '-general-settings-page' . '&tab=theme_settings' ); ?>" class="nav-tab <?php echo ( $this->get_current_tab() == 'theme_settings' ) ? 'nav-tab-active' : ''; ?>">Themes (Pro) </a>
     27               
    2628                </h3>
    2729           </div>
     
    4648
    4749                    }
     50                    elseif( $this->get_current_tab() == 'theme_settings' ) {
     51
     52                        settings_fields( $this->plugin_name . '-theme-settings-group' );
     53                        do_settings_sections( $this->plugin_name . '-theme-settings-page' );
     54                        submit_button( 'Save Settings' );
     55
     56                    }
    4857                    else {
    4958
  • unblock-adblocker/trunk/unblock-adblocker.php

    r2454466 r2455453  
    55 * Plugin URI:        http://space.kites.dev/item/unblockadblocker
    66 * Description:       An Easiest solution for showing message to the user to whitelist the site on their adblocker
    7  * Version:           1.0.1
     7 * Version:           1.0.2
    88 * Author:            Kites.Dev
    99 * Author URI:        https://space.kites.dev/
Note: See TracChangeset for help on using the changeset viewer.