Перейти к публикации

Рекомендованные сообщения

ok guys. has anyone knows hos to hide prev-link if i in first page, and how to hide next-link if i in last page?

with prev-link i fix this:

 

[not-page-count=1][prev-link]<i class="fa fa-chevron-left"></i>[/prev-link][/not-page-count]

 but with next-link i dont know how to do it.

Ссылка на сообщение
Поделиться на других сайтах
6 часов назад, mondolfo сказал:

how to hide next-link if i in last page?

engine/modules/show.short.php

1. Find:

$enpages_count = @ceil( $count_all / $config['news_number'] );

Paste down:

$tpl->set('{page_count}', $enpages_count);

2. Find (twice):

$pages .= "<span>$j</span> ";

Paste down:

$tpl->set('{current_page}', $j);

3. Find:

$pages .= "<span>{$enpages_count}</span> ";

Replace:

{
    $pages .= "<span>{$enpages_count}</span> ";
    $tpl->set('{current_page}', $j);
}

engine/modules/show.full.php

4. Find:

$tpl2->load_template( 'splitnewsnavigation.tpl' );

Paste down:

$tpl2->set('{page_count}', $anzahl_seiten);

5. Find (twice):

$listpages .= "<span>$j</span> ";

Paste down:

$tpl2->set('{current_page}', $j);

6. Find:

$listpages .= "<span>{$anzahl_seiten}</span> ";

Replace:

{
    $listpages .= "<span>{$anzahl_seiten}</span> ";
    $tpl2->set('{current_page}', $anzahl_seiten);
}

In navigation.tpl and splitnewsnavigation.tpl use:

{page_count} - total number of pages,
{current_page} - curren page number.

Source (rus)

 

[not-page-count={page_count}][next-link]<i class="fa fa-chevron-right"></i>[/next-link][/not-page-count]

 

 

If i'm help you, click "Like" :rolleyes: ===>

Изменено пользователем webair
Ссылка на сообщение
Поделиться на других сайтах

i think that not working

i already installed this hack

 

lock photo:

 

6ro4rk.jpg

 

and my code is:

 

<div style="clear: both;"></div>
<ul class="pagination pagination">
    <li>[not-page-count=1][prev-link]<i class="fa fa-chevron-left"></i>[/prev-link][/not-page-count]</li>
        <li>{pages}</li>
    <li>[not-page-count={page_count}][next-link]<i class="fa fa-chevron-right"></i>[/next-link][/not-page-count]</li>
    <li><span>Page {current_page} of {page_count}</span></li>
    <li>
         <div>
        <div class="input-group">
         <input type="text" placeholder="Page" maxlength="4" style="width:50px; height:28px;" class="input-sm form-control">
         <button style="height:28px;" class="btn btn-info btn-sm" type="button">Go!</button> 
        </div>
      </div>
    </li>
</ul>


 

Ссылка на сообщение
Поделиться на других сайтах
25 минуты назад, mondolfo сказал:

i think that not working

i already installed this hack

 

lock photo:

 

 

6ro4rk.jpg

 

Go to the third page and take a screenshot

Изменено пользователем webair
Ссылка на сообщение
Поделиться на других сайтах

engine/modules/show.short.php
1. Find:

else {
	$tpl->set_block( "'\[prev-link\](.*?)\[/prev-link\]'si", "<span>\\1</span>" );
	$no_prev = TRUE;
}

delete

<span>\\1</span>

2. Find:

else {
			$tpl->set_block( "'\[next-link\](.*?)\[/next-link\]'si", "<span>\\1</span>" );
			$no_next = TRUE;
		}

delete

<span>\\1</span>

 

navigation.tpl your code

<div style="clear: both;"></div>
<ul class="pagination pagination">
    <li>[prev-link]<i class="fa fa-chevron-left"></i>[/prev-link]</li>
        <li>{pages}</li>
    <li>[next-link]<i class="fa fa-chevron-right"></i>[/next-link]</li>
    <li><span>Page {current_page} of {page_count}</span></li>
    <li>
         <div>
        <div class="input-group">
         <input type="text" placeholder="Page" maxlength="4" style="width:50px; height:28px;" class="input-sm form-control">
         <button style="height:28px;" class="btn btn-info btn-sm" type="button">Go!</button> 
        </div>
      </div>
    </li>
</ul>

 

Ссылка на сообщение
Поделиться на других сайтах

Присоединяйтесь к обсуждению

Вы можете опубликовать сообщение сейчас, а зарегистрироваться позже. Если у вас есть аккаунт, войдите в него для написания от своего имени.

Гость
Ответить в тему...

×   Вставлено в виде отформатированного текста.   Вставить в виде обычного текста

  Разрешено не более 75 эмодзи.

×   Ваша ссылка была автоматически встроена.   Отобразить как ссылку

×   Ваш предыдущий контент был восстановлен.   Очистить редактор

×   Вы не можете вставить изображения напрямую. Загрузите или вставьте изображения по ссылке.

×
×
  • Создать...