Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from jcatama/v1.2.1
Browse files Browse the repository at this point in the history
Fixed: index.css not found.
  • Loading branch information
Albert Catama authored Nov 1, 2021
2 parents 786fcb3 + 8730c51 commit eec6feb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buddyboss-extended-addon.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: 🚀 All-in-one enhancement plugin that improves WordPress & BuddyBoss integration.
* Author: John Albert Catama
* Author URI: https://github.com/jcatama
* Version: 1.2.0
* Version: 1.2.1
* Text Domain: buddyboss-extended-addon
* Domain Path: /languages/
* License: GPL2
Expand All @@ -17,7 +17,7 @@
defined( 'ABSPATH' ) || exit;

if ( ! defined( 'BBEA_VERSION' ) ) {
define( 'BBEA_VERSION', 'v1.0.1' );
define( 'BBEA_VERSION', 'v1.2.1' );
}

if ( ! defined( 'BBEA_PLUGIN_DIR' ) ) {
Expand Down Expand Up @@ -91,7 +91,7 @@ function bbea_scripts_styles() {
* http://codex.wordpress.org/Function_Reference/wp_deregister_style
*/

wp_enqueue_style( 'bbea-css', plugins_url( 'assets/index.css', __FILE__ ), [], BBEA_VERSION );
wp_enqueue_style( 'bbea-css', plugins_url( 'assets/css/index.css', __FILE__ ), [], BBEA_VERSION );

wp_localize_script( 'jquery', 'bbea', [ 'ajaxurl' => admin_url( 'admin-ajax.php' ) ] );

Expand Down
3 changes: 3 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ Yes it is 100% free to use and distribute.

== Changelog ==

= 1.2.1 =
* Fixed: index.css not found.

= 1.2.0 =
* Add translation support.
* Plugin improvements.
Expand Down

0 comments on commit eec6feb

Please sign in to comment.