Hi there! Needing some help again! My cliente need to obligate the customer to inform what kind oh card he needs to pay with (its 3 options); It is already at the site, but is not working (the data are note being printed at the PRINT INVOICE) – I tried to adapt a function as bellow, knowing the name of the field, just like that. Also a print of the form and the PRINT INVOICE where I want to show the extra field: https://telecris.app/wp-content/uploads/2024/06/print-invoice.png
function example_custom_order_fields22( $fields, $order ) {
$new_fields = array();
if( get_post_meta( $order->id, 'billing_wooccm12', true ) ) {
$new_fields['billing_wooccm12'] = array(
'label' => 'ID:',
'value' => get_post_meta( $order->id, 'billing_wooccm12', true )
);
}
return array_merge( $fields, $new_fields );
}
add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields22', 10, 2 );
]]>For the checkout block, is there a way to add new text field before the “add notes”? Also want to add the section Additional Information as you can see in screenshot. Add notes will move under the new text field. Any solution?ext
https://ibb.co/8MCHk6k
]]>so in the frontend at the booking section there will be an option, say buying a optional toolset that is needed for the activity?
Many thanks and love the plugin which is almost ready to be launched at our site.
]]>The plugin works perfect and shows the products variable info too.
In order to add extra fields to my products I am using the PPOM N-media plugin.
However, when I add a product to the wishlist doesn’t show the info from the extra field selected from the third party plugin.
Is there a way to save this info provided from those extra fields and show it to the wishlist table ?
Thanks
]]>https://northernohio.golf/email-newsletter/
The rendering is also breaking the css of the page below that field.
Any ideas as to why? Maybe a bug? How to fix?
Thanks…
–Allen Freeman
]]>How can I add an extra field in the OptIn form?
Searching and searching, but can’t find how…
For example adding (field): Mobile Number, Birthday or splitting First and Last name…
Thank you,
Marc
]]>Thanks for this great plugin.
Woocommerce is not (yet????) setup for easy product management. We only have in stock, out of stock and in back order product states. States like discontinued or replaced by are not available.
Now I don’t want to show the stock alert form on product pages of products that are discontinued. Maybe a better state for this would be ‘no restock’.
Since the stock states is not the current right way to solve this, I looked at using the extra fields of a product.
So for instance add for a specific product the extra field ‘no restock’. No need to add it for all products. And then either have the plugin look at this extra field and act upon that or use a woocommerce action like woocommerce_single_product_summary and add some logic to the template function file.
So, this is a kind of feature request to handle products that will not be restocked.
If this feature request doesn’t make it, can you provide some help with logic that must be created in the template functions file?
Thanks
]]>