brianmurphy
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Sharing preview problemJetpack is doing that to your site.
Delete jetpack from your site if you’re not using it.
Otherwise, here is their official override document:
https://jetpack.com/2013/07/12/add-a-default-image-open-graph-tag-on-home-page/
Forum: Plugins
In reply to: [WooCommerce] The attribute section does not workTry this. Press F12 to enable chrome dev tools and go to the console tab. Reload the page and go back to the attributes page with the spinner. Do you have any error on the console?
Go to Woocommerce – Status, click the Get Status Report button and paste it here so that we can see which versions of software you have.
Forum: Plugins
In reply to: [WooCommerce] Products not showing in cartHi Andrew. I don’t know if this is good or bad news but I clicked all over your site, loaded the cart, removed products from the cart, reloaded it, shift-reloaded for a non-cache load, and I can’t cause the cart to disappear.
I’m on Chrome/Windows. (and have ad blockers blocking your google ad scripts)
Forum: Plugins
In reply to: [WooCommerce] Woo shipping questionPlace the shipping zone with the known cost as your first zone.
Then in the others/default zone add a call for shipping plugin.
https://woocommerce.com/products/woocommerce-contact-for-shipping-quote/
Forum: Plugins
In reply to: [WooCommerce] Original price of variable productsYour theme or a plugin is causing that. Standard woocommerce doesn’t show the discount %.
I tried it with a stock twentysixteen theme and I got the old price strike-thru followed by the sale price.
Forum: Plugins
In reply to: [WooCommerce] MYSQL query to change image extensionUnfortunately what you are asking is not an easy find/replace because images within wordpress are referenced by their attachment ID. You have to create the attachment post first and then update the _thumbnail_id in your product’s postmeta.
It might be easier for you to do an “update” import with the correct images so that woocommerce handles the attachment mapping for you.
Forum: Plugins
In reply to: [Eventbrite API] Divi ThemeYour question is timely because I just tried setting this up on a divi site too. Now that I’m connected with the keyring I see that it uses a custom page template to display the events. How dumb, that is not going to work. I really expected better coming from Automattic but this is the state we’re in. I’m off to give this waste of time a 1 star review.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Import?Hi Alex. Thank you for the response and the links. I appreciate your candidness too.
I only want the last 2 weeks, not several years of posts. I guess I’ll try WP All Export/Import since it’s too much to do by hand yet a small fraction of all the entries. And there are new customers that need to be added to go with the new orders which the woocommerce link doesn’t seem to address.
Nevermind, I hacked wp-property-importer/lib/class-wpp-property-import.php to insert the photo url array into a postmeta field that I can access from my theme templates.
Frank, thank you for the quick response. I just started using the plugin an hour ago so I appreciate the tip!
Oh, how dirty.
Since you are calling wp_enqueue_style mid-page (from the shortcode), your plugin stylesheet gets included in the site footer.
I’m going to have to hardcode this single style in my footer to override your awful button css.
I guess it’s too late for me but please fix this for everyone else.
After many var_dumps I FOUND THE ERROR!
The form builder tool provides the country code as a text input box. The API expects a 2 character country code.
Enter US instead of United States and the form works.
The form builder needs to be fixed to be a select drop down instead of a free form text entry box.