Skip to content

Commit

Permalink
Version update
Browse files Browse the repository at this point in the history
  • Loading branch information
franmastromarino committed May 15, 2024
1 parent b1d1832 commit daf889f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions perfect-woocommerce-brands.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Perfect Brands WooCommerce
* Plugin URI: https://quadlayers.com/products/perfect-woocommerce-brands/
* Description: Perfect WooCommerce Brands allows you to show product brands in your WooCommerce based store.
* Version: 3.3.8
* Version: 3.3.9
* Text Domain: perfect-woocommerce-brands
* Author: QuadLayers
* Author URI: https://quadlayers.com
Expand All @@ -14,7 +14,7 @@
* Tested up to: 6.5
* Requires PHP: 5.6
* WC requires at least: 4.0
* WC tested up to: 8.8
* WC tested up to: 8.9
*/

defined( 'ABSPATH' ) || exit;
Expand All @@ -23,7 +23,7 @@
define( 'PWB_PLUGIN_URL', plugins_url( '', __FILE__ ) );
define( 'PWB_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
define( 'PWB_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'PWB_PLUGIN_VERSION', '3.3.8' );
define( 'PWB_PLUGIN_VERSION', '3.3.9' );
define( 'PWB_PLUGIN_NAME', 'Perfect WooCommerce Brands' );
define( 'PWB_PREFIX', 'pwb' );
define( 'PWB_PURCHASE_URL', 'https://quadlayers.com/products/perfect-woocommerce-brands/?utm_source=pwb_admin' );
Expand Down
6 changes: 4 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Tags: woocommerce, woocommerce brands, woocommerce product, woocommerce manufact
Requires at least: 4.7
Requires PHP: 5.6
Tested up to: 6.5
Stable tag: 3.3.8
Stable tag: 3.3.9
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
WC requires at least: 4.7.0
WC tested up to: 8.8
WC tested up to: 8.9

Perfect Brands for WooCommerce allows you to show product brands in your WooCommerce based store

Expand Down Expand Up @@ -94,6 +94,8 @@ You can also contribute [translating the plugin](https://translate.wordpress.org


== Changelog ==
= 3.3.9 =
* WooCommerce compatibility
= 3.3.8 =
* WooCommerce compatibility
= 3.3.7 =
Expand Down
2 changes: 1 addition & 1 deletion templates/widgets/dropdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<select class="pwb-dropdown-widget">
<option selected="true" disabled="disabled">
<?php echo esc_html( apply_filters( 'pwb_dropdown_placeholder', __( 'Brands', 'perfect-woocommerce-brands' ) ) ); ?>
<?php echo esc_html( apply_filters( 'pwb_dropdown_placeholder', esc_html__( 'Brands', 'perfect-woocommerce-brands' ) ) ); ?>
</option>
<?php foreach ( $brands as $brand ) : ?>
<option value="<?php echo esc_url( $brand->get( 'link' ) ); ?>" <?php selected( $data['selected'], $brand->get( 'id' ) ); ?>>
Expand Down

0 comments on commit daf889f

Please sign in to comment.