Modificações view_topic
2 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre HTML e BBCode
Página 1 de 1
Modificações view_topic
- Descrição:
Queria colocar as seguintes coisas em meu view_topic:
Tirei os links daqui mesmo: http://punbb.forumeiros.com/t150p15-novos-sistemas-new-features
- Informações:
Fórum: | http://piratarevolution.forumeiros.com | Versão: | PUNBB |
Tipo: | Pedido de código | Tags: | Modificações,view_topic |
Re: Modificações view_topic
Olá!
Lamento, mas alguns desses sistemas não estão disponíveis para nós então não lhe poderemos ajudar nisto.
Titlebox: https://ajuda.forumeiros.com/t93531-titlebox-modificado
Post popular: http://bestskins.forumeiros.com/t3167-tutorialtornar-um-post-popular
Quando à paginação, preciso de um topico seu com umas 2/3 páginas para poder fazer testes com CSS.
E esta é a última vez que fará um tópico com vários pedidos nele. Faça um tópico para cada modificação ou não daremos suporte.
Hancki
Lamento, mas alguns desses sistemas não estão disponíveis para nós então não lhe poderemos ajudar nisto.
Titlebox: https://ajuda.forumeiros.com/t93531-titlebox-modificado
Post popular: http://bestskins.forumeiros.com/t3167-tutorialtornar-um-post-popular
Quando à paginação, preciso de um topico seu com umas 2/3 páginas para poder fazer testes com CSS.
E esta é a última vez que fará um tópico com vários pedidos nele. Faça um tópico para cada modificação ou não daremos suporte.
Hancki
Re: Modificações view_topic
Olá,
Irei tratar da paginação.
Tem como adicionar a minha titlebox o seguinte sistema pois vários fóruns tem isto: https://i.imgur.com/cvIjeUg.png
View_topic:
http://pastebin.com/nCqNFUsR
Tem como me passar o código pois não quero registrar:
http://bestskins.forumeiros.com/t3167-tutorialtornar-um-post-popular
Irei tratar da paginação.
Tem como adicionar a minha titlebox o seguinte sistema pois vários fóruns tem isto: https://i.imgur.com/cvIjeUg.png
View_topic:
http://pastebin.com/nCqNFUsR
Tem como me passar o código pois não quero registrar:
http://bestskins.forumeiros.com/t3167-tutorialtornar-um-post-popular
Re: Modificações view_topic
Para essas tags no titlebox, adicione este código em página Javascript, investida nos tópicos:
Código Post Popular:
Página Javascript nos tópicos:
- Código:
/***
* Application: Tags Search
* Description: This application can displays tags for searching.
* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)
* Made and Optimizations by JScript - 2014/03/09
* View more in: http://punbb.forumeiros.com
* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>
* This work is free. You can redistribute it and/or modify it
* under the terms of the WTFPL, Version 2
*/
jQuery(function () {
/***
* User Definition Variables
***/
/* Put here the limit of tag length!!! */
var iTagLength = 4;
/* Put here your tags tool tip!!! */
var sTagTitle = '';
/* Put here your widget title!!! */
var sTagToolTip = 'Localizar mais conteúdo com a tag';
/* END */
/***
* System Defined Variables - Do not edit if you don't know!
***/
var oConfig = {
sInfo: '<!--' +
'* Application: Tags Search' +
'* Description: This application can displays tags for searching.' +
'* Version: 1.09032014-jq1.9.1 - Thoth (Ermoúpoli -> Eshmunen)' +
'* Made and Optimizations by JScript - 2014/03/09' +
'* View more in: http://punbb.forumeiros.com/forum & http://ajuda.forumeiros.com' +
'* Copyright (c) 2013 JScript <jscriptbrasil at live dot com>' +
'* This work is free. You can redistribute it and/or modify it' +
'* under the terms of the WTFPL, Version 2' +
'-->',
sContent: '<span id="tags_search"><span>' + sTagTitle + ' </span></span>',
sCSS: '<style>' +
'#tags_search {' +
'display: block;' +
'margin-bottom: 20px;' +
'margin-top: 20px;' +
'}' +
'.ipsTag {' +
'background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARsAAAAUCAYAAAC9DJlAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAVVJREFUeNrt3L1Kw1AYxvFzAyKIDt6Mkzi4uHgT3omji4ubIPZm2s3BQUGQfqYm/UgTpNjX5xQTbJtOPVnKP/Ab8iZkeOE8wzknx5mZq5Ln+YVEEu8Rf9mauaSSBPj+4p/vPesdsC75GzvzinGVr79fGTRZlh3JmxgAhLAtbB5oDoBaw2Y2m13JQgwAQlkJmjRNT+RDDABCWgmb6XT6KAYAoZVBM5lMrsUAoA7LoBmPx6fyKQYAdViGzWg0ehZrtVolfw8AobgkSW7EPB8yjUbDeX5jTlEHgF25OI6fxLxms1mGjV8XL+oAsCv3NRwey7uYl2k9vFDUAGBXyzmbYRRdykIMAOpQLn1Hg8G9GADUoQybQb9/KK9iABDayg7ifq93Lj9iABDSxo+YvW73TgwAQtoIm26ncyAvYgAQSuV5Np12+0zmYgAQgtt2LKge3tIgAKH8AuAoaOwRGBXHAAAAAElFTkSuQmCC") repeat scroll 0 0 rgba(0, 0, 0, 0);' +
'border-radius: 0 3px 3px 0;' +
'color: #656565 !important;' +
'display: inline-block;' +
'font-size: 11px;' +
'height: 20px;' +
'line-height: 20px;' +
'margin: 5px 5px 0 0;' +
'padding: 0 7px 0 15px;' +
'}' +
'</style>',
sTarget: ''
};
jQuery(oConfig.sCSS).insertBefore('body');
/* Forum versions! */
var phpBB2 = jQuery('.bodyline');
var phpBB3 = jQuery('#wrap');
var punbb = jQuery('#pun-intro');
var invision = jQuery('#ipbwrapper');
if (phpBB2.length) {
$('td.nav').parent().parent().parent().before(oConfig.sInfo + oConfig.sContent);
oConfig.sTarget = 'h1.cattitle:first';
} else if (phpBB3.length) {
$('#main-content .post:first').before(oConfig.sInfo + oConfig.sContent);
oConfig.sTarget = 'h1.page-title';
} else if (punbb.length) {
$('.desc.lighter.blend_links').after(oConfig.sInfo + oConfig.sContent);
oConfig.sTarget = 'p.crumbs strong:last';
} else if (invision.length) {
$('#main-content .borderwrap:first').before(oConfig.sInfo + oConfig.sContent);
oConfig.sTarget = 'div.maintitle.floated h3';
};
var tags = jQuery(oConfig.sTarget).text().split(' ');
jQuery.each(tags, function (index, data) {
if (data.length > iTagLength) {
$('#tags_search').append(
'<a id="tag_search_' + index + '" class="ipsTag" title="' + sTagToolTip + ' ' + data + '" href="/search?search_keywords=' + data + '">' +
' <span>' + data + '</span>' +
'</a>'
);
}
});
});
Código Post Popular:
Página Javascript nos tópicos:
- Código:
$(function() {
var x = $('.vote');
for (var i = 0, l = x.length; i < l; i++) {
var v = x[i],
count = 0,
plus = 0;
var barra = $('.vote-bar', v)[0];
var button = $('.vote-button', v)[0];
if (barra) {
var info = barra.title.match(/\d+/g);
count = info[0];
var percent = info[1];
value = Math.round(parseInt(percent) * parseInt(count)) / 100;
}
if(value >= 5) {
pop = '<p class="popular_post"><img src="http://imgur.com/hds8Nup.png"><br>POPULAR</p>';
x.after(pop);
}
}
});
- Código:
.popular_post {
background: #D5DEE5;
border-radius: 5px 5px 5px 5px;
color: #1D3652;
float: right;
font-size: 0.8em;
font-weight: bold;
margin: 5px 10px 10px;
padding: 5px;
text-align: center;
}
Re: Modificações view_topic
Vou ja testar esses códigos.
Quanto à Paginação aqui está o tópico http://piratarevolution.forum-pro.net/t15-ficalmente-sem-bug
Quanto à Paginação aqui está o tópico http://piratarevolution.forum-pro.net/t15-ficalmente-sem-bug
Re: Modificações view_topic
Desculpe o double post mas o sistema de tag no titlebox não resultou, já vi vários fóruns com isso mas modificações atravez dos templates.
Quanto aos posts populares também não funcionão.
Deixei todos os códigos que me paasou acima adicionado para que vc possa ver
Quanto aos posts populares também não funcionão.
Deixei todos os códigos que me paasou acima adicionado para que vc possa ver
Re: Modificações view_topic
Use este código Javascript, investido nos tópicos:
- Código:
$(function () {
$('head').append('<style>.paging .sprite-arrow_prosilver_left { background: no-repeat scroll 0 0 transparent !important; height: 20px !important; width: 40px !important; } .paging .sprite-arrow_prosilver_right { background: no-repeat scroll 0 0 transparent !important; height: 20px !important; width: 39px !important; } .paging > b { background: none repeat scroll 0 0 #7BA60D !important; border-radius: 2px 2px 2px 2px !important; color: #FFF !important; font-weight: 700 !important; padding: 5px !important; } .pun .paging { color: #FFF !important; float: left !important; font-size: 11px !important; font-weight: 700 !important; line-height: 20px !important; padding: 5px !important; }</style>');
$('.paging .sprite-arrow_prosilver_left').attr('style', 'background: url(http://i.imgur.com/HUyGSpS.png) !important;');
$('.paging .sprite-arrow_prosilver_right').attr('style', 'background: url(http://i.imgur.com/mWjxfRh.png) !important;');
});
Re: Modificações view_topic
Veja os códigos em funcionamento: http://prntscr.com/42zchn
Eles funcionam sim!
O do tópico popular só funciona quando o tópico tiver mais de 5 votos de reputação.
Ou muda na linha:
Eles funcionam sim!
O do tópico popular só funciona quando o tópico tiver mais de 5 votos de reputação.
Ou muda na linha:
- Código:
if(value >= 5) {
Re: Modificações view_topic
Na punbb.forumeiros.com ap passar o moue em PREV e NEXT sai um efeito em rosa, tem como colocar?
Aqui as tags da titlebox não funcionam.
Tem como me adicionar estes JavaScripts todos no view_topic?
Aqui as tags da titlebox não funcionam.
Tem como me adicionar estes JavaScripts todos no view_topic?
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre HTML e BBCode
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos