Backend layout/functionality
Started by: nicoleR-3
in: Toolset Professional Support
Quick solution available
Problem:
Backend layout/functionality - change how custom field displays on post add/edit screens
Solution:
I'm afraid that there in no such way to customize the custom fields as per the screenshot you shared and its even in backend.
It purely requires custom programming in backend to display such layout to edit custom fields.
If you need custom programming for your project, you may would like to contact our certified partners:
=> https://toolset.com/contractors/
Relevant Documentation:
2
3
4 years, 11 months ago
nicoleR-3
Access “Edit own” not enforced for update_post_meta() ?
Started by: beatR
in: Toolset Professional Support
Quick solution available
Question: It seems that Access permissions like Edit Own are not enforced when calling update_post_meta, is that correct?
Answer: Yes, this is correct. Custom code implementations should utilize current_user_can to compare capabilities before calling update_post_meta, etc. directly.
2
3
4 years, 11 months ago
beatR
How to Display Conditional message based User field empty
Started by: manishB-2
in: Toolset Professional Support
Quick solution available
Problem: I would like to display some content conditionally based on whether or not the User's WooCommerce 'billing_phone' field has a value.
Solution: In the legacy editor, you can use the following syntax to test the value of a User's WooCommerce field:
[wpv-conditional if="( '[wpv-user field="billing_phone"]' eq '' )"]
empty billing phone
[/wpv-conditional]
[wpv-conditional if="( '[wpv-user field="billing_phone"]' ne '' )"]
non-empty billing phone
[/wpv-conditional]
3
12
4 years, 11 months ago
manishB-2