lukelee
Forum Replies Created
-
NVM, I have figured out.
Hi.
I just want the page stay after click “Add to Quote”, In the description, it says”Choose a redirect page after add to quote.”, can the redirect be disabled?I sent an email. Got this error message:
Delivery has failed to these recipients or groups: [email protected] ([email protected]) The address you sent your message to wasn't found at the destination domain. It might be misspelled or it might not exist. Try to fix the problem by doing one or more of the following: Send the message again, but before you do, delete and retype the address. If your email program automatically suggests an address to use, don't select it. Clear the recipient AutoComplete cache in your email program by following the steps in this article: Status code 5.1.1. Then resend the message, but before you do, be sure to delete and retype the address. Contact the recipient by some other means (by phone, for example) to confirm you're using the right address. Ask them if they've set up an email forwarding rule that could be forwarding your message to an incorrect address.
Ah.Thank you very much!
I missed that part.Forum: Plugins
In reply to: [Pixel Caffeine] Pixel is not firingseems it suddenly working.
Forum: Plugins
In reply to: [AI Responsive Gallery Album] Double Shortcodes don't workI want to know if I can put more than 1 gallary on same page.
Forum: Plugins
In reply to: [WooCommerce] Unset shipping method based on Product variation@anphira Thanks. I will check this post.
Forum: Plugins
In reply to: [WooCommerce] Unset shipping method based on Product variationThanks @anphira. But Shipping classes only allows to add certain amount to a Variation. I can’t disable certain shipping method for some variations.
@anphira Thanks.
Is there anyway to show both primary and secondary breadcrumbs?Forum: Plugins
In reply to: [WooCommerce] How to get the billing state in functions.php?I solved it. In case anyone else need help.
$paypal_args = apply_filters( 'woocommerce_paypal_args', $paypal_args ); add_filter( 'woocommerce_paypal_args' , 'custom_override_paypal_email' ); function custom_override_paypal_email( $paypal_args ) { global $woocommerce; $payment1_states = array( 'TAS', 'VIC'); $payment2_states = array( 'NT', 'NSW'); if( in_array( $woocommerce->customer->get_shipping_state(), $payment1_states ) ) { $paypal_args['business'] = '[email protected]'; } elseif( in_array( $woocommerce->customer->get_shipping_state(), $payment2_states ) ) { $paypal_args['business'] = '[email protected]'; print } else { $paypal_args['business'] = '[email protected]'; } return $paypal_args; }
Forum: Plugins
In reply to: [WooCommerce] How to get the billing state in functions.php?Thanks Mike.
After I put in priority and arg, it shows 505 internal error. Without the priority and arg, it just always return the first email which is [email protected]Forum: Plugins
In reply to: [WooCommerce] User specific productsThanks Mike.
Forum: Plugins
In reply to: [WooCommerce] User specific productsThank you for your help Mike, but this is not what I am asking.
Don’t worry about the prescription.
Is there anyway to make product visible to certain users, NOT user roles?Forum: Fixing WordPress
In reply to: odd pages only has 1 imageThanks, newbiesup.
How do I remove them?Forum: Fixing WordPress
In reply to: How to remove the text "item" in woocommerce mini cart?I have tried add_filter, but it didn’t work, maybe my code wasn’t correct.
Many thanks.I found https://docs.woothemes.com/document/hooks/
Hopefully I find what I need to know.