nonick
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Use Tabs instead of Accordion in Mobile ViewThanks for the pointers. Managed to get the tabs to work in mobile view by changing the CSS as you said. Here are my CSS modifications.
@media (max-width: 767px) {
.responsive-tabs .responsive-tabs__list {
display: block!important;
}.responsive-tabs .responsive-tabs__heading {
display: none!important;
}.responsive-tabs-wrapper {
clear: both!important;
margin-bottom: 20px!important;
zoom: 1!important;
border-top: 0!important;
}.responsive-tabs .responsive-tabs__panel {
border: 1px solid #ddd!important;
border-top: 1px solid #ddd!important;
-webkit-border-radius: 0px!important;
-moz-border-radius: 0px!important;
border-radius: 0px!important;
-webkit-border-top-left-radius: 0px!important;
-moz-border-radius-topleft: 0px!important;
border-top-left-radius: 0px!important;
clear: left!important;
margin-bottom: 0!important;
padding: 20px 20px 0!important;
word-wrap: break-word!important;
}
}Hi,
Thanks for the prompt response!
This is my configuration, following your suggestions. Vendors only ship within the country. I’ve also set the “location not covered” to include “local pickup”.
https://share.getcloudapp.com/7KumX9r6For a particular Vendor, I set up the shipping as such:
https://share.getcloudapp.com/WnubpPvW
https://share.getcloudapp.com/BluO268z
The vendor offers “flat rate @$6” and “local pickup” to Zone 1 in the country (postcode 010000…089999, 170000…199999), and offers “flat rate @$4”, “local pickup” and “free shipping above $50” everywhere else in the country.When I key in a postcode say 010123 or 171111, I get this: https://share.getcloudapp.com/4gujRpkL
But when I key in a postcode, say 222222, I get this:https://share.getcloudapp.com/wbuW54jY
This was the problem I was facing all along. It seems that the zones with the same region/country placed below Zone 1 are ignored, and only works for the postcode entered in Zone 1. I needed the “local pickup” to be available regardless of the postcode entered.
The workaround is to define all 28 districts in the country into 28 shipping zones, which is super tedious to set up for vendors. So I am trying to avoid this. ??
https://share.getcloudapp.com/z8u8dj59Is there a way for “local pickup” to ignore the postcode range if defined? Please help! ??
Thanks in advance!
Hi, thanks for the replies!
Unfortunately, the solution you suggested did not work for me. ??
Alternatively, is there a way to either:
(a) configure WCFM to set the “local pickup” option automatically in all the shipping zones so that vendors don’t have to do it manually for each zone? https://share.getcloudapp.com/YEup4eOv
OR
(b) allow Vendors to set the postcode restrictions themselves?
https://share.getcloudapp.com/mXuAGDPlThanks!
P.S. I tried explaining why the solution suggested above did not work for me, but the message got pretty long. If you are interested, I took a screenshot: https://share.getcloudapp.com/rRulzgo7
Thank you so much! Appreciate the great help.
Forum: Plugins
In reply to: [Responsive Sidebar] CSS configurations for Responsive Sidebar?Update: I realized I could adjust the position of the toggle button. So please ignore #1. Thanks!
@luminus, thanks for the help! Will try that.
Forum: Plugins
In reply to: [WooCommerce] BlockUI alert!Realized that the files for github will somehow cause some problems with the variations in the product post.
So I loaded back my original backup.
Edit the 2 original files jquery.blockUI and jquery.blockUI.min by removing the command below in both files (make sure you backup first):
alert(‘blockUI requires jQuery v1.3 or later! You are using v’ + $.fn.jquery);return;
Do not delete the {} at the front and back of the command though.
That stopped the annoying alert on the webpages and then the variations will still work! ??
Until woocommerce come up with a fix….
Forum: Plugins
In reply to: [WooCommerce] BlockUI alert!Solved.
1. Go to https://github.com/woothemes/woocommerce/tree/master/assets/js/jquery-blockui
2. Download the 2 js files. Make sure that the file extension remains as .js after you’ve downloaded them. My firefox turns them into .js.htm files. If that happens, manaully remove the “.htm” in the file name.
3. Use your ftp or control panel, go into folder where woocommerce stores the 2 js files.
i.e. wpcontent / plugins / woocommerce / assets / js / jquery-blockui4. Backup the 2 files in the folder
5. Overwrite the 2 files with the ones you just downloaded.
Refresh you site. The annoying message should go away. ??