Zakir Sajib
Forum Replies Created
-
Forum: Plugins
In reply to: [Store Locator Plus? for WP] No auto detect user locationdoes it require upgrade to paid version? We thought this is very basic feature. Other plugins provide as default feature i.e. https://wpstorelocator.co/demo/
Forum: Plugins
In reply to: [Stock Market Ticker] Updated your plugin and now PHP Fatal errori think your latest 1.9.16 fixed the issue.
I updated on our staging site and no fatal error.
Forum: Plugins
In reply to: [Stock Market Ticker] Updated your plugin and now PHP Fatal errori had to revert to older version.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] WPEngine recently triggered it as VulnerableNo, they didn’t say anything specific. I did check the site with sucuri and no malware detected. So I guess it may be false alarm.
I also checked the ./wp-content/plugins/store-locator-le/store-locator-le.php file and it seems clean.
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Edit repeater fields in edit pageSuperb. Really appreciate.
Another quick query.
Can you recommend a membership plugin can work with your plugin?
i used your one acf form as registration for customer for example. now can i use your plugin for membership functionality such as create a new role and accept stripe payment, few page of restrictions. or if you can recommend a lighter version of any membership can go nicely with your plugin ?
Thanks in advance.
Hey, i have another question. If you could provide your thoughts.
I am going to allow users who have author role to add more than one fields using repeater. I can add repeater in form and author can add as many as they want but i am not sure how to let them to edit those fields in post edit mode.
Can i use repeater in edit mode or something else?
Man it works perfectly.
Super thank you.
Hey I really appreciate your work and help.
But i had the impression that plugin will do my job.
Anyways now it’s clear.
Have a nice day.
my code structure: athlete is a custom post and with few custom fields from ACF.
only author can add and edit the athlete posts.
Adding part is working but edit part is not working so far yet.
Edit url is https://tbxtestsrv.com/zephyrs/edit-account/
I just tested now and it seems athlete post is not updating but only the user custom fields are updated.
https://drive.google.com/file/d/1HaJAE1-ZyAtclDgCyEyhT_i1mUSA8oCX/view?usp=sharing, https://drive.google.com/file/d/1Mlzh5cwqWIOSP-8mJCmIRa4Fx4kyUge2/view?usp=sharing
Yes right. perfect.
so basically i need to pass is Post ID to target field of save tab of post action box and in load tab in source field. Correct?
But how can i pass post ID into that form or should i write a code?
do i have to copy this code into fucntions.php ?
$profile_id = (int) $_GET['profile_id']; // make sure profile id exists if($profile_id){ // render form acfe_form(array( 'name' => 'athlete-information-edit-by-parents', 'profile_id' => $profile_id )); } add_filter('acfe/form/load/form=athlete-information-edit-by-parents', 'athlete_information_edit_by_parents_settings', 10, 2); function athlete_information_edit_by_parents_settings($form, $post_id){ // retrieve url parameter $profile_id = (int) $_GET['profile_id']; // Add Current User ID $form['profile_id'] = $profile_id; // Return return $form; }
thank you for quick response.
here is the link to see all screenshots and json code
https://drive.google.com/drive/folders/1JvncO755TFHDbpOI9GiqwAueAillto7M?usp=sharing
And the path of the page is:
https://tbxtestsrv.com/zephyrs/edit-account/
so when i submitted, data saved into athlete post into cusotm fields but all the sections i created in edit-account page they also saved. see the screenshots.
If you want i can share my login access.
Thank you . Really appreciate.
and let me know if i miss anything to share.
i just updated ninja version 3.6.12 and still showing error in browser console.
our server php version is 8.0.20 (Supports 64bit values).
ninja version is 3.6.11
okay i am doing it now. Thank You.