Plugin Directory

Changeset 2748119


Ignore:
Timestamp:
06/26/2022 01:44:49 PM (4 years ago)
Author:
jahur
Message:

fixed activation error

Location:
wc-slider/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wc-slider/trunk/includes/public/class_enqueue_scripts.php

    r2739415 r2748119  
    11<?php
    22
    3 namespace WOOWCMS\Includes\Public;
     3namespace WOOWCMS\Includes\Front;
    44
    55class Enqueue_Scripts{
  • wc-slider/trunk/includes/public/class_shortcode.php

    r2739415 r2748119  
    11<?php
    22
    3 namespace WOOWCMS\Includes\Public;
     3namespace WOOWCMS\Includes\Front;
    44
    55class Shortcode{
  • wc-slider/trunk/readme.txt

    r2740219 r2748119  
    44Requires at least: 4.0
    55Tested up to: 6.0
    6 Stable tag: 1.1.1
     6Stable tag: 1.1.2
    77
    88A simple way to show woocommerce products in your website!
     
    2222
    2323== Changelog ==
    24 
     24= 1.1.2 =
     25 * Fixed activation error due to wrong namespace
    2526= 1.1.1 =
    26  * Fixed fatal error on plugin deactivation
     27 * Removed some inappropriate folders
    2728= 1.1.0 =
    2829 * Clean code, design improvement
  • wc-slider/trunk/wc-slider.php

    r2740215 r2748119  
    55Description: Woocommerce product slider. Shortcode [woowcms], [woowcms category="music,books,movie"]
    66Author: Jahur Ahmed
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author URI: https://thetechydots.com
    99Text Domain: woowcms
     
    1616
    1717// Define most essential constants.
    18 define( 'WOOWCMS_VERSION', '1.1.0' );
     18define( 'WOOWCMS_VERSION', '1.1.2' );
    1919define( 'WOOWCMS_PLUGIN_MAIN_FILE', __FILE__ );
    2020define( 'WOOWCMS_PHP_MINIMUM', '5.6.0' );
     
    3434
    3535        require_once 'includes/public/class_enqueue_scripts.php';
    36         $enqueue_scripts = new \WOOWCMS\Includes\Public\Enqueue_Scripts();
     36        $enqueue_scripts = new \WOOWCMS\Includes\Front\Enqueue_Scripts();
    3737
    3838        require_once 'includes/public/class_shortcode.php';
    39         $shortcode = new \WOOWCMS\Includes\Public\Shortcode();
     39        $shortcode = new \WOOWCMS\Includes\Front\Shortcode();
    4040       
    4141    }
Note: See TracChangeset for help on using the changeset viewer.