This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Product SKU not being displayed on frontend when outside Single P…
…roduct template
- Loading branch information
1 parent
04cf1b3
commit bd5da9a
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...ts/js/atomic/blocks/product-elements/shared/use-is-descendent-of-single-product-block.tsx
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,30 @@ | ||
/** | ||
* External dependencies | ||
*/ | ||
import { useSelect } from '@wordpress/data'; | ||
|
||
interface UseIsDescendentOfSingleProductBlockProps { | ||
blockClientId: string; | ||
} | ||
|
||
export const useIsDescendentOfSingleProductBlock = ( { | ||
blockClientId, | ||
}: UseIsDescendentOfSingleProductBlockProps ) => { | ||
const { isDescendentOfSingleProductBlock } = useSelect( | ||
( select ) => { | ||
const { getBlockParentsByBlockName } = | ||
select( 'core/block-editor' ); | ||
const blockParentBlocksIds = getBlockParentsByBlockName( | ||
blockClientId?.replace( 'block-', '' ), | ||
[ 'woocommerce/single-product' ] | ||
); | ||
return { | ||
isDescendentOfSingleProductBlock: | ||
blockParentBlocksIds.length > 0, | ||
}; | ||
}, | ||
[ blockClientId ] | ||
); | ||
|
||
return { isDescendentOfSingleProductBlock }; | ||
}; |
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