Skip Navigation

[Resolved] Author Box Appears Twice…

This support ticket is created 4 years, 6 months ago. There's a good chance that you are reading advice that it now obsolete.

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
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

This topic contains 2 replies, has 2 voices.

Last updated by AlimB3245 4 years, 6 months ago.

Assisted by: Nigel.

Author
Posts
#1629769

Tell us what you are trying to do? I would like the AUTHOR BOX to appear at the end of the post and I've configured it accordingly.. however one of the elements in the content template is a standard field and it's supposed to show the 'Post Content (Body)'.. and in this it's showing the Author Box too.. I don't want this as it's a duplication..

Is there any documentation that you are following?

Is there a similar example that we can see?

What is the link to your site?hidden link

#1629905

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: Europe/London (GMT+00:00)

It looks like the author box is added by hooking into the "the_content" filter of WordPress, and when you insert the post body into the template it gets fired there, too.

We have an option when inserting the post content to prevent third parties hooking into the filter and producing duplicate content, but it's not available with the current implementation of blocks.

So you'll need to replace where you insert the content now using the Single Field block.

Add a standard Shortcode block (or Custom HTML block) in its place, and insert the following shortcode:

[wpv-post-body view_template="None" suppress_filters="true"]

That inserts the post content using a shortcode and has the required option available, and should solve your problem of duplicated content.

#1630169

My issue is resolved now. Thank you!