luizdevplugins
Forum Replies Created
-
Forum: Plugins
In reply to: [Show Stock Status for WooCommerce] French translationThe translation issue is fixed in version 1.0.4. Please update the plugin
Forum: Plugins
In reply to: [Show Stock Status for WooCommerce] i cannot translateThe translation issue is fixed in version 1.0.4. Please update the plugin
Great, I am closing this thread, feel free to reopen a new support thread if any new issue.
Best regards
– Yes you can customize the content for each status using the default settings (additional content, heading, subject ), and also append content to the emails programmatically using the woocommerce email hooks like woocommerce_email_after_order_table, woocommerce_email_header and woocommerce_email_footer
– What is happening on public post? Is it showing on search results? we are checking to prevent this on next release setting as not public
– We are constantly increasing the plugin compatibilities, but some plugins only work with the default woocommerce settings. I will check about this specific case with the Royal Mail plugin and check if it is doable.
– Let me know if your workaround has worked with the processing status notification
- This reply was modified 1 year, 11 months ago by luizdevplugins.
Hello, we intend insert this feature on next realase. It will work similar as you suggested, only keeping the same template name + – + status slug like:
storefront/woocommerce/emails/admin-order-status-email-order-successful.php
storefront/woocommerce/emails/customer-order-status-email-made-and-packed.phpstorefront/woocommerce/emails/plain/admin-order-status-email-order-successful.php
storefront/woocommerce/emails/plain/customer-order-status-email-made-and-packed.phpWe are just confirming some compatibilities and updating our documentation before
- This reply was modified 1 year, 12 months ago by luizdevplugins.
Glad to help. I am closing this issue. Fill free to reopen another ticket if need assistence.
Could tell me where you turned on this option on the tracking plugin? It is not showing to me
For now the only issue I see is that the “extra icon” is not appearing on the custom status on your side, but it seems to be only a link to the order, right? It seems the “view action” is not showing in the custom status.
When you do not set an icon to the order status it uses the regular default eye/view icon
Is the “packed” a custom order status or it is created from the other plugin? And what is the text that show when you do a mouse hover on it? (That button does not show when you disabled the custom order status plugin, right? so my guess it is the icon for the custom status)
- This reply was modified 2 years ago by luizdevplugins.
And the “add tracking” button was supposed to be there? I only see it inside the “Order Page”, there is a button where set the tracking info. But it shows on all custom status here. I noticed that the plugin renames “complete” to “shipped”, but the regular action buttons are there. Could you show me more evidences of the issue?
@jwfrag Are you using a plugin for the other action buttons and the add tracking feature? Could you tell me the name and version? Could you send a screenshot showing how it looks liek when the plugin is disabled?
- This reply was modified 2 years ago by luizdevplugins.
- This reply was modified 2 years ago by luizdevplugins.
Hi, be sure the status slug has max 17 characters length, also not a numeric status slug and without special characters. Could you confirm the status name you are using? And what is the plugin version?
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Add Body Content to the emailsadd_action( ‘woocommerce_email_before_order_table’, ‘brightplugins_add_content_specific_email’, 20, 4 ); function brightplugins_add_content_specific_email( $order, $sent_to_admin, $plain_text, $email ) { if ( $email->id == ‘bvos_custom_transit’ ) { echo ‘<p>Content for transit status</p>’; } if ( $email->id == ‘bvos_custom_waiting-for-conf’ ) { echo ‘<p>Content for waiting status</p>’; } }
- This reply was modified 2 years, 1 month ago by luizdevplugins.
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Add Body Content to the emailsThe plugin relies on the regular woocommerce email editor on Woocommerce -> Settings -> Emails and there is an option to append content at the end (Additional Content). If you are familiar with coding you can use the woocommerce hooks to append content to the email, in this case we can use the hook “woocommerce_email_before_order_table”. Code goes inside the functions.php file inside theme directory
Here a code sample:
add_action( ‘woocommerce_email_before_order_table’, ‘brightplugins_add_content_specific_email’, 20, 4 );
function brightplugins_add_content_specific_email( $order, $sent_to_admin, $plain_text, $email ) {
if ( $email->id == ‘bvos_custom_Your-Custom-Status-Slug-Goes-Here’ ) {
echo ‘<h2 class=”email-upsell-title”>Sell Title</h2><p>Content before table</p>’;
}
}You can discover your email ID checking the URL when editing a Woocommerce Email. The plugin email ID is always “bvos_custom_” + your status slug (the one inserted on the status registration)
Another available hooks are:
woocommerce_email_before_order_table
woocommerce_email_after_order_table
woocommerce_email_order_meta
woocommerce_email_footer@thejoke26 Hi, accents on slug or only on title got issue? We already tested with accents on status name, but on slug field we should not allow (only numbers also should be not allowed). Could you confirm if on your side is working with accents only on status title? Thanks
- This reply was modified 2 years, 2 months ago by luizdevplugins.
- This reply was modified 2 years, 2 months ago by luizdevplugins.