Hi there,
I try to send data ” create post ” details am try to send demo data but it’s infinity loop and don;t send any data to the webhook.
besides, is there any plain to update the plugin.
thanks
]]>I’m using the theme MyListing, and would like to pull data when a new listing is created, and push that to Pabbly Connect.
I can’t see the Listing post type, is this possible to pull data from?
]]>Just wondering if I can add the phone number we get when a new user registers to the data sent via webhook to our crm?
]]>Hi,
I added a single URL for the actions again, changing and deleting a post.
I want to know if there is any way to identify each one as a payload, because I need to identify each action for Make’s webhooks (integromat)
Thanks
kklo
]]>Hi, I’m using the plugin to help connect to pabbly. Basically when a new user registers with a username and password, I am using an external API to enroll them in a teachable course.
At this point, using this plugin, I have successfully retrieved email, name, and what appears to be an encrypted password from newly registered users. I’m wondering if there’s any way to retrieve an unencrypted password from a newly created user. I believe WordPress uses one-way encryption though, so this might just be a pipe dream? Any ideas would be very appreciated, thanks!
]]>Hello,
First: thank you for this amazing plugin!
When a post is updated, the “Post updated ” webhook is sent twice.
Has anyone encountered this problem?
WordPress back-office send two request when he update a post :
– POST /wp-json/wp/v2/post_type/1000127?_locale=user
– POST /wp-admin/post.php?post=1000127&action=edit
I presume 2 requests result 2 webhooks.
I already checked the “Fire only once per instance”?Option.
Thank you
Have a good day
]]>I have a system where my users publish the posts from it to wordpress. what i need is to get notification when those posts update in wordpress, so i tried to programatically install wp wehooks plugin on wordpress site, but i couldn’t add webhook url programatically. is it possible to programmatically add a webhook url in WP Webhook plugin. Thanks
]]>Looks like a great plugin, but when I activate the free version of the plugin, I get these errors. I’ve installed version 3.3.2 and have version 6.10 Formidable Forms Pro.
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_formidable_forms::$helpers is deprecated in?…/wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php?on line?133
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_formidable_forms::$actions is deprecated in?…/wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php?on line?133
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_formidable_forms::$triggers is deprecated in?…/wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php?on line?133
]]>Thank you for a great plugin. Is it possible to read posts in the “get_post” action by providing a post link (Post Permalink)?
I tried using value_type: attachment_url but it doesn’t work (I get the error “We did not find any post for your given post_value.”)
Is there any way?
]]>I want to integrate the Redirection Plugin with the WP Webhooks Plugin. Here’s the WordPress Hooks documentation for the Redirect Plugin: https://redirection.me/developer/wordpress-hooks/
How can I set this up in WP Webhooks Plugin?
One scenario I am thinking of is…once a user clicks on a redirect link configured in the Redirection plugin (and this redirect logs certain data), then send a webhook request to an external URL with the data of that redirect.
]]>So I try to add the Webhook URL , and when I fill in all the info and clicked “Add for create_user”, it direct me to the website home page “https://www.projectcasting.com“. Hence, I cannot add the webhook url and do my integration.
It is strange and please let me know if there is anything you can help.
Hi, does free version of WP Webhook sends just user id and id only?
This is the raw data I get with free version when someone subscribe with Paid Membership Pro:
{"user_id":"26461","membership_id":"8","order":{}}
But demo test sends all data.
Do I have to get pro version for all data?
Thanks
]]>Thank you for the great plugin, but I’m having a small issue with it. I noticed that when I enable WP_debug on my site, I encounter these errors:
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_contactform7::$helpers is deprecated in /wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php on line 133
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_contactform7::$actions is deprecated in /wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php on line 133
Deprecated: Creation of dynamic property WP_Webhooks_Integrations_contactform7::$triggers is deprecated in /wp-content/plugins/wp-webhooks/core/includes/classes/class-wp-webhooks-pro-integrations.php on line 133
What could be the cause of these errors? How can they be fixed?
]]>Hi, is this plugin compatible with the woocommerce plugin named “Checkout Field Editor (Checkout Manager) for WooCommerce”? I just need to send to getcontrast.io name, surname and email connected to each product bought into woocommerce and these fields are custom fields created with “Checkout Field Editor (Checkout Manager) for WooCommerce”.
]]>I am using Pabbly with the Send Data function of this plugin. I noticed that the “User Old Data Roles” and “Roles” contain the same roles, even when I change them
]]>I have done Webhook setup but receive this Error:
FAILED. Status Code: & Response Body: {“success”:false,”msg”:”The given WP Webhooks API Key is missing, please add it first.”}
I have set Webhook integration and mapped all necessary fields, so where is the bug?
]]>Beautiful day to you Sir,
I want my users to receive a Birthday Greetings Message to their registered Email, from my website, on the day of their Birthday.
It is a way to show my users that they are loved and cared for.
How do I achieve something like that with your WP Webhooks plugin?
Regards.
]]>Hi Ironikus!
I want to get user payment data from a WordPress plugin via a custom Webhook action
Plugin code:
add_action( 'subscribe_success_pay', 'opt_payment', 10 );
function opt_payment( $payData ) {
if ( $payData->pay_type != 'subscribe-pay' )
return false;
$baggage = $payData->baggage_data;
$tariff = opt_get_tariff( $baggage->tariff_id );
$tariff_price = opt_get_tariff_price( $baggage->tariff_id, $payData->user_id );
if ( $tariff_price != $payData->pay_summ )
return false;
do_action( 'opt_pre_payment_access', $payData, $tariff );
$payment_id = opt_add_payment( array(
'user_id' => $payData->user_id,
'account_name' => opt_get_account_field( $tariff->account_id, 'account_name' ),
'tariff_price' => $tariff_price,
'access_time' => $tariff->access_time
) );
$access_id = opt_update_user_access( $payData->user_id, $tariff->account_id, $tariff->access_time );
do_action( 'opt_payment_access', $payment_id, $access_id, $baggage->tariff_id );
}
I make a filter and a function according to your documentation and insert it into functions.php
add_filter( 'wpwhpro/run/actions/custom_action/return_args', 'wpwh_fire_my_custom_logic', 10, 3 );
function wpwh_fire_my_custom_logic( $return_args, $identifier, $response_body ){
if( $identifier !== 'subscribe' ){
$return_args = array(
'user_id' => $payData->user_id,
'account_name' => wau_get_account_field( $tariff->account_id, 'account_name' ),
'tariff_price' => $tariff_price,
'access_time' => $tariff->access_time
);
}
return $return_args;
}
But after the user pays, the webhook does not work. How to get data from a plugin into your function?
]]>Hello community! I need you help !!!??
I’m wondering if there is a way to trigger an integromat webhook on loading a page of a website. The website is hosted by WordPress Siteground. I tried googling for this but couldn’t find anything.
I’m just looking for:??
page loads -> activates the webhook -> the webhook grabs a couple of query parameters from the url of the loaded page -> (more stuff with that data)
Thank you!
I would like to trigger a webhook when a specific page of my site is visited (in this case the landing pages I use for advertising campaigns) I would just like the payload to include the complete URL (including utm parameters).
I’m using Make to receive the data and can’t figure out how to configure it.
To recap :
I have installed the WP Webhook Plugin in WordPress, I want the webhook to fire on a specific action which is a specific page view, I use Make / Integromat to receive the response, how should I configure the request?
I attach screen
https://drive.google.com/file/d/1MVL0nAe8a_LtgAByxoZaFjLrrHA-fVEM/view?usp=drive_link
]]>I have set up the post created webhook and set it for a specific type of post creation (the automatic creation of an order post that results from a purchase). The webhook fires successfully and the information received by the webhook processor (PowerAutomate) is in the form anticipated.
However, the post_content field is empty. This is the field I am looking to retrieve to process the information that is automatically created there.
Are you able to advise?
]]>Hi, very curious about this plugin, however seem to struggle to get it to work. It feels to me that I have followed the instructions and I’m getting a success message, however that message is a bit ambigous:
[unable to copy/paste the response here in its entirety, unfortunately – breaking it down]
“success”:false,”data”:
“send_to”:””,”subject”:””,”message”:””,”headers”:[],”attachments”:
“msg”:”The subject argument cannot be empty.”
this is the URL used (domain and key redacted): https://domain.com/?wpwhpro_action=inbound_deal&wpwhpro_api_key=keyj&action=send_email&[email protected]&wpwhpro_subject=newDeal&message=budget:500000,tenure:sales,phone:+23423423234234,email:[email protected]
Could you please help me understand what I’m missing out on?
]]>Hello.
I’m having issues getting ACF custom field data into Zapier. I have a Post created trigger set up that goes to Zapier. This is for a custom post type (project). The custom post type data goes through (title, content, taxonomies, etc.), but the acf_data object just shows false.
Show in REST API is enabled for the custom post type and the custom field group which contains 3 fields: an image field, text field, and link field.
Am I missing a setting or do I have something set up incorrectly?
Thanks.
Lukas
Hi,
I’m looking to automate incoming contact forms from WPBot Pro to create a new contact with a specific tag in FluentCRM Pro. I contacted the developers of both plugins and FluentCRM Pro says that they have an incoming Webhook that we can map the details if it is supported by WPBot Pro. Currently, WPBot Pro doesn’t support outgoing webhooks for their form submissions.
I am wondering if your plugin can bridge this gap for me and if so can you point me to documentation for achieving this?
Thanks,
Pat
]]>Hi,
I’m using “Post updated” trigger to send an API call to our MS Dynamics CRM. As long as I publish posts instantly/manually the call immidiately reaches our webhook, but for scheduled posts there is a delay of around 10 hours. This has already happened twice and the delay is almost exactly the same.
Could you please advise how could we avoid this?
Regards
Hi, we have a discord server and want to trigger a webhook that will send all our users(including email addresses and user role) from wordpress website to the discord.
Is that possibble with your webhook plugin
Thanks ??
]]>Hello,
I’m using the free version of your plugin so maybe what I’m trying to do isn’t possible.
I have a Zap setup to watch for a Contact Property change in Hubspot. Once Zapier receives it, I want to send the email address of the contact into my site so that I can cancel their payment subscription (non-woocommerce plugin).
As far as I can tell, I’ve been able to send the webhook to the site and had the success message returned.
Zap setup:
Success message:
But what I can’t find in any of the documentation is how (or if) I can pass the email address of the contact in with the webhook in order to execute the custom PHP code. Without the email address, I can’t do anything, and then I don’t even need the plugin at all.
Also, as an FYI, your Zapier extension doesn’t appear to be available anymore. (Or again, maybe it’s not for ‘free’ people.) When you click the ‘Accept’ button, it opens the Zapier dashboard and nothing else.
Any help would be amazing, or I’ll be stuck sending cancellation notifications instead of automating and fool-proofing it. Thanks!
]]>I already posted the request on this github ; I thought is was the official repo. https://github.com/debtcollective/wp-webhooks-pro/issues/1
Hello there,
When I click on “Send Demo” ; it would be great if the data from the last Post were sent ; instead of Dummy Data ;
I wrote a little code that does just that, let me know if I can open a PR.
It’s just a simple code that I wrote quickly ; we’ll need to improve it a bit before we can merge ; but you get the idea.
Could you integrate this in your plugin ?
<?php
// core/includes/integrations/wordpress/triggers/post_create.php
public function get_demo( $options = array() ) {
$post = get_post(get_posts("post_type=post&numberposts=1&fields=ids")[0]);
return [
'post_id' => $post->ID,
'post' => $post,
'post_meta' => get_post_meta($post->ID),
'post_thumbnail' => get_the_post_thumbnail_url($post, 'full'),
'post_permalink' => get_permalink($post),
'taxonomies' => wp_get_object_terms( $post->ID, 'category', [ 'fields' => 'slugs' ] ),
];
}
]]>
Hello, is there any way to send new posts etc etc to a discord channel by using webhook?
I added the webhook url but it doesn’t work. Not even the send demo.
Maybe the problem is something else? If yes, what should I check?
Thanks a lot!
]]>If you are using PublishPress revisions then you might find that you don’t get anything on the Update or Create webhooks.
And if you do, you get something with a weird permalink with just numbers on the end like this https://www.website.com?p=30207
If you look into this ID it doesn’t exist. That’s because it was the revision ID and when you published the contents was moved to your original ID.
If you want to get posts updated via PublishPress Revisions from WP Webhooks you can add this to your functions.php and use the Custom trigger called webhook.
Update “$webhook_names” with the name(s) of the Custom trigger called webhook you create
add_action( 'revision_applied', 'revision_webook', 10, 1 );
function revision_webook($publishedID) {
$custom_data = array(
'title' => get_the_title($publishedID),
'permalink' => get_permalink($publishedID)
);
$webhook_names = array(
'revision-applied'
);
$http_args = array(
'blocking' => true //Set this to true to receive the response
);
$response = apply_filters( 'wp_webhooks_send_to_webhook_filter', array(), $custom_data, $webhook_names, $http_args );
}
]]>