Sam Pryor
Forum Replies Created
-
Hi Kim,
Actually it turns out you can do it with an add-on.
https://www.paidmembershipspro.com/add-ons/cancel-on-next-payment-date/
Cheers!
SamForum: Plugins
In reply to: [SVG Support] Vulnerability Reported by WP EngineThis site states that it is resolved in 2.3.20:
https://patchstack.com/database/vulnerability/svg-support/wordpress-svg-support-plugin-2-3-19-stored-cross-site-scripting-xss-vulnerabilityForum: Plugins
In reply to: [WooCommerce] How can i add a sub menu to the Analytics tabOK I got it, this will work: add ‘woocommerce’ as the parent, then put ‘path=/analytics/your_page_slug‘ as the slug
Eg:
add_submenu_page( ‘woocommerce’, ‘Report Download’, ‘Report Download’, ‘manage_options’, ‘path=/analytics/cd-wc-report-download’, ‘function_name’);Apologies, I was wrong. This doesn’t work.
- This reply was modified 3 years, 5 months ago by Sam Pryor.
Forum: Plugins
In reply to: [WooCommerce] How can i add a sub menu to the Analytics tabI’m able to get the sub menu to appear under the Analytics heading by changing the %2F to fwd slashes. However I cannot get my admin page to render, it goes to a 404:
add_submenu_page( ‘wc-admin&path=/analytics/overview’, ‘Report Download’, ‘Report Download’, ‘manage_options’, ‘cd-wc-report-download’, ‘function_name’);
Hope that helps
- This reply was modified 3 years, 5 months ago by Sam Pryor.
Forum: Plugins
In reply to: [Yoast Duplicate Post] Action hook after clone is completePerfect, thank you for the quick response!
Forum: Fixing WordPress
In reply to: Bartender API access deniedThank you Anna!
My client had this issue today but it worked fine in an incognito window.
Must be a chrome extension or something.Forum: Reviews
In reply to: [Theme My Login] Core functionality works well.Thanks Jeff, review updated.
Forum: Plugins
In reply to: [The Events Calendar] Conflict with ACF (Advanced Custom Fields)OK here’s a patch for now, I’m using this field on the user-edit.php page, so I’m hooking this into that page only, you’ll need to change the hook to suit your page:
add_action('admin_head-user-edit.php', 'deregister_tribe_select2'); function deregister_tribe_select2() { wp_deregister_script('tribe-select2'); }
(put this in your functions.php file)
- This reply was modified 7 years ago by Sam Pryor.
Forum: Plugins
In reply to: [The Events Calendar] Conflict with ACF (Advanced Custom Fields)Same issue for me.
Forum: Plugins
In reply to: [Theme My Login] Use a different header.phpOh of course! I just changed the template and it worked right away.
Haha, whoops. Thank you!
:@Forum: Plugins
In reply to: [Theme My Login] Use a different header.php@retrovertigo, yes this is exactly what I’m doing.
Is there a function to identify if a page is a Theme My Login page? Something like this?if(is_theme_my_login_page('your-profile')) { get_header('client'); }
Forum: Reviews
In reply to: [Mailjet Email Marketing] Stopped workingHi, sorry I never got back to you, I have updated and reactivated the plugin, and now the pages load much faster! I have updated my review.
Cheers!
SamAdd this to your theme’s functions.php
$_SERVER[‘HTTPS’] = false;Thank you Niels! THANK YOU!