ablears
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Email Validation] Does not work with WooCommerce 3.0A temporary fix is this:
Edit the plugin file /woocommerce-email-validation/classes/class-woocommerce-email-validation.php
Find this on line 71:
$billing_email = $woocommerce->checkout->posted['billing_email'];Replace with:
$checkout = new WC_Checkout; $billing_email = $checkout->get_value('billing_email');If you’re not comfortable editing code then please wait for the official fix from @ hlashbrooke
The WishList devs provided a fix but they’re not committing it for release. So if anyone else has this issue, this was what the WishList devs said:
The file you need to check is wishlist-member/wpm.php at line 5152.
add_action('template_redirect', array(&$WishListMemberInstance, 'Process'), 1);change it to
add_action('template_redirect', array(&$WishListMemberInstance, 'Process'), 999);Forum: Plugins
In reply to: [WP SEO Structured Data Schema] Plugin not working for custom post typeIn wp-seo-structured-data-schema/lib/classes/KcSeoHelper.php, look at the kcSeoPostTypes() function (line 41 for me).
Replace
$post_types = get_post_types( array( '_builtin' => true ) );with
$post_types = get_post_types( /*array( '_builtin' => true )*/ );Basically this determines which post types the plugin will show on. By commenting out the array you prevent it from showing on internal WordPress post types only (page, post).
Here’s my plugin list. Deactivating Wishlist fixes the issue, hence my assumption that was the only plugin at fault.
Adminer
Akismet Anti-Spam
Black Studio TinyMCE Widget
Custom Metadata Manager
Eliminate Notify Email
Google Analytics for WordPress by MonsterInsights
Meta Box
NextGEN Gallery
Post Types Order
Pretty Link
Quick Page/Post Redirect Plugin
Relevanssi
Total Slider
UpdraftPlus – Backup/Restore
WishList Member™
Wordfence Security
WP-Cycle
Yoast SEO@tiku oh! Can you share your plugin list?
The way to find the culprit is to disable plugins one by one until the problem stops.
@tiku, the issue is solely between NextGen and Wishlist. I’m waiting on my client getting a new license for Wishlist so I can talk to Wishlist support. If you have an active license then try raising a ticket with them and point them to this thread.
Hi Cais, Wishlist Member is a paid membership plugin, the link is http://member.wishlistproducts.com/
I’ve reached out to them too.
cheers
AnthonyThank you, I tried both those options without luck. Deactivating WishList Member did the trick, but unfortunately that is not an optional plugin for us.
Forum: Plugins
In reply to: WooCommerce Authentication Endpoint 403 ForbiddenDid you ever figure this out? I am having the same issue (also on Hostgator).
Forum: Plugins
In reply to: [WP eCommerce] DPS PX Pay upgarde to 2.0Sorry to hijack this thread but I reported this a few months ago. There’s a hard deadline on this – Tuesday 6th September GMT 00:00 is when PxPay 1 will be shut down.
So for those of us who need PxPay, can you confirm you’ll have a solution in place by then?
Forum: Plugins
In reply to: [WP eCommerce] Getting Checkout to appear…..I added a product to the cart. Then I clicked the ‘Checkout’ link which took me to http://www.ntboosterclub.org/products-page/checkout/ – this looks fine.
If you want you can add a link to checkout in your menu as another way for customers to get there. You could also add the checkout link where ever you want in your theme (in a widget perhaps).
Forum: Plugins
In reply to: [PesaPal Pay] WP eCommerce integrationGreat. Thank you!
Forum: Plugins
In reply to: [Media Deduper] Bulk delete of duplicate images is not workingGreat – thanks @drywallbmb
Forum: Plugins
In reply to: [Media Deduper] Bulk delete of duplicate images is not workingI have the same issue on WP 4.4.2, Media Deduper 0.9.3.
Bulk deleting redirects to the media library with a url like:
No console errors.
Tried removing all plugins and switching to Twenty Fifteen and the problem remained.
Forum: Plugins
In reply to: [WP eCommerce] Caching with W3TC and VarnishThanks Justin. Looks like you’re right about W3TC :/
I’ll try WP Rocket + Varnish.
Thanks for all you’ve done with WPEC, it used to be so hack-ish but the code quality is excellent now.