Skip to content

Commit

Permalink
Fix one-time item label.
Browse files Browse the repository at this point in the history
  • Loading branch information
picocodes committed Oct 25, 2023
1 parent 0d7725e commit 4fdf430
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 163 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static function output( $post, $invoice = false ) {
'type' => 'checkbox',
'name' => '_wpinv_quick[one-time]',
'id' => '_wpinv_quick-one-time',
'label' => __( 'Item Name', 'invoicing' ),
'label' => __( "One time item (won't be saved to regular items list)", 'invoicing' ),
'value' => 1,
'no_wrap' => true,
'checked' => false,
Expand Down
4 changes: 2 additions & 2 deletions invoicing.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GetPaid
* Plugin URI: https://wpinvoicing.com/
* Description: A lightweight and VAT compliant payments and invoicing plugin.
* Version: 2.7.8
* Version: 2.7.9
* Author: AyeCode Ltd
* Author URI: https://wpinvoicing.com
* Text Domain: invoicing
Expand All @@ -23,7 +23,7 @@
}

if ( ! defined( 'WPINV_VERSION' ) ) {
define( 'WPINV_VERSION', '2.7.8' );
define( 'WPINV_VERSION', '2.7.9' );
}

// Include the main Invoicing class.
Expand Down
Loading

0 comments on commit 4fdf430

Please sign in to comment.