kenil802
Forum Replies Created
-
Hi @frankbtea,
1) In our plugin, there is an option for the tax to be calculated with the fees included or without the fees as it is shown here: https://prnt.sc/st11k. So when this taxable checkbox is enabled tax will be applied with the fees. So can you please check this setting and elaborate more on your query.
2) It is not possible right now from our plugin but we had added this in our development queue.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @marimarjm,
Regarding the query, we have not yet checked the compatibility of our plugin with the Product Price Markup plugin so we are not sure whether it will work fine or not.
However, once we check the compatibility we will get back to you with an update on this.
Regards,
Kenil ShahForum: Plugins
In reply to: [Product Input Fields for WooCommerce] Field display on SHOP pageHi @mfebrey,
Glad that we could help you to solve the issue on your site. π
And it would be great if you can spare a bit of your time in reviewing our plugin on wordPress.org. Here is the link for the same: https://wordpress.org/plugins/product-input-fields-for-woocommerce/#reviews
Happy to help!
Regards,
Kenil ShahForum: Plugins
In reply to: [Product Input Fields for WooCommerce] Field display on SHOP pageHi @mfebrey,
Regarding the query, there is a Position option called “Do not display” in general settings as shown in the screenshot: https://prnt.sc/ss4y64. When this is set we can use [alg_display_product_input_fields] shortcode, or PHP alg_display_product_input_fields() function to display the input fields where we want to display them.
Please let us know if you have any further queries.
Regards,
Kenil ShahGlad that we could help you to solve the issue on your site. π
It would be great if you can spare a bit of your time in sharing the feedback for us and reviewing the plugin. Here is the link for the same: https://wordpress.org/plugins/custom-order-statuses-woocommerce/#reviews
Happy to help!
Regards,
Kenil ShahHi @markosolo,
Thank you for appreciating our plugin. Regarding the error of an open div, I think you misunderstood that because it is not an open div or any design. Please have a look at the div here :
<div class=”order-addresses
<?php
if ( ! wcdn_has_shipping_address( $order ) ) :
?>
no-shipping-address<?php endif; ?>”>
As you can see that after the PHP statement the div is getting closed.Also, it would be great if you can share your review with us on the given link here: https://wordpress.org/plugins/woocommerce-delivery-notes/#review.
Please let us know if you have any further queries.
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Add Pickup TimeHi @capzicco2,
Regarding the query, can you please inform us whether the pickup time field you want is a custom meta field? Because that code will work if the additional field is a custom meta field.
Please let us know if you have any further queries.
Regards,
Kenil ShahHi @frankbtea,
Thank you for sharing the detailed information.
Regarding the query, we will check on it and get back to you with an update.
Regards,
Kenil ShahRegarding the query, could you please again create the Shipped status and then check whether you are able to recover all the orders or not.
Please let us know how it goes.
Regards,
Kenil ShahHi @trentschaller,
Sorry for the delay in response.
Regarding the query, could you please inform us where are you able to see the products to download text on the invoice page? Are you using something for that or from where it is coming?
Do let us know so that we can assist you in a better way.
Regards,
Kenil ShahHi @edworthymedia,
Regarding the query, yes it is possible to copy that instruction to delivery notes if the field in which the customers add the instructions is custom meta field.If it is custom meta filed then try adding it like this :
Code:
/**
* Add this code snippet in functions.php file of your currently active theme.
* An example that adds a ‘VAT’ and ‘Customer Number’ field to the end of the list.
*/
function example_custom_order_fields( $fields, $order ) {
$new_fields = array();
if( get_post_meta( $order->id, ‘your_meta_field_name’, true ) ) {
$new_fields[‘your_meta_field_name’] = array(
‘label’ => ‘VAT’,
‘value’ => get_post_meta( $order->id, ‘your_meta_field_name’, true )
);
}
if( get_post_meta( $order->id, ‘your_meta_field_name’, true ) ) {
$new_fields[‘your_meta_field_name’] = array(
‘label’ => ‘Customer Number’,
‘value’ => get_post_meta( $order->id, ‘your_meta_field_name’, true )
);
}
return array_merge( $fields, $new_fields );
}
add_filter( ‘wcdn_order_info_fields’, ‘example_custom_order_fields’, 10, 2 );Please let us know how it goes.
Regards,
Kenil ShahHi @bbasler,
Regarding the query, we have tried to replicate your issue on our staging site with the latest version of WordPress and WooCommerce, but we are unable to replicate it. To me, the Call for Price works fine when the price of the product is set to blank.
So, to troubleshoot the issue, can you please try deactivating all the other plugins except for the WooCOmmerce and Call for Price plugin and then check whether it solves the issue or not.
Please let us know how it goes.
Regards,
Kenil ShahForum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] composite productsHi @alasdairmacewan,
Sorry for the delay in response.
Can you please download the print-content.php file from the dropbox link provided below. After that please replace the file which is present in woocommerce-delivery-notes/templates/print-order/print-content.php with the downloaded file.
Then after replacing the file please add the below code in your theme’s functions.php file so that it will hide the composite items on the printed invoices, delivery note, and receipt.
Code:
add_filter( ‘wcdn_order_item_product’, ‘print_invoice_order_item_visible’, 10, 2 );
function print_invoice_order_item_visible( $order, $item ) {
if ( ! empty( $item[ ‘composite_parent’ ] ) ) {
return false;
}
return $order;
}Dropbox Link:- https://www.dropbox.com/s/44klb63f5lk4yav/print-content.php?dl=0
Please do let us know how it goes.
Regards,
Kenil Shah- This reply was modified 5 years, 11 months ago by kenil802.
Hi @kentchow75,
Sorry for the delay in response.
βCan you please try adding the below code in the theme’s function.php file and then check whether it is working fine or not.
Code:
function example_product_image( $product ) {
if ( isset( $product->id ) ) {
$variation_image_id = $product->get_image_id();
echo wp_get_attachment_image( $variation_image_id, array( ’90’, ’70’ ) );
}
}
add_action( ‘wcdn_order_item_before’, ‘example_product_image’ );
β
Please let us know how it goes.Regards,
Kenil ShahForum: Plugins
In reply to: [Product Prices by User Roles for WooCommerce] Bulk Buying DiscountHi @ijoin,
Regarding the query, currently, it is not possible from our plugin to put the bulk pricing for each user role.
Please let us know if you have any further queries.
Regards,
Kenil Shah