-
Notifications
You must be signed in to change notification settings - Fork 219
[Checkout blocks] Change the link in the Feedback box #11990
Comments
Let's change the link to create a topic in the discussion board (within the appropriate category if possible). |
@nerrad It is 🙂, We probably need to create the category first (btw, am I the only one to think that GH discussions are so simplified, that they actually turn complex?) |
These are the current categories I propose we create a new category. |
Oh, great! I was going by the link Raluca pasted in the description of the issue.
Yes, something like Also, there is an airtable automation that will need updated post-merge. |
@pmcpinto mentioned we'll be collecting the feedback once we have CES in place. Pedro, did you mean this automation? |
To be clear, that automation is already collecting feedback coming into the designated GH discussions category. |
This is the link |
@nerrad I'm seeing some pretty interesting things around this, it seems that automation runs from feedback left on the default FeedbackPrompt URL (correct me if I'm wrong here, assuming from the logic on the airtable automation) const FeedbackPrompt = ( {
text,
title = __( 'Feedback?', 'woo-gutenberg-products-block' ),
url = 'https://ideas.woocommerce.com/forums/133476-woocommerce?category_id=384565',
}: FeedbackPromptProps ) => {
(...) It gets overwritten for Cart&Checkout, Product Query, Product Collection and LegacyFeedbackPrompt (which seems not to be used at all) Cart&Checkout and Legacy use the link we want to replace. The other two use airtable links.
export const CartCheckoutFeedbackPrompt = () => (
<FeedbackPrompt
text={ __(
'We are currently working on improving our cart and checkout blocks to provide merchants with the tools and customization options they need.',
'woo-gutenberg-products-block'
) }
url="https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues/new?template=--cart-checkout-feedback.md"
/>
);
export const LegacyFeedbackPrompt = () => (
<FeedbackPrompt
text={ __(
'We are working on a better editing experience that will replace classic blocks. Keep an eye out for updates!',
'woo-gutenberg-products-block'
) }
url="https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues/new?template=--classic-block-feedback.md"
/>
);
export const ProductQueryFeedbackPrompt = () => (
<FeedbackPrompt
text={ __(
'Thanks for trying out the Products block! Help us make it better by sharing your feedback.',
'woo-gutenberg-products-block'
) }
title={ __( 'Share your feedback!', 'woo-gutenberg-products-block' ) }
url={ 'https://airtable.com/shrFX5FAqmCY6hVYI' }
/>
);
export const ProductCollectionFeedbackPrompt = () => (
<FeedbackPrompt
text={ __(
'Thanks for trying out the Product Collection block! Help us make it better by sharing your feedback.',
'woo-gutenberg-products-block'
) }
title={ __( 'Share your feedback!', 'woo-gutenberg-products-block' ) }
url={ 'https://airtable.com/shrqsMSDPvAKoY99u' }
/>
); I'll link the PR shortly. |
@wavvves |
I closed this by mistake, I followed up with another PR 👍🏼 |
Is your feature request related to a problem? Please describe.
The
Give us your feedback
link points to the WooCommerce Blocks repo. We need to change the link to point to the WooCommerce repo discussions: to a new discussion in the Checkout flow category, with the labeltype: product feedback
.woocommerce/woocommerce#42091 will introduce the CES prompt, but before that gets implemented we need to replace the link.
Timeline:
Describe the solution you'd like
https://github.com/woocommerce/woocommerce/discussions/new?category=checkout-flow&labels=type%3A+product%20feedback
Describe alternatives you've considered
Another option would be to remove the feedback box altogether until we implement CES
The text was updated successfully, but these errors were encountered: