rraallvv
Forum Replies Created
-
Thanks @biziclop , that was very helpfull.
Thanks @biziclop, I had already read that post. Maybe I’m missing something but the column with the header “slug” is only available for Tags and Categories, nither Pages nor Posts have that field available. The post says “The example shown below is for tags but it works the same way for the other types of content.” but I’m not sure what they mean for “other types of content”, perhaps they are refering only to Categories besides Tags.
Thanks for the quick reply @laszloszalvak
Hi @malayladu, does your plugin support multi language WP websites?
@ironikus Awesome! Thanks so much.
@ironikus Thanks. It’s very much appreciated.
Hey @ironikus, our API has some endpoints that need to be disabled temporarily during maintenance or for testing from our client app, I’m not sure if this use case is already covered by some other feature of WP Webhooks. Thanks for your quick reply.
Forum: Developing with WordPress
In reply to: Question about simple Pollfish webhook@bcworkz Thanks. I’ll give it a try when I get a chance today.
Forum: Developing with WordPress
In reply to: Question about simple Pollfish webhook@bcworkz , the documentation on their website says:
You can set a Server-to-Server webhook URL through Pollfish developer dashboard, in your app’s page. On every survey completion through your app an HTTP GET request will be made using that URL.
From what you said, if I understand correctly, I can then use the snippet posted on the WP documentation (the one that appears below) and not have to worry about authentication, am I right?
<?php /** * Grab latest post title by an author! * * @param array $data Options for the function. * @return string|null Post title for the latest,? * or null if none. */ function my_awesome_func( $data ) { $posts = get_posts( array( 'author' => $data['id'], ) ); if ( empty( $posts ) ) { return null; } return $posts[0]->post_title; } add_action( 'rest_api_init', function () { register_rest_route( 'myplugin/v1', '/author/(?P<id>\d+)', array( 'methods' => 'GET', 'callback' => 'my_awesome_func', ) ); } );
- This reply was modified 5 years, 2 months ago by rraallvv.
@cristianbarbu some plugins are network activated, is there a way to get more information about what could be causing the problem? are there any logs? thanks for taking a look into this.
Forum: Plugins
In reply to: [Contact Form 7] How to know if reCAPTCHA v3 works or not?@9dotbox I see. I’ll search for some other alternative then. Perhaps will give a try to the honeypot plugin too. Thanks.
Same here, any updates?
Recaptcha has been installed and works fine.
How can I check whether recaptcha works fine?
Forum: Plugins
In reply to: [Contact Form 7] How to know if reCAPTCHA v3 works or not?@9dotbox I installed the plugin but can’t find any reports, where is that option available?
Forum: Reviews
In reply to: [Contact Form 7] How to check reCAPTCHA v3 is working correctly?Same issue here. I see the icon “protected by recaptch” but I have no way to know whether it’s working or not.
Forum: Plugins
In reply to: [WP Crowdfunding] Users can’t edit a submitted campaingThanks.