I can create a new custom field and apply it to a page, however the previous/existing fields are no longer visible.
The content that was inputted in the previous fields is still showing on the front end of the website, however because they are not visible on the backend, they are not longer editable.
Please advise
]]>What am i missing?
]]>I install Classic Editor Pluggin, write a post like above:
Eloquent settings
Post content selector DIV.editable-box
and in my post i put something like this.
<div class=”editable-box”>
Lorem ipsum something else
</div>
<div class”just-another-class”>
Lorem ipsum and more…
</div>
<p>Lorem Ipsum… </p>
When I go to the post and when i clic on blue pen, appear double content, and only <p>content</p> can be editable.
but if I hold shift higligh right div. But cant edit.
I would like to have one specific editable box.
<div class=”editable”>Lorem Ipsum editable content</div>
It is possible?
Thank you for you work! it is awesome.
]]>I was hoping that tablesome would allow me to add a table to a post via the gutenberg block editor, so that users can easily add their data to the table when editing using Helpie’s front-end editor.
Is this not possible?
Thanks,
Alex
When I cut post content (multiple blocks) in the Gutenberg editor I cannot edit the post title anymore. I need to reload to be able to edit it again.
I have also tried this with a brand new site without any plugins, and the error occurs there too.
Edit: I’m on WordPress version 5.9.1.
]]>I have a two custom fields for phone and company. All works well and is visible on the account page. I like to change the company field into a non-editable field.
The field is set to – not editable by user – in the registration form, though it seems that the custom code overwrites this setting and makes the custom field editable again for the user. I need company (bedrijf) to be not editable for the user, the same as the username is locked.
I’ve added this to my functions.php to add the extra meta fields:
// SHOW CUSTOM FIELDS ON ACCOUNT PAGE
add_action('um_after_account_general', 'showUMExtraFields', 100);
function showUMExtraFields() {
$id = um_user('ID');
$output = '';
$names = array('phone_number', 'company_name');
$fields = array();
foreach( $names as $name )
$fields[ $name ] = UM()->builtin()->get_specific_field( $name );
$fields = apply_filters('um_account_secure_fields', $fields, $id);
foreach( $fields as $key => $data )
$output .= UM()->fields()->edit_field( $key, $data );
echo $output;
}
add_action('um_account_pre_update_profile', 'getUMFormData', 100);
function getUMFormData(){
$id = um_user('ID');
$names = array('phone_number', 'company_name');
foreach( $names as $name )
update_user_meta( $id, $name, $_POST[$name] );
}
Picture of account: https://ibb.co/5Md53kP
]]>thank you for deploying this plugin.
I created a new newsletter. Seems like to Button Titles & text is not editable. I can change the color, but “Click here to add a title or text” does not work.
Class = wysija_editable
Can you help me please?
Thank You very much!
]]>And is there a way to rebuild the index?
]]>