MyBB Community Forums

Full Version: Total Posts, total threads - Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello community,

I noticed that there is an error here (arrow):

[Image: dvX47.jpg]

There should nevertheless Threads and not Posts, or not ?!
Where can I edit this? I have this phenomenon in english and french language ...  Angel

And: (0.98 posts per day | 4.28 percent of total posts) is identic in posts and threads ... Should that be so?

My forum info here:
[Image: o9WqD.jpg]

Thank you in advance for your help!

Greets,
blongso
Contents of member_profile_findthreads template is wrong. Compare with the default theme and replace it with that.
re Ashley1,

look ;-)

Default template:
[Image: ZpD3l.jpg]

Our template:
[Image: xZjqo.jpg]

Here everything seems to be all right, so the problem is somewhere else ...
You're either looking at the wrong template set OR for some reason your language definition of {$lang->find_threads} is changed. What happens when you click on find posts - does it find posts or threads?

You also need to look at the member_profile template:

				<tr>
					<td class="trow1"><strong>{$lang->total_posts}</strong></td>
					<td class="trow1">{$memprofile['postnum']} ({$lang->ppd_percent_total}){$findposts}</td>
				</tr>
				<tr>
					<td class="trow2"><strong>{$lang->total_threads}</strong></td>
					<td class="trow2">{$memprofile['threadnum']} ({$lang->tpd_percent_total}){$findthreads}</td>
				</tr>
Great!!!! Smile Smile Smile
The first problem is solved. The word thread is now displayed and it is now properly linked


But I do not find where I have to edit this line (red-edged) to assign it to the threads

[Image: Je0NJ.jpg]
Check your member_profile template, the section I posted above in my last post.
re,
I have checked several times Ashley1, in the default and own member_profile template I have both the same, I see no difference

[Image: rXjq0.jpg]

Huh Huh Huh Huh
(2017-07-02, 07:06 PM)blongso Wrote: [ -> ]re,
I have checked several times Ashley1, in the default and own member_profile template I have both the same, I see no difference

[Image: rXjq0.jpg]

Huh  Huh  Huh  Huh

The parts that you have circled in red, are:

{$memprofile['postnum']} ({$lang->ppd_percent_total})

and

{$memprofile['threadnum']} ({$lang->tpd_percent_total})

As a test, try removing {$memprofile['threadnum']} and see if your output updates.
re Ashley1,

I hope I understood you correctly ...

when I delete {$memprofile['threadnum']}, I have this:

[Image: QXmE4.jpg]

The total number of threads (760) has disappeared
(2017-07-02, 07:32 PM)blongso Wrote: [ -> ]re Ashley1,

I hope I understood you correctly ...

when I delete {$memprofile['threadnum']}, I have this:

[Image: QXmE4.jpg]

The total number of threads (760) has disappeared

Sorry, you can put that back. The problem must be ({$lang->tpd_percent_total}).
Pages: 1 2