

Hasan
Forum Replies Created
-
Do you want to learn how to code projects from scratch?
Or you need help setting up the specific project you mentioned?
-
I use custom codes. Here is what I did.
I created one tool, optimized it perfectly, and tested it. Then, I started feeding it to the AI whenever I wanted to create a new tool so that it could always mimic the same style.Now I create UIs in minutes 🙂
-
Hasan
AdministratorDecember 30, 2024 at 6:20 am in reply to: Display User Points Balance in the HeaderI updated the link, it should work now
-
Hasan
AdministratorDecember 30, 2024 at 6:19 am in reply to: the JSON Elementor Template of the headerReplies viewable by members only
-
Hi Chris, the route not found means the API endpoint is not registred.
can you please first check your permalink structure and save it.
second, try the following basic snippet, and see if the route work so we can isolate the issue:
add_action('rest_api_init', function () { register_rest_route('test/v1', '/hello', array( 'methods' => 'GET', 'callback' => 'test_endpoint_callback', 'permission_callback' => '__return_true' )); }); function test_endpoint_callback($request) { return array( 'status' => 'success', 'message' => 'Hello from the test endpoint!' ); }
-
Replies viewable by members only
-
Hasan
AdministratorJanuary 3, 2025 at 10:03 am in reply to: the JSON Elementor Template of the headerReplies viewable by members only
-
Replies viewable by members only
-
Sorry, that’s not the right place to discuss discounts.
Yes, you can buy with your card.
-
I created a new project that uses no code tools as backend for the RAG bot on wordpress, you can check the video here:
https://youtu.be/jKXbm1zN4wk?si=7yBSVq1dSwzuK0Ai
-
This reply was modified 5 months, 3 weeks ago by
Hasan.
-
This reply was modified 5 months, 3 weeks ago by
-
Thank you! happy new year,
yeah, we migrated to a new site, and are still in the migration process.
Sorry, what do you mean by pull datasets?
what data you are talking about?
-
You can use any card with Stripe, did you test?
-
No, I generated the first tool with AI, and I used Cluade. Here is where I got the main (HTML, CSS, JS) codes.
Then, based on that tool, I generated the rest to ensure consistency.