Skip Navigation

[Resolved] Toolset Fields 31-39 not displaying text as they should

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 2 replies, has 2 voices.

Last updated by chrisC-25 2 years ago.

Assisted by: Minesh.

Author
Posts
#2497003
Screen Shot 2022-11-15 at 2.14.05 PM.png

I have 40 text fields for song list and 31-39 are not displaying. I can see them on front end in inspector but they appear empty and they are not.
hidden link

Thanks

#2497309

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

I'm not sure why you are using the [wpv-post-field] shortcode to display the Types custom fields.

The correct way is to use [types] shortcode to display the fields you created using Toolset Types. I've added the following shortcodes to display every field from 31 to 39 and I can see its working as expected:
- hidden link

<div style="font-size: 1.25rem;">[types field='track31'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track32'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track33'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track34'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track35'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track36'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track37'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track38'][/types]</div>
<div style="font-size: 1.25rem;">[types field='track39'][/types]</div>

You can replace the [wpv-post-field] shortcode with [types] shortcode for your other fields 1 to 30.

#2497565

My issue is resolved now. Thank you!