Plugin Directory

Changeset 2296819


Ignore:
Timestamp:
05/02/2020 07:42:41 PM (6 years ago)
Author:
obiplabon
Message:

Releasing version 1.1.0

Location:
which-addon-for-elementor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • which-addon-for-elementor/trunk/readme.txt

    r2257982 r2296819  
    11=== Which Elementor Addon ===
    22Plugin Name: Which Addon for Elementor
    3 Version: 1.0.1
     3Version: 1.1.0
    44Author: obiPlabon
    5 Author URI: https://github.com/obiPlabon
     5Author URI: https://obiplabon.im
    66Contributors: obiPlabon, gtarafdarr
     7Tags: Elementor Page Builder, Elementor addons, Elementor Widgets, Elementor Tools
    78Requires at least: 4.7
    8 Tested up to: 5.3.2
     9Tested up to: 5.4.1
    910Stable tag: trunk
    1011Requires PHP: 5.4
     
    3536## Looking For Your Feedback 😊
    3637
    37 I’m looking for your suggestion and feedback on how I can help you in a better way without taking any hassle at your end. Feel free to [share your opinion](https://fb.me/obiPlabon). Your opinion will inspire me to improve and new functionality. And please don't forget to share your feelings through [⭐️⭐️⭐️⭐️⭐️ ratting](https://wordpress.org/support/plugin/which-addon-for-elementor/reviews/#new-post) 😃
     38I’m looking for your suggestion and feedback on how I can help you in a better way without taking any hassle at your end. Feel free to [share your opinion](https://obiplabon.im/contact/). Your opinion will inspire me to improve and new functionality. And please don't forget to share your feelings through [⭐️⭐️⭐️⭐️⭐️ ratting](https://wordpress.org/support/plugin/which-addon-for-elementor/reviews/#new-post) 😃
    3839
    3940
     
    53544.  Activate the plugin through the 'Plugins' screen in WordPress.
    5455
     56== Screenshots ==
     57
     581. In Action - Which Elementor Addon
     592. Settings Page - Which Elementor Addon
     603. Editor View - Which Elementor Addon
     614. Frontend View - Which Elementor Addon
    5562
    5663== Changelog ==
     64
     65= 1.1.0 - 3 May 2020 =
     66
     67- New: Only logged in users can see label now (*user suggested feature) - [share your idea](https://obiplabon.im/contact/)
    5768
    5869= 1.0.1 - 10 March 2019 =
  • which-addon-for-elementor/trunk/which-addon-for-elementor.php

    r2257982 r2296819  
    22/**
    33 * Plugin Name: Which Elementor Addon
    4  * Plugin URI: https://github.com/obiPlabon
     4 * Plugin URI: https://obiplabon.im
    55 * Description: <strong>Which Elementor Addon</strong> is a simple lightweight plugin. It will help you to find out the widget’s plugin name that you have used in creating your web pages/posts in the simplest way.
    6  * Version: 1.0.1
     6 * Version: 1.1.0
    77 * Author: obiPlabon
    8  * Author URI: https://fb.me/obiPlabon
     8 * Author URI: https://obiplabon.im
    99 * License: GPLv2
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4747     * Plugin version
    4848     */
    49     const VERSION = '1.0.1';
     49    const VERSION = '1.1.0';
    5050
    5151    /**
     
    291291
    292292    public static function enqueue_scripts() {
     293        if ( ! is_user_logged_in() ) {
     294            return;
     295        }
     296
    293297        $enable_on = self::get_setting( 'enable_on', ['editor'] );
    294298        if ( empty( $enable_on ) || ! ( in_array( 'editor', $enable_on ) || in_array( 'frontend', $enable_on ) ) ) {
Note: See TracChangeset for help on using the changeset viewer.