Plugin Directory

Changeset 3027940


Ignore:
Timestamp:
01/29/2024 12:48:12 AM (2 years ago)
Author:
jonboss
Message:

version 2.1.4

Location:
simple-woocommerce-favourites
Files:
1 deleted
4 edited
11 copied

Legend:

Unmodified
Added
Removed
  • simple-woocommerce-favourites/tags/2.1.4/includes/class-swf-favourites-button.php

    r2976111 r3027940  
    5050    public static function display_button(){
    5151        if( self::should_show() ){
    52             Simple_Woocommerce_Favourites::view( 'add-to-favourites-button' );
     52            ob_start();
     53                Simple_Woocommerce_Favourites::view( 'add-to-favourites-button' );
     54            return ob_get_clean();
    5355        }
    5456    }
  • simple-woocommerce-favourites/tags/2.1.4/readme.txt

    r2976111 r3027940  
    55Requires at least: 4.4 or higher
    66Tested up to: 6.3.1
    7 Stable tag: 2.1.3
     7Stable tag: 2.1.4
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3434
    3535== Changelog ==
     36
     37= 2.1.4 =
     38Correct display issue with favourites button
    3639
    3740= 2.1.3 =
  • simple-woocommerce-favourites/tags/2.1.4/simple-woocommerce-favourites.php

    r2976111 r3027940  
    44 * Plugin URI: https://simplistics.ca
    55 * Description: Manages a simple list of favourite products for each user and displays it with a shortcode
    6  * Version: 2.1.3
     6 * Version: 2.1.4
    77 * Author: Jonathan Boss
    88 * Author URI: https://simplistics.ca
  • simple-woocommerce-favourites/tags/2.1.4/views/add-to-favourites-button.php

    r2976111 r3027940  
    22<div class='swf_container'>
    33    <span class='swf_message'></span>
    4     <button class="swf_add_to_favourites" data-productid='<?php echo $product->get_id(); ?>'>Add to Favourites</button>
     4    <button class="swf_add_to_favourites btn" data-productid='<?php echo $product->get_id(); ?>'>Add to Favourites</button>
    55</div>
  • simple-woocommerce-favourites/trunk/includes/class-swf-favourites-button.php

    r2976111 r3027940  
    5050    public static function display_button(){
    5151        if( self::should_show() ){
    52             Simple_Woocommerce_Favourites::view( 'add-to-favourites-button' );
     52            ob_start();
     53                Simple_Woocommerce_Favourites::view( 'add-to-favourites-button' );
     54            return ob_get_clean();
    5355        }
    5456    }
  • simple-woocommerce-favourites/trunk/readme.txt

    r2976111 r3027940  
    55Requires at least: 4.4 or higher
    66Tested up to: 6.3.1
    7 Stable tag: 2.1.3
     7Stable tag: 2.1.4
    88License: GPLv2
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3434
    3535== Changelog ==
     36
     37= 2.1.4 =
     38Correct display issue with favourites button
    3639
    3740= 2.1.3 =
  • simple-woocommerce-favourites/trunk/simple-woocommerce-favourites.php

    r2976111 r3027940  
    44 * Plugin URI: https://simplistics.ca
    55 * Description: Manages a simple list of favourite products for each user and displays it with a shortcode
    6  * Version: 2.1.3
     6 * Version: 2.1.4
    77 * Author: Jonathan Boss
    88 * Author URI: https://simplistics.ca
  • simple-woocommerce-favourites/trunk/views/add-to-favourites-button.php

    r2976111 r3027940  
    22<div class='swf_container'>
    33    <span class='swf_message'></span>
    4     <button class="swf_add_to_favourites" data-productid='<?php echo $product->get_id(); ?>'>Add to Favourites</button>
     4    <button class="swf_add_to_favourites btn" data-productid='<?php echo $product->get_id(); ?>'>Add to Favourites</button>
    55</div>
Note: See TracChangeset for help on using the changeset viewer.