NOX-ROOT-MARAZ Manager v2
PHP 8+ Secure
/
home
/
xiedrke
/
malino
/
wp-content
/
plugins
/
woocommerce-currency-switcher
/
views
/
widgets
/
Name
Size
Perms
Actions
📄 converter_form.php
1,466 B
0644
Edit
|
Chmod
|
Delete
📄 rates.php
920 B
0644
Edit
|
Chmod
|
Delete
📄 rates_form.php
1,466 B
0644
Edit
|
Chmod
|
Delete
📄 selector.php
1,490 B
0644
Edit
|
Chmod
|
Delete
Editing: rates.php
<?php if (!defined('ABSPATH')) die('No direct access allowed'); ?> <?php if (isset($args['before_widget'])) { echo wp_kses_post($args['before_widget']); } ?> <div class="widget widget-woocommerce-currency-rates"> <?php if (!empty($instance['title'])) { if (isset($args['before_title'])) { echo wp_kses_post($args['before_title']); echo esc_html($instance['title']); echo wp_kses_post($args['after_title']); } else { ?> <h3 class="widget-title"><?php echo esc_html($instance['title']) ?></h3> <?php } } ?> <?php echo do_shortcode('[woocs_rates exclude="' . ($instance['exclude']??'') . '" precision="' . ($instance['precision']??'') . '"]'); ?> </div> <?php if (isset($args['after_widget'])) { echo wp_kses_post($args['after_widget']); }
Cancel