stephenwayne
Forum Replies Created
-
Here is how a different Woo thank you page plugin has advised adding the function to theirs:
https://www.storeapps.org/docs/ctp-how-to-add-custom-parameter-in-custom-thank-you-page-url/
add_filter( 'modify_ctp_url', 'my_custom_ctp_url' ); function my_custom_ctp_url( $thankyou_page_url ) { $part_url = parse_url( $thankyou_page_url ); if ( isset( $part_url ) && isset( $part_url['query'] ) ) { $query_params = array(); parse_str( $part_url['query'], $query_params ); $order_id = absint( $query_params['ctp_order_id'] ); $order = wc_get_order( $order_id ); if ( $order instanceof WC_Order ) { $thankyou_page_url = add_query_arg( array( 'ctp_first_name' => $order->get_billing_first_name(), ), $thankyou_page_url ); } } return $thankyou_page_url; }
Forum: Plugins
In reply to: [Disable Admin Notices individually] Webcraftic SpamThis is supposed to hide annoying nags, not be a persistent annoying nag. Your plugin creates the spam it’s supposed to prevent. What date will the next release be available without this spam?
Forum: Plugins
In reply to: [WP Notification Center] Great, but still showing WP update nageThis was an amazing plugin. Sadly, this plugin needs to be updated to be compatible with 4.7. I contacted the developer so they are aware of the problem. Since it is a free plugin we just have to wait until they have some spare time or feel like fixing it for fun.
Forum: Plugins
In reply to: [MC4WP: Mailchimp User Sync] Is it possible to select groups?+1 on this!
I manage dozens of Mailchimp accounts and most of them utilize interest groups. Not being able to sync them defeats the purpose, accept for super basic email lists with email and name.
Also, Assigning buddypress extra profile fields to mailchimp interest groups would be ideal. Great work on the basic plugin! Liking what I see so far. Looking forward to this becoming more functional.
I’m willing to hack some code but I’m not very knowledgable with PHP. I could handle copying and pasting the code and swapping out interest group IDs. Is it that simple or do I need to hire someone to write the code?
Forum: Plugins
In reply to: [MC4WP: Mailchimp User Sync] Buddypress field namesAny luck with this? Is this working for you guys? I’m trying to sync buddypress xprofile fields to mailchimp groups. This should be assignable in the plugin dashboard but I’d settle for hacking the php file. Please let me know if this is a viable option…
Forum: Plugins
In reply to: [AutoChimp] Sync Cimy User Fields with Mailchimp interest groupsI’m referring to ‘dropdown multi’. Regular text fields will sync, but interest groups in Mailchimp are dropdown, checkbox, and radio buttons. I can’t get any Cimy fields to sync with these parts of the Mailchimp list.
Forum: Plugins
In reply to: [Eyes Only: User Access Shortcode] Conflict with theme's logged in/out code?That was it! Thanks.
Forum: Plugins
In reply to: [Eyes Only: User Access Shortcode] Conflict with theme's logged in/out code?Thanks for the response. It does hide content for logged out users but not for logged in users. By the way, awesome plugin!
[eyesonly logged=”out”]
[gravityform id=”7″]
[/eyesonly]
[eyesonly logged=”in”]
Welcome to InvestProp!
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Cheers,
Brad[/eyesonly]
Forum: Plugins
In reply to: [Simply Instagram] Not working at all. Blank page.Me too. Shortcode displays nothing.
Yes, it did end up working. I still get the error message even though it does import them. When it does import sometimes it says the title of an imported post after the error message instead of “No new Instagram shots to import”. I deactivated all my other plugins and the error does not go away. But it does work!
Great work on this plugin Justin!
Thanks, got it updated. Good work on the plugin!
Plugin rocks, minus the goofy code showing up. how do I edit the code to fix it manually so my bands stop bugging me?