Im very happy to report these two plugins work very well together! Tx to @bleutzinn for incredibly useful work here :) Im using both without any functional issues but Id like ideas on a couple of things. I know @pmoreno uses the add-page-by-form plugin so am tagging them in case.
Context: A logged in user creates a new note. All notes have front matter page config that allows SImpleMDE to make the content field editable. The plugin examples dont include metadata fields as editable. Form fields for each note (atm) are title, date (with picker), tags, and content. This is based on the simple example in the add-page-by-form plugin readme.
- Id like to display the username's full name rather that their username. Eg not display 'starchild' - their username, but display 'stan' - their full name. I dont know how to capture this in the add-page-by-form form fields. The username is captured by
include_username: truein the page config, but tryinginclude_fullnamedoesnt work (nothing is visible usingpage.header.fullnamein the twig). - Id like to add or edit tags via the SimpleMDE plugin content field. Is this even possible, any ideas how I could do it? Currently tags are in the metadata, which is not editable. The content field is where SimpleMDE textarea kicks in.
- Id like more control of the creation date time - its defaulting to 12.00, but would be much more useful if the actual time was shown. The date is captured as shown below, so time is generated by the system, not the form field.
name: date
label: enter date
validate.min: "2014-01-01"
validate.max: "2018-12-31"
type: date
Ideally Id like to display modified date and time too (as separate info), but thats for later.
Hope its ok to post a few questions just in case it sparks an idea in someone's more knowledgeable brain than mine :D