Resolved Next Previous Thread Help

  • Hello Guest, Are you looking for a product but it doesn't exist? Or would you like a customized add-on?
    Contact us for a personalized quote.
  • Hello Guest, A discount code is available. Code: LESS30

Users Who Are Viewing This Thread (Total: 1, Members: 0, Guests: 1)

User Who Replied This Thread (Total Members: 2)

Resolved User Activity Not Showing

Resolved User Activity add-on for XF 2.0.4

Status
Not open for further replies.
Dec 15, 2017
16
1
3
33
Adana
www.flatkolik.net
Hello, the image I showed below,
YgMdDz.png


How can I do this?
NZ3LpP.png
 

XenConcept

Backend Developer
Staff member
Administrator
Oct 14, 2017
1,281
298
83
Rennes
www.xen-concept.com
Hello,

In the template "xc_next_previous_thread_thread_view"

Find :

HTML:
<xf:if is="$previousThread">
        &lt;

Replace by :

HTML:
<xf:if is="$previousThread">
        &lt; -


And

HTML:
<xf:if is="$nextThread">
        &lt;

Replace by :

HTML:
<xf:if is="$nextThread">
       -  &lt;

Result :

Screenshot_9.png

Regards
 
  • Like
Reactions: ADANA LI
Dec 15, 2017
16
1
3
33
Adana
www.flatkolik.net
Hello,

In the template "xc_next_previous_thread_thread_view"

Find :

HTML:
<xf:if is="$previousThread">
        &lt;

Replace by :

HTML:
<xf:if is="$previousThread">
        &lt; -


And

HTML:
<xf:if is="$nextThread">
        &lt;

Replace by :

HTML:
<xf:if is="$nextThread">
       -  &lt;

Result :

View attachment 678

Regards
Hi I did not mean it.
I do not want it to be empty, since it is not before the first line topic is displayed.
 
Dec 15, 2017
16
1
3
33
Adana
www.flatkolik.net
I want it to be the same as with VBulletin
For example, it does not appear that you are left behind the bi
< Subject | ->
I want you to look like this.

I am writing with translation because I do not speak English
 

XenConcept

Backend Developer
Staff member
Administrator
Oct 14, 2017
1,281
298
83
Rennes
www.xen-concept.com
I want it to be the same as with VBulletin
For example, it does not appear that you are left behind the bi
< Subject | ->
I want you to look like this.

I am writing with translation because I do not speak English

Ok.

Find :

HTML:
<xf:if is="$nextThread">
        <a href="{{ link('threads', $nextThread) }}">{{ $xf.options.xc_next_previous_thread_replace_by_title ? {$nextThread.title} : 'Next' }}</a>
        - &raquo;
    </xf:if>

Replace by :
HTML:
  <a href="{{ link('threads', $nextThread) }}">{{ $xf.options.xc_next_previous_thread_replace_by_title ? {$nextThread.title} : 'Next' }}</a>
        - &raquo;
 
  • Like
Reactions: ADANA LI
Dec 15, 2017
16
1
3
33
Adana
www.flatkolik.net
Ok.

Find :

HTML:
<xf:if is="$nextThread">
        <a href="{{ link('threads', $nextThread) }}">{{ $xf.options.xc_next_previous_thread_replace_by_title ? {$nextThread.title} : 'Next' }}</a>
        - &raquo;
    </xf:if>

Replace by :
HTML:
  <a href="{{ link('threads', $nextThread) }}">{{ $xf.options.xc_next_previous_thread_replace_by_title ? {$nextThread.title} : 'Next' }}</a>
        - &raquo;
Thank you.
 
  • Like
Reactions: XenConcept
Status
Not open for further replies.
Top