This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • in reply to: Multi Currency Symbol #15593
    JieJie
    Participant

    Yes, thanks!

    It was fixed. I don’t know what code you have added.

    Best

    Jie

    in reply to: Multi Currency Symbol #15557
    JieJie
    Participant

    You cannot access this content.

    in reply to: Issue with WPML #14952
    JieJie
    Participant

    Thanks! It works well!

    in reply to: Issue with WPML #14949
    JieJie
    Participant

    You cannot access this content.

    in reply to: Issue with WPML #14947
    JieJie
    Participant

    You cannot access this content.

    in reply to: Issue with WPML #14946
    JieJie
    Participant

    I think you can now login via FTP.

    I am using Cyberdunk FTP.

    in reply to: Issue with WPML #14940
    JieJie
    Participant

    You cannot access this content.

    in reply to: Issue with WPML #14935
    JieJie
    Participant

    You cannot access this content.

    in reply to: Issue with WPML #14901
    JieJie
    Participant

    You cannot access this content.

    in reply to: Add Product Tags in Title #14446
    JieJie
    Participant

    Thank you!

    It works well.

    in reply to: Fixed on the header on mobile device #13689
    JieJie
    Participant

    Hi

    I have solved the issue by moving the shortcode from default page description area to the themify module.

    Perfect!

    Thank you!

    in reply to: Fixed on the header on mobile device #13686
    JieJie
    Participant

    Thank you! It seems working.

    Another little issue. I find that the compact form on desktop can only be clicked on the left bottom corner as the attachments show.

    It works well backend but both safari and chrome have the issue .

    Thanks

    Jie

    in reply to: Fixed on the header on mobile device #13678
    JieJie
    Participant

    You using Chrome? I think it’s not accurate. There are too much inaccuracy caused by the browser.

    Check the [shop] page, there are two shortcodes. The first one is hidden on mobile device.

    The first only displays on desktop.

    I use the simulator or mobile phone, can see the second search form.

    • This reply was modified 8 years, 11 months ago by JieJie.
    in reply to: Fixed on the header on mobile device #13669
    JieJie
    Participant

    Hi

    it’s accessible now.

    But I use the same code to fix a menu to the header (also scrollable), it works fine, you can also check that: https://notin.store/brands/ .

    Turn you browser to mobile size to see that form please.

    in reply to: Support for WCML #13625
    JieJie
    Participant

    [code]add_filter(‘asp_results’, ‘asp_display_price_w_currency’, 10, 4);
    function asp_display_price_w_currency($results, $sid, $is_ajax, $args) {
    if ( empty($args[‘woo_currency’]) )
    return $results;
    global $woocommerce;
    global $sitepress;
    global $woocommerce_wpml;
    $currency = $args[‘woo_currency’]; // GET THIS FROM A PARAM

    foreach ($results as $k=>&$r) {
    if ( isset($r->post_type) &&
    in_array($r->post_type, array(‘product’, ‘product_variation’))
    ) {
    $p = wc_get_product( $r->id );
    $price = $woocommerce_wpml->multi_currency->prices->get_product_price_in_currency( $r->id, $currency );
    $r->title .= ‘ – ‘ . wc_price($price, array(‘currency’ => $currency));
    }
    }
    return $results;
    }[/code]

Viewing 15 posts - 1 through 15 (of 18 total)