Plugin Directory

Changeset 2669172


Ignore:
Timestamp:
01/30/2022 10:35:47 AM (4 years ago)
Author:
offerwhere
Message:
  • Prevent card from scrolling to top on click.
  • Standardize size of loyalty program name.
  • Update tags.
Location:
offerwhere-for-woocommerce
Files:
16 added
5 edited

Legend:

Unmodified
Added
Removed
  • offerwhere-for-woocommerce/trunk/CHANGELOG.txt

    r2669029 r2669172  
    11== Changelog ==
     2= 1.5.0 =
     3* Prevent card from scrolling to top on click.
     4* Standardize size of loyalty program name.
     5* Update tags.
     6
    27= 1.4.0 =
    38* Update CSS.
  • offerwhere-for-woocommerce/trunk/README.txt

    r2669029 r2669172  
    22Contributors: offerwhere, tosinogunrinde
    33Author URI: https://www.offerwhere.com
    4 Tags: loyalty program, reward program, points program, woocommerce, loyalty, reward, points
     4Tags: Loyalty program, loyalty, points, Points and Rewards, Rewards, woocommerce
    55Requires at least: 3.1
    66Tested up to: 5.9
    7 Stable tag: 1.4.0
     7Stable tag: 1.5.0
    88Requires PHP: 7.0
    99WC requires at least: 3.5
     
    7272
    7373== Changelog ==
    74 = 1.4.0 =
    75 * Update CSS.
     74= 1.5.0 =
     75* Prevent card from scrolling to top on click.
     76* Standardize size of loyalty program name.
     77* Update tags.
    7678
    7779[Historical Changelog](https://raw.githubusercontent.com/tosin-ogunrinde/offerwhere-for-woocommerce-wordpress-plugin/master/offerwhere-for-woocommerce/CHANGELOG.txt)
  • offerwhere-for-woocommerce/trunk/css/offerwhere.css

    r2669029 r2669172  
    88    margin: 0 !important;
    99    padding: 0 !important;
     10    font-size: 1.5rem !important;
    1011}
    1112
  • offerwhere-for-woocommerce/trunk/js/offerwhere.js

    r2647433 r2669172  
    11jQuery(document).ready(function ($) {
    22    'use strict';
    3     $("#offerwhere-form-ask-user-for-number-toggle-button").click(function () {
     3    $("#offerwhere-form-ask-user-for-number-toggle-button").click(function ($e) {
     4        $e.preventDefault();
    45        $('#offerwhere-form-user-number-container').toggle('fast', function () {
    56            if ($('#offerwhere-form-user-number-container').is(':visible')) {
  • offerwhere-for-woocommerce/trunk/offerwhere-woocommerce.php

    r2669029 r2669172  
    44 * Plugin URI:              https://www.offerwhere.com/grow-business/loyalty-programs
    55 * Description:             Retain more customers. Run an effective loyalty program on your website, in your store, or from your home in minutes.
    6  * Version:                 1.4.0
     6 * Version:                 1.5.0
    77 * Requires at least:       3.1
    88 * Tested up to:            5.9
     
    2121
    2222const OFFERWHERE_WORDPRESS_MINIMUM_VERSION = '3.1';
    23 const OFFERWHERE_VERSION = '1.4.0';
     23const OFFERWHERE_VERSION = '1.5.0';
    2424const OFFERWHERE_WOOCOMMERCE_MINIMUM_VERSION = '3.5';
    2525
Note: See TracChangeset for help on using the changeset viewer.