ablears
Forum Replies Created
-
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 https://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 https://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.
I’m using Roots too. Try using the wp_footer action instead. For example:
function my_theme_deregister_plugin_assets_footer() { wp_dequeue_style('yarppRelatedCss'); } add_action( 'wp_footer', 'my_theme_deregister_plugin_assets_footer' );
Forum: Plugins
In reply to: [WP eCommerce] Gift certificates plugin for WP E-Commerce?Apparently not. Sorry.
I’ve tried emailing the current owners of https://wpecommercegiftcertificate.com (the original devs sold the plugin to another team). I haven’t heard back in over a month so I assume they are no longer interested in supporting the product.
Their documentation is useless too. It supports PayPal – but which PayPal? Standard? Express? Payments Pro? No idea.
I’m also a developer and want to customise one of the plugins to add PayPal Express and percentage-based discounts. Let me know if you find anything out.