PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Compatibility of FOX currency and WCFM from WC lovers

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
12

It is a testing account. I will delete it once we resolved the issue of conversions.

Thanks

Hello

I am asking you to update my wp-admin access because last time I added vendor role for a test and now the admin panel is not available for this user

Hello Pablo,

Ok i understand. Now you can access the site as administrator. I've just removed the seller role. You no longer need to change roles. You can create a product as an administrator. Alternatively, you can also use this test vendor account (as.concepts007@gmail.com ; pwd : Cocoatest).

By the way, if you need a test customer account, you can use this: boubakar.sa@gmail.com; pwd:010188BOUBa)

Thanks

Hello

Ok!  Thank  you

Hello

in file  - wp-content\plugins\wc-frontend-manager\views\orders\wcfm-view-orders-details.php - I added   code - https://share.pluginus.net/image/i20231006172406.png

$order_currency = $order->get_currency() ;
$rate = 1;
if (class_exists('WOOCS')) {
global $WOOCS;

if ($order_currency != $WOOCS->default_currency) {
$order_currency = $WOOCS->default_currency;
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$WOOCS->current_currency]['rate'];
}
}

I  changed the code - https://share.pluginus.net/image/i20231006172739.png

echo wc_price( $order->get_item_subtotal( $item, false, true )/$rate, array( 'currency' => $order_currency ) );

 

and   - https://share.pluginus.net/image/i20231006172823.png

echo '<span class="wc-order-item-discount">-' . wc_price( wc_format_decimal( $order->get_item_subtotal( $item, false, false ) - $order->get_item_total( $item, false, false ), '' )/$rate, array( 'currency' => $order_currency ) ) . '</span>';

 

and - https://share.pluginus.net/image/i20231006172908.png

echo wc_price( $item->get_total()/$rate, array( 'currency' => $order_currency) );

 

and  - https://share.pluginus.net/image/i20231006172954.png

echo '<span class="wc-order-item-discount">' . sprintf( esc_html__( '%s discount', 'woocommerce' ), wc_price( wc_format_decimal( $item->get_subtotal() - $item->get_total()/$rate, '' ), array( 'currency' => $order_currency ) ) ) . '</span>';

 

and  - https://share.pluginus.net/image/i20231006173052.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency ) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006173135.png

echo wc_price( wc_round_tax_total( $tax_item_subtotal/$rate ), array( 'currency' => $order_currency ) );

 

and - https://share.pluginus.net/image/i20231006173219.png

echo '<span class="wc-order-item-discount">-' . wc_price( wc_round_tax_total( ($tax_item_subtotal - $tax_item_total)/$rate ), array( 'currency' => $order_currency ) ) . '</span>';

 

and - https://share.pluginus.net/image/i20231006173309.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency ) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006173415.png

echo ( isset( $item['cost'] ) ) ? wc_price( wc_round_tax_total( $item['cost']/$rate ), array( 'currency' => $order_currency ) ) : '';

 

and - https://share.pluginus.net/image/i20231006173502.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency ) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006173600.png

echo ( '' != $tax_item_total ) ? wc_price( wc_round_tax_total( $tax_item_total/$rate ), array( 'currency' => $order_currency ) ) : '&ndash;';

 

and - https://share.pluginus.net/image/i20231006173650.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency ) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006173728.png

echo ( $item->get_total() ) ? wc_price( wc_round_tax_total( $item->get_total()/$rate ), array( 'currency' => $order_currency ) ) : '';

 

and - https://share.pluginus.net/image/i20231006173823.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency ) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006173914.png

echo ( '' != $tax_item_total ) ? wc_price( wc_round_tax_total( $tax_item_total/$rate ), array( 'currency' => $order_currency ) ) : '&ndash;';

 

and - https://share.pluginus.net/image/i20231006173957.png

echo '<small class="refunded">-' . wc_price( $refunded/$rate, array( 'currency' => $order_currency) ) . '</small>';

 

and - https://share.pluginus.net/image/i20231006174055.png

echo '<li class="code"><a target="_blank" href="' . esc_url( $link ) . '" class="img_tip" data-tip="' . esc_attr( wc_price( $item['discount_amount']/$rate, array( 'currency' => $order_currency ) ) ) . '"><span>' . esc_html( $item->get_name() ). '</span></a></li>';

 

and - https://share.pluginus.net/image/i20231006174148.png

<?php echo wc_price( $order->get_total_discount()/$rate, array( 'currency' => $order_currency ) ); ?>

 

and - https://share.pluginus.net/image/i20231006174235.png

echo '<del>' . strip_tags( wc_price( $order->get_total_shipping()/$rate, array( 'currency' => $order_currency ) ) ) . '</del> <ins>' . wc_price( ($order->get_total_shipping() - $refunded)/$rate, array( 'currency' => $order_currency ) ) . '</ins>';

 

and - https://share.pluginus.net/image/i20231006174321.png

echo wc_price( $order->get_total_shipping()/$rate, array( 'currency' => $order_currency ) );

 

and - https://share.pluginus.net/image/i20231006174413.png

echo '<del>' . strip_tags( $tax->formatted_amount ) . '</del> <ins>' . wc_price( WC_Tax::round( $tax->amount/$rate, wc_get_price_decimals() ) - WC_Tax::round( $refunded/$rate, wc_get_price_decimals() ), array( 'currency' => $order_currency ) ) . '</ins>';

 

and - https://share.pluginus.net/image/i20231006174507.png

<td class="total refunded-total">-<?php echo wc_price( $order->get_total_refunded()/$rate, array( 'currency' => $order_currency ) ); ?></td>

 

and - https://share.pluginus.net/image/i20231006174548.png

echo wc_price( $commission, array( 'currency' => $order_currency ) );

 

and - https://share.pluginus.net/image/i20231006174628.png

echo wc_price( $commission, array( 'currency' => $order_currency ) );

 

Unfortunately, there is still incompatibility with our plugin, but further work with this third-party plugin is rejected. Adapting this plugin exceeds our resources

Hello Pablo,

So bad new. Ok i acknowledge and really appreciate all your engagement. You did your best. I continue to search other alternatives. Thanj you very much.

Regards

hello

Welcome;)

12