dancingpony
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Transaction Cancelled: Fixed?@mountaincrawlie – I didn’t make any of the suggested changes, so ours just started working because of whatever PayPal must have done on their end.
Forum: Plugins
In reply to: [WooCommerce] Red line in woocommerce pageIt’s a style in the theme.
Line 3220 of the /wp-content/themes/zerif-lite/style.css file
The style is ‘.entry-title::after’
If you remove that style the red line will go – must just be a theme design thing.
Forum: Plugins
In reply to: [WooCommerce] Transaction CancelledWe’ve just started receiving this message too.
Haven’t updated the plugin recently and prior to a customer bringing this to our attention everything was fine.
Is this a PayPal issue or WooCommerce?
Forum: Plugins
In reply to: [Captcha] Captcha Reload button not workingIt’s not so much as resolved, as I just turned the feature off.
I’m guessing if no one else reported the same issue, it must be particular to our site set-up – so I’ll just leave it off.
Forum: Plugins
In reply to: [WooCommerce] get_sidebar( 'shop' ) breaking layout after updateSorry if I’m asking the wrong questions – I just don’t understand why the same sidebar is called twice if I’m using the TwentyEleven theme.
Perhaps it’s something to do with theme options?
Forum: Plugins
In reply to: [WooCommerce] get_sidebar( 'shop' ) breaking layout after updateI think the issue is that the function
get_sidebar( 'shop' );
is called in twice now – where it was only called once before.First in the single-product.php (through woocommerce_sidebar) and now again in the wrapper-end.php.
Apparently WordPress doesn’t like calling the same sidebar in more than once, so there is some protection against it.
I understand not a lot of people will be using twentyeleven theme, but is there a reason the sidebar is called in a second time in the wrapper-end.php file? It seems unnecessary …
Forum: Plugins
In reply to: [WooCommerce] get_sidebar( 'shop' ) breaking layout after updateWhere does the empty sidebar-shop.php file have to go? In my child theme?
Forum: Plugins
In reply to: [WooCommerce] Send New Account email to Customer AFTER CheckoutI have created a new email that sends when an order status changes from pending payment to completed – so that does what I want.
I was just hoping I could use the WooCommerce email that is already generated, just send it after payment was complete.
But it sounds like that isn’t possible.
Thanks for your help.
Forum: Plugins
In reply to: [WooCommerce] Send New Account email to Customer AFTER CheckoutYeah – so that switches it off completely, I want to do it conditionally based on something the user enters.
The code below unhooks that email – so I solved that part.
add_action( 'woocommerce_email', 'unhook_those_pesky_emails' ); function unhook_those_pesky_emails( $email_class ) { remove_action( 'woocommerce_created_customer_notification', array( $email_class, 'customer_new_account' ) ); }Now I’d like to know if there’s a way to send that email AFTER checkout.
Any help with that?
Forum: Plugins
In reply to: [WooCommerce] Send New Account email to Customer AFTER CheckoutI imagine WooCommerce does hook into it somehow though, because the template and class for the email is coming from WooCommerce files.
/includes/emails/class-wc-email-customer-new-account.php
I just want to stop that email being sent. It must be possible.
Forum: Plugins
In reply to: [WooCommerce] Upload Products But Don't Push LiveYou could simply give the new product a status of ‘draft’ or ‘pending review’.
Then bulk edit and change to ‘Published’ when you want them live.
Forum: Plugins
In reply to: [WooCommerce] Different Billing Email and Account EmailHi – and thanks for your reply.
What exactly will that do? It looks as though it will stop an account being created entirely?
Hi Steve,
Thanks for your explanation and link to that article.
I’d prefer to stick with popular standards than change things up.
I will just leave that option out for now.
Cheers!
My apologies, I did mean article:author.
Is there anyway to fill the article:author meta tag with the name of the Author? As opposed to a URL?
The example on the Pinterest Developers site looks like the below:
<meta property="article:author" content="CNN Karla Cripps" />Forum: Plugins
In reply to: [Captcha] Captcha Reload button not workingHi,
I have turned that function off for now – and I don’t particularly want to turn it back on and have it not working.
Could my PHP version be effecting it?