-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add extra fields #762
Add extra fields #762
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having these available will be nice! Left a few comments to clarify.
And it would be good to have these available for the Blog User as well!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚢
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Screenshots in the PR description would be nice!
As we discussed, it'd be nice to have some form of migration and do display the defaults here:
To me it was surprising to arrive in the Gutenberg editor when I clicked "Add new", it felt like a bug. What about just adding another row for quickly adding a new entry and the Edit link gives you full-text editing?
<p>
<input class="regular-text" type="text" size="5" value="" placeholder="Field">
<input class="regular-text" type="text" value="" placeholder="Value">
</p>
…wordpress-activitypub into update/PropertyValue
Should now also support FEP-fb2a: "attachment": [
{
"type": "PropertyValue",
"name": "Pronouns",
"value": "<p>he/him/his</p>"
},
{
"type": "Note",
"name": "Pronouns",
"content": "<p>he/him/his</p>"
},
{
"type": "PropertyValue",
"name": "Blog",
"value": "<p><a rel=\"me noopener\" title=\"http://localhost:8076/\" target=\"_blank\" href=\"http://localhost:8076/\">localhost</a></p>"
},
{
"type": "Link",
"name": "Blog",
"href": "http://localhost:8076/",
"rel": [
"me",
"noopener"
]
}
] /cc @johnspurlock |
Coming in late to this discussion, to say that I experienced the same thing. To be honest, I'm still not sure I added the new field correctly. I created a new entry, with a title and just the link in the post content, but that didn't seem to work. I had to go back and add text with a link on it for it to appear in the profile page. I like the idea of making this editable directly through the Profile page. |
This might be a bug, I will check this.
We can add that feature, but I still like having the Block editor to help with text and HTML. The extra fields are not limited to URLs, so why not profit from the build in features of WordPress? |
This is true. Maybe we could display a small rich text editable input field on the profile page? |
Thank you! |
Make extra fields editable
Fix #810