Skip to content

Commit

Permalink
Merge pull request #4 from iamsayan/develop
Browse files Browse the repository at this point in the history
added v1.1.9
  • Loading branch information
iamsayan committed Jul 22, 2023
2 parents e88867c + bb1b7a3 commit e5753ce
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.1.9
Release Date: July 22, 2023

* WordPress tested upto v6.3.
* WC Tested upto v7.9.

## 1.1.8
Release Date: June 10, 2023

Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: infosatech
Tags: razorpay, qrcode, upi, woocommerce, debit card, credit card
Requires at least: 4.6
Tested up to: 6.2
Stable tag: 1.1.8
Tested up to: 6.3
Stable tag: 1.1.9
Requires PHP: 5.6
Donate link: https://www.sayandatta.co.in/donate
License: GPLv3
Expand Down Expand Up @@ -106,6 +106,12 @@ Post detailed information about the issue in the [support forum](https://wordpre

If you like Razorpay Payment Links for WooCommerce, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/rzp-woocommerce/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!

= 1.1.9 =
Release Date: July 22, 2023

* WordPress tested upto v6.3.
* WC Tested upto v7.9.

= 1.1.8 =
Release Date: June 10, 2023

Expand Down
18 changes: 9 additions & 9 deletions rzp-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* Plugin Name: Razorpay Payment Links for WooCommerce
* Plugin URI: https://wordpress.org/plugins/rzp-woocommerce/
* Description: The easiest and most secure solution to collect payments with WooCommerce. Allow customers to securely pay via Razorpay (Credit/Debit Cards, NetBanking, UPI, Wallets, QR Code).
* Version: 1.1.8
* Version: 1.1.9
* Author: Sayan Datta
* Author URI: https://www.sayandatta.co.in
* License: GPLv3
* Text Domain: rzp-woocommerce
* Domain Path: /languages
* WC requires at least: 2.4
* WC tested up to: 7.8
* WC tested up to: 7.9
*
* Razorpay Payment Links for WooCommerce is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -48,7 +48,7 @@ final class RZPWC {
*
* @var string
*/
public $version = '1.1.8';
public $version = '1.1.9';

/**
* Minimum version of WordPress required to run RZPWC.
Expand Down Expand Up @@ -338,12 +338,12 @@ public function admin_notice() {
<?php
}

$show_donate = true;
if ( $this->calculate_time() > strtotime( '-240 hours' )
|| '1' === get_option( 'rzpwc_plugin_dismiss_donate_notice' )
|| apply_filters( 'rzpwc_hide_sticky_donate_notice', false ) ) {
$show_donate = false;
}
$show_donate = false;
// if ( $this->calculate_time() > strtotime( '-15 days' )
// || '1' === get_option( 'rzpwc_plugin_dismiss_donate_notice' )
// || apply_filters( 'rzpwc_hide_sticky_donate_notice', false ) ) {
// $show_donate = false;
// }

if ( $show_donate ) {
$dismiss = wp_nonce_url( add_query_arg( 'rzpwc_notice_action', 'dismiss_donate' ), 'rzpwc_notice_nonce' );
Expand Down

0 comments on commit e5753ce

Please sign in to comment.