I want to Show the entries on the front end of my wordpress website
to acheive this I'm creating my own plugin and in that I'm using this
FrmEntriesController::get_all_for_form($form_id, '', 'include');
There is no get_all_for_form() method in FrmEntriesController.php. The get_all_for_form() method is in formidable/classes/models/FrmField.php. This function does not return entry data. Its query runs against the frm_fields and frm_forms tables. The data in these tables is the form architecture, not entry data. The function you need to use is FrmEntry::getAll().
https://formidable-masterminds.com/how-frmentrygetall-works/
Please login or Register to submit your answer
replied 2 years ago
Can you not include the shortcode of your view in a custom HTML block?
replied 2 years ago
Which shortcode .. this code is ain't working
replied 2 years ago
Typically, you'd show your form entries just using formidable views. No reason to create your own plugin as far as I can tell.
Under formidable views, there's a shortcode on the left that you can insert on wordpress to display your view.
replied 2 years ago
Typically, you'd show your form entries just using formidable views. No reason to create your own plugin as far as I can tell.
Under formidable views, there's a shortcode on the left that you can insert on wordpress to display your view.