Website : phonehp.ir
backdoor
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Home
Console
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Warning
: Undefined variable $backdoor in
/home/nehpir/public_html/goods.php
on line
326
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nehpir
/
www
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
Filename :
wcpay.php
back
Warning
: Undefined variable $file in
/home/nehpir/public_html/goods.php
on line
545
Copy
<?php /** * WooPayments integration. * * @package woodmart */ use WCPay\MultiCurrency\MultiCurrency; if ( ! defined( 'WCPAY_VERSION_NUMBER' ) ) { return; } if ( ! function_exists( 'woodmart_wcpay_convert_shipping_progress_bar_limit' ) ) { /** * Converts shipping progress bar limit to selected currency rate. * * @param float $limit Original price limit. * @return float Converted price limit based on selected currency rate. */ function woodmart_wcpay_convert_shipping_progress_bar_limit( $limit ) { if ( 'wc' === woodmart_get_opt( 'shipping_progress_bar_calculation', 'custom' ) ) { return $limit; } $limit *= MultiCurrency::instance()->get_selected_currency()->get_rate(); return $limit; } add_action( 'woodmart_shipping_progress_bar_amount', 'woodmart_wcpay_convert_shipping_progress_bar_limit' ); }