Forum Replies Created
-
AuthorPosts
-
Jie
ParticipantYes, thanks!
It was fixed. I don’t know what code you have added.
Best
Jie
Jie
ParticipantYou cannot access this content.
Jie
ParticipantThanks! It works well!
Jie
ParticipantYou cannot access this content.
Jie
ParticipantYou cannot access this content.
Jie
ParticipantI think you can now login via FTP.
I am using Cyberdunk FTP.
Jie
ParticipantYou cannot access this content.
Jie
ParticipantYou cannot access this content.
Jie
ParticipantYou cannot access this content.
Jie
ParticipantThank you!
It works well.
Jie
ParticipantHi
I have solved the issue by moving the shortcode from default page description area to the themify module.
Perfect!
Thank you!
Jie
ParticipantThank 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
Jie
ParticipantYou 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
Jie.
Jie
ParticipantHi
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.
Jie
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 PARAMforeach ($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] -
This reply was modified 8 years, 11 months ago by
-
AuthorPosts