bowenac
Forum Replies Created
-
I’m getting this as well, moved a site from domain.com/new-site to domain.com used wp migrate db which I have used 100’s of times but this clients site is using this plugin and I get this error.
Also visual composer is not working not sure if related.
Deactivating this plugin and visual composer starts working again.
UPDATE: After deactivating I then re activated and it showed an update updated this plugin now its working and visual composer is working again.
Never mind it worked great as always you can delete this.
The problem was the new database that was created was using a different prefix, just had to update that in wp-config
Ok I figured out a way to do it. Much simpler.
add_filter( 'registration_redirect', 'custom_sub_registration_redirect' ); function custom_sub_registration_redirect( $redirect ) { if( isset( $_SERVER['HTTP_REFERER'] ) && 0 != strlen( $_SERVER['HTTP_REFERER'] ) ) { $redirect = wp_login_url(esc_url( $_SERVER['HTTP_REFERER'] )); //$redirect = esc_url( $_SERVER['HTTP_REFERER'] ); } return $redirect; }
Forum: Plugins
In reply to: [Tax Rate Upload] Double taxYes I already told you… You can use the plugin to delete all tax rates…
Forum: Plugins
In reply to: [Tax Rate Upload] Double taxYea get rid of the country flat rate and use the zip codes like normal…
You can use the plugin to remove all state rates that you uploaded. Either way I am not sure why it would charge you twice as I have never used two different sources for taxes.
This isn’t caused by my plugin but how you have your taxes configured.
Forum: Plugins
In reply to: [Tax Rate Upload] Tax Rate Calculating $0.00Make sure for each item you create you are choosing a tax class. That was the problem for the OP… Taxes were calculating just fine. Just double check all of your woocommerce settings. Email me if you would like help.
Forum: Plugins
In reply to: [Tax Rate Upload] Tax Rate Calculating $0.00Does it show your rates under woocommerce->tax->standard?
Who is your hosting provider?
Can you email me your website link so I can take a look. You can get that from my website. Links to my site display in the plugin etc. From there you can send me an email.
Forum: Plugins
In reply to: [WooCommerce German (de_DE)] Can I add string to be translated?I just ended up finding the string and manually converting it. I tried to add the translation to your de_DE.po but it wasn’t working.
Thanks
Forum: Plugins
In reply to: [Woocommerce CSV importer] import category imageI have a plugin that does this. You can also export a csv template that includes all of your categories as well as the image path if it has an image… You can see it here https://www.pnw-design.com/product/woocommerce-category-image-importer/
Forum: Plugins
In reply to: [WooCommerce] Products out of stock cannot be boughtWhat you need to do is set to manage stock, set your quantity to how ever many you have on hand. For a test you can set that to 0 if you want to allow backorders… Then set the stock status to In Stock that way if you are allowing backorders it will still show in stock, and allow customer to purchase if you have allow backorders enabled.
If you set the stock status to Out of Stock and Allow Backorders to do not allow the item will show out of stock and not allow backorders.
If you set allow backorders to allow, it will automatically set the stock status to in stock, You cannot set the stock status to not in stock and allow backorders… as this will auto set the stock to in stock even though your stock qty is 0 or empty… That is the whole point of it so you can allow backorders etc.
The stock quantity will show the customer how many you have in stock if this is above 0…
If you do not have allow backorders enabled once the stock hits 0 it will change the stock status to out of stock automatically.
I hope all of this makes sense.
Forum: Plugins
In reply to: [WooCommerce] Price depends on gold priceDid you figure this out? Just wanted to let you know you should be able to do this using filters as well.
Forum: Plugins
In reply to: [WooCommerce] Price depends on gold priceYou want me to write the code for you? I explained myself perfectly fine. Look up creating template over rides. Or contact me directly and I can help you with this.
Forum: Plugins
In reply to: [WooCommerce] Products out of stock cannot be boughtYou might want to check the stock of each variable item and make sure you have all your variable items linked.
You can also enable backorders…
Forum: Plugins
In reply to: [WooCommerce] Price depends on gold priceYes you could create a template override and add a custom feild maybe called Gold… Then where the price is displayed multiply that by the value of the gold field value…
I have a similar problem. Users are unable to edit any of the options on woocommerce my-account page. Any extra fields I add with this cimy plugin to only the registration page, do not show up on the my-account page but I get errors if both password fields are blank. I also have a checkbox for agree to terms before registering which causes an error saying it needs to be checked but it does not display on the woocommerce my account page.