• In the code, in marketpress.php function tax_price( $format = false, $cart = false ) {
    Should
    if (!isset($meta[‘country’])) {
    $meta[‘country’] = ”;
    }

    actually be
    if (!isset($meta[‘country’])) {
    $meta[‘country’] = $this->get_setting(‘base_country’);
    }

    My fix, fixes my empty tag bug.

    https://ww.wp.xz.cn/plugins/wordpress-ecommerce/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Technical Code Question’ is closed to new replies.