vince_
Forum Replies Created
-
I am getting this error message when trying to get access to the dashboard.
My URL is : https://www.snappyorder.co
I have no issue with any other plugin
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Allow any comment submitted via Json APIIt’s working well thanks !
Forum: Plugins
In reply to: [WP-PostRatings] Rate from a mobile appHi Lester,
I can send a POST request successfully as you can see on my
screenshotHowever, I can’t see anything in my POST rating logs.
What would you recommend me to do ?
Regards
Forum: Plugins
In reply to: [WP-PostRatings] Rate from a mobile appThat’s right, I see in the Form Data posted :
action: postratings
pid: 31
rate: 4
postrating_31_nonce: 66267e82e7How can I get this nonce ?
Forum: Plugins
In reply to: [JSON API] Returning custom posts$posts = $json_api->introspector->get_posts(array( $json_api->query->key => $json_api->query->value, 'post_type' => 'bars' ));
Forum: Plugins
In reply to: [WP-PostRatings] Rate from a mobile appEven if I authorize rating to anonymous users ?
Forum: Plugins
In reply to: [WP OAuth Server (OAuth Authentication)] Mobile authentificationThank you very much Justin. I have just submitted a request.
Is the feature free ?
Best RegardsForum: Plugins
In reply to: [WP OAuth Server (OAuth Authentication)] Mobile authentificationI wish to avoid any webview or web browser. I would like that my login process happens fluently inside my native app. Do you think it is possible ?
Forum: Plugins
In reply to: [WP OAuth Server (OAuth Authentication)] Mobile authentificationHi Justin,
I’m sorry to bother you again. Do you confirm that I can authentificate in my Android app without opening any web browser ?
Thanks ??
Vincent
Forum: Plugins
In reply to: [WP OAuth Server (OAuth Authentication)] Mobile authentificationHi Justin,
Thank you very much for your message.
– I have installed WP OAuth Server | v 3.1.3
– In the Grants types, I have only checked “User credentials”
– I have created a client so I have the ClientID and secret nowHow would you recommend to process the authentification from a native Android app ?
Thanks again for your precisou help,
Vincent
Forum: Plugins
In reply to: [WooCommerce] Different cart for each shopit looks quite hard to do that
Forum: Plugins
In reply to: [WooCommerce] Different cart for each shopHi Sumo,
Thanks for the tips. Do you think there’s a way to display my 3 carts on the same page ?
Thank you for your great support, here is the solution :
add_filter( 'get_edit_post_link', 'my_edit_post_link', 10, 3 ); function my_edit_post_link($url,$post,$context){ $EM_Event = em_get_event($post, 'post_id'); $url = "https://myurl.com/edit-events/?action=edit&event_id=".$EM_Event->event_id; return $url; }
function my_em_mod_change_username($name,$EM_Person){ $user_info = get_userdata($EM_Person->ID); $name = $user_info->user_login; return $name; } add_filter('em_person_get_name','my_em_mod_change_username',10,2);
It’s working this way !
Thank you.
It’s not working but something happens. The name “Vinh Phap” disappears. When I put : $EM_Person->ID
It works and shows the user ID. Maybe I’m not far …