-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
103 changed files
with
1,575 additions
and
422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: add | ||
|
||
Add WooPay Klaviyo newsletter integration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Significance: patch | ||
Type: fix | ||
Comment: Fix FedEx insurance rates with different currencies. | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
changelog/fix-6567-user-set-date-and-time-formatting-arent-respected-in-react-components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: minor | ||
Type: update | ||
|
||
Apply User-Defined Date Formatting Settings to WP Admin React Components |
4 changes: 4 additions & 0 deletions
4
changelog/fix-8620-fee-types-in-fees-brakedown-tooltip-are-not-internationalised
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: fix | ||
|
||
Use translatable strings on the fee breakdown tooltip of the payment settings screen. |
4 changes: 4 additions & 0 deletions
4
changelog/fix-9418-hide-transaction-fees-when-transaction-is-not-captured
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: fix | ||
|
||
Hide transaction fee on admin view order screen when transaction is not captured. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: patch | ||
Type: fix | ||
|
||
Ensure captured transactions appear in the Transactions tab without requiring a page refresh. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: minor | ||
Type: fix | ||
|
||
Use "currency conversion fee" instead "foreign exchange fee" in payment timeline and various other places. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Significance: minor | ||
Type: fix | ||
|
||
Show express checkout for products w/o shipping but where tax is included into price. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Significance: patch | ||
Type: fix | ||
Comment: fix: tokenized ECE item compatibility w/ product bundles | ||
|
||
|
5 changes: 5 additions & 0 deletions
5
changelog/update-s6837-reduce-api-impact-for-test-drive-setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Significance: patch | ||
Type: update | ||
Comment: Reduce the maximum number of API calls during the test-drive process and add maximum duration cut off logic. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,7 @@ describe( 'AccountFees', () => { | |
precision: 2, | ||
}, | ||
}, | ||
dateFormat: 'F j, Y', | ||
}; | ||
} ); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import React, { useState } from 'react'; | ||
import { __ } from '@wordpress/i18n'; | ||
import { useDispatch } from '@wordpress/data'; | ||
|
||
/** | ||
* Internal dependencies | ||
*/ | ||
import BannerNotice from 'components/banner-notice'; | ||
import interpolateComponents from '@automattic/interpolate-components'; | ||
import { Link } from '@woocommerce/components'; | ||
import './style.scss'; | ||
|
||
const optionName = 'wcpay_date_format_notice_dismissed'; | ||
|
||
const DateFormatNotice: React.FC = () => { | ||
const { updateOptions } = useDispatch( 'wc/admin/options' ); | ||
const [ isBannerVisible, setIsBannerVisible ] = useState( | ||
! wcpaySettings.isDateFormatNoticeDismissed | ||
); | ||
|
||
const handleDismiss = () => { | ||
setIsBannerVisible( false ); | ||
wcpaySettings.isDateFormatNoticeDismissed = true; | ||
updateOptions( { | ||
[ optionName ]: true, | ||
} ); | ||
}; | ||
|
||
const handleSettingsClick = () => { | ||
handleDismiss(); | ||
}; | ||
|
||
if ( ! isBannerVisible ) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<BannerNotice | ||
status="info" | ||
icon={ true } | ||
isDismissible={ true } | ||
onRemove={ handleDismiss } | ||
className="date-format-notice" | ||
> | ||
{ interpolateComponents( { | ||
components: { | ||
settingsLink: ( | ||
<Link | ||
href={ '/wp-admin/options-general.php' } | ||
onClick={ handleSettingsClick } | ||
type="external" | ||
/> | ||
), | ||
}, | ||
mixedString: __( | ||
'The date and time formats now match your preferences. You can update them anytime in the {{settingsLink}}settings{{/settingsLink}}.', | ||
'woocommerce-payments' | ||
), | ||
} ) } | ||
</BannerNotice> | ||
); | ||
}; | ||
|
||
export default DateFormatNotice; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.date-format-notice { | ||
.wcpay-banner-notice__content { | ||
align-self: center; // Align the content to the center of the notice and the icon. | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.