I’m attaching screenshots of the form page and form settings.
Thank you!
]]>I’ve done Tutor LMS plugin, also added the BuddyPress addon.
We have created a separate group. But the group(Forum) name is not displaying.
Is there any options to display the group(Forum) name?
BuddyPress Main Page Link : https://propel.study/propelites-hub/
Group(Forum) Page Link : https://propel.study/groups/propelites/
Thank You,
]]>I currently have a round 60 forms on a website and I need to be able to report on the number of entries each form has had per month.
I have nearly got this working, but I need to be able to include the form title for the count… If there hasn’t been any entries then the form title is displayed by default.
Also can you confirm what it is counting… I have partial entries activated on some forms.. is there a way of splitting partial entries and completed submissions
Thanks
Tony
Thanks
]]>But one thing the user wants is to remove the FORM title at the top of the GiveWP display. The menu link says “Giving” but the form says “Donations.” The user wants to remove the display of “Donations from the form as the menu already says it.
I have been looking through the documentation, but not finding anything.
Is there a way to do this?
Thanks,
Richard..
]]>This is common. The document.title is set, as most of time, the “site title”, so if you edit several definitions of forms at same time you never know which is behind one tab of your browser if you do not open it.
document.title is something useful.
For me after several errors and time lost I have patched the plugin as this (as for others) :
in “script_rm_admin.js” at the end of document.ready I have added this code (this is not the more simple but the easiest) :
// todo ###b81116 - Done : Change document.title for edit
rm_grid_title = jQuery('.rm-grid-title');
if (rm_grid_title.length) {
subtitle = rm_grid_title[0].innerText;
}
else subtitle = "";
document.title = 'MagicForm - edit : ' + subtitle + document.title;
});
Best regards
Trebly
]]>