moorthyit
Forum Replies Created
-
Hi,
We have used custom Wp-rest API to get those data through ajax call. We guess nonce name will be wp_rest for WP REST API. We have tried and enabled ESI but it doesn’t work too. For now, we have moved backed to admin-ajax instead of rest api to fix that issue temporarily.
Still, we are searching for a solution to use rest api along with lite speed cache plugin. Thanks
Hi,
We are getting that same error again. It seems setting REST TTL to less than 12 hours doesn’t work. Can we enable ESI and put “wp_rest” into ESI nonce list? Will it work?. Please let me know. Thanks
Hi,
Thanls for your quick reply.
yes, I knew that they could delete their account. As an admin, we have restricted that delete permission for users, so they can’t delete their account.
Also that customer had only reported that he got that mail and said he didn’t do anything regarding his account deletion.
Please note that customer account was still present in our site.
In that case, how can that customer get that ‘ delete account ‘ notification ?. Please let us know
we are using version 2.1.12
Thanks once again.
Hi,
No issue so far. I think it is working fine now. Thanks for your support.
Hi,
Ok. Thanks for your reply. I will set it to less than 12 hours and will update the results soon. Thanks
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] Pro version changes are not getting savedHi Gabriel, Thanks for your support. As like you said, that issue was due to my server configuration ( max_input_vars value ).
That issue got solved once I changed that server configuration as per your suggestion. Thanks once again.
yes, It is fixed now. Thanks for your help.
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiOk. Thank you for your reply.
Forum: Plugins
In reply to: [WP Recipe Maker] Getting Recipes sorted by rating in REST APIOk. Thank you for your reply. I will check it and let you know. Thanks
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiHi,
Is it possible to get recipes list sorted by average rating value in REST API?. Thanks in advance.
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiyes, Thank you for your great support.
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiHi,
We got those values too by calling ‘tags()’ function.
$courses = $recipe->tags( 'course' );Thanks
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiHi,
We got all recipe data except ‘course’ and ‘cuisine’. Can you please tell us how can we get those information from recipe id?. Thanks in advance.
Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiHi,
Thank you for your wonderful support. I figured out it and now I am getting the recipes values with that $recipe object by
$content = get_post_field( 'post_content', $post_id ); $recipe_ids = WPRM_Recipe_Manager::get_recipe_ids_from_content( $content ); $recipe = WPRM_Recipe_Manager::get_recipe($recipe_ids[0]); $recipe_name= $recipe->name(); $recipe_name= $recipe->summary();Once again, Thank you for the great plugin and your support. I am really appreciate it.
Thanks.Forum: Plugins
In reply to: [WP Recipe Maker] Get Recipe data in custom rest apiHi,
Thank you for reply. I have added as per your instructions but it return empty array
$content = get_post_field( 'post_content', $post_id ); $recipe_ids = WPRM_Recipe_Manager::get_recipe_ids_from_content( $content ); $recipe = WPRM_Recipe_Manager::get_recipe($recipe_ids[0]);Output:
“recipe_ids”: [
36173
],
“recipe”: {}Can you please tell us what might be the issue? Thanks