hello friends >>>
I have this code
for display topic of specific forum but the number of topics appear only 25
I need to appear all topics in the forum
and I favourate use ({FORUM_ID})
beacuase I need to use this code in my viewtopic-body tamplate
help me please
and thank u
I have this code
- Code:
<script type="text/javascript">
var CopyrightNotice='The last Topics category for forumotion. Copyright © ';
$(function () {
$.ajax({
url: "/feed/?f={FORUM_ID}",
success: function (a) {
$(".animelast:first").after('<ul id="list7epsanime"></ul>');
10000 < $(a).find("title").length ? so = 12 : so = $(a).find("title").length;
for (i = 2; i < so; i++) $('<li class="likistanime"><i class="fa fa-play"></i><a href="' + $(a).find("link:eq(" + i + ")").text() + '">' + $(a).find("title:eq(" + i + ")").text() + "</a></li>").appendTo("#list7epsanime")
}
})
});
</script>
for display topic of specific forum but the number of topics appear only 25
I need to appear all topics in the forum
and I favourate use ({FORUM_ID})
beacuase I need to use this code in my viewtopic-body tamplate
help me please
and thank u