Plugin Directory

Changeset 3319838


Ignore:
Timestamp:
06/30/2025 09:48:38 AM (9 months ago)
Author:
buildecomteam
Message:

v1.0.2 – Fixed login issue and restricted Bootstrap to plugin admin pages only

Location:
buildecom
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • buildecom/tags/1.0.2/buildecom.php

    r3319804 r3319838  
    77 * Plugin URI: https://buildecom.app/wp-plugin/
    88 * Description: The official WordPress plugin for BuildEcom. Build eCommerce mobile application through woocommerce and wordpress
    9  * Version: 1.0.1
     9 * Version: 1.0.2
    1010 * Author: BuildEcom
    1111 * Author URI: https://buildecom.app
     
    4646    public function enqueue_admin_assets()
    4747    {
     48        if (!isset($_GET['page']) || strpos($_GET['page'], 'buildecom') !== 0) {
     49            return;
     50        }
     51
    4852        wp_enqueue_Script('buildecom-bootrap-js', plugin_dir_url(__FILE__) . 'assets/js/bootstrap.bundle.min.js', [], BUILDECOM_VERSION, true);
    4953        wp_enqueue_style('buildecom-admin-style', plugin_dir_url(__FILE__) . 'assets/css/bootstrap.min.css', [], BUILDECOM_VERSION);
  • buildecom/tags/1.0.2/readme.txt

    r3319804 r3319838  
    44Requires at least: 4.7
    55Tested up to: 6.8
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPL-2.0+
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • buildecom/trunk/buildecom.php

    r3319804 r3319838  
    77 * Plugin URI: https://buildecom.app/wp-plugin/
    88 * Description: The official WordPress plugin for BuildEcom. Build eCommerce mobile application through woocommerce and wordpress
    9  * Version: 1.0.1
     9 * Version: 1.0.2
    1010 * Author: BuildEcom
    1111 * Author URI: https://buildecom.app
     
    4646    public function enqueue_admin_assets()
    4747    {
     48        if (!isset($_GET['page']) || strpos($_GET['page'], 'buildecom') !== 0) {
     49            return;
     50        }
     51
    4852        wp_enqueue_Script('buildecom-bootrap-js', plugin_dir_url(__FILE__) . 'assets/js/bootstrap.bundle.min.js', [], BUILDECOM_VERSION, true);
    4953        wp_enqueue_style('buildecom-admin-style', plugin_dir_url(__FILE__) . 'assets/css/bootstrap.min.css', [], BUILDECOM_VERSION);
  • buildecom/trunk/readme.txt

    r3319804 r3319838  
    44Requires at least: 4.7
    55Tested up to: 6.8
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPL-2.0+
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.