Mensagem pré definida após a primeira
2 participantes
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Mensagem pré definida após a primeira
Detalhes da questão
Endereço do fórum: https://empireofwars.forumotion.com/
Versão do fórum: PunBB
Descrição
Boa tarde,
E possivel colocar um bot depois do primeiro post mas apenas de foruns especificos?
Re: Mensagem pré definida após a primeira
Olá @empireofwars,
Crie uma nova página JavaScript com investimento dos tópicos, com o seguinte código:
Cordialmente,
pedxz.
Crie uma nova página JavaScript com investimento dos tópicos, com o seguinte código:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: ModernBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.postprofile-rank',
'.postprofile-info',
'.postprofile-contact'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4'
}
};
$(function () {
var $link = $('.sub-header-path').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.topic-title a')
.html(config.message.title)
.end()
.find('.postbody .content')
.html(config.message.content)
.end()
.find('.postprofile-name')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.postprofile-avatar')
.html($('<img />', { 'src': config.message.avatar }))
;
$post
.find(config.global.hide.join(','))
.hide()
;
$post.insertAfter($firstPost);
});
}(jQuery));
Cordialmente,
pedxz.
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
O objetivo e que funcione em sitios específicos, neste caso /f3-e /f8- e alem disso, nao e ModernBB e sim PunBB
Re: Mensagem pré definida após a primeira
Perdão!
Altere o código para o seguinte:
Atenciosamente,
pedxz.
Altere o código para o seguinte:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: PunBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.user-info',
'.postfoot a',
'.postfoot img'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4'
}
};
$(function () {
var $link = $('.pun-crumbs').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.posthead h2')
.html(config.message.title)
.end()
.find('.entry-content')
.html(config.message.content)
.end()
.find('.username')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.user-basic-info')
.html($('<img />', { 'src': config.message.avatar }))
;
$post
.find(config.global.hide.join(','))
.hide()
;
$post.insertAfter($firstPost);
});
}(jQuery));
Atenciosamente,
pedxz.
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
Mais uma coisa, e possível essa mensagem do bot desaparecer após alguem responder ao topico? (Possivel eu sei que é, agora como é que e mais complicado...)
Re: Mensagem pré definida após a primeira
Altere o código para:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: PunBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.user-info',
'.postfoot a',
'.postfoot img'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4'
}
};
$(function () {
var $link = $('.pun-crumbs').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.posthead h2')
.html(config.message.title)
.end()
.find('.entry-content')
.html(config.message.content)
.end()
.find('.username')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.user-basic-info')
.html($('<img />', { 'src': config.message.avatar }))
;
$post
.find(config.global.hide.join(','))
.hide()
;
if($('.post:nth-child(2)').length) {
return;
}
$post.insertAfter($firstPost);
});
}(jQuery));
Última edição por Pedxz em 16.03.20 16:56, editado 1 vez(es)
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
Funcionoul obrigado!!
Agora para finalizar e uma coisa que nao gosto, e que no nick do bot e o nick de quem criou o topico apesar de eu ver ali "author" com o nick, sera do meu template? Penso que sim pq testei sem template e funciona.. E possivel me ajustar e me dizer oq alterou para funcionar?
Agora para finalizar e uma coisa que nao gosto, e que no nick do bot e o nick de quem criou o topico apesar de eu ver ali "author" com o nick, sera do meu template? Penso que sim pq testei sem template e funciona.. E possivel me ajustar e me dizer oq alterou para funcionar?
- Código:
<script type="text/javascript">//<![CDATA[
var multiquote_img_off = '{JS_MULTIQUOTE_IMG_OFF}', multiquote_img_on = '{JS_MULTIQUOTE_IMG_ON}', _atr = '{JS_DIR}addthis/', _ati = '{PATH_IMG_FA}addthis/'{ADDTHIS_LANG}, addthis_localize = { share_caption: "{L_SHARE_CAPTION}", email: "{L_EMAIL}", email_caption: "{L_EMAIL_CAPTION}", favorites: "{L_SHARE_BOOKMARKS}", print: "{L_PRINT}", more: "{L_MORE}" };
$(function(){
_atc.cwait = 0;
$('.addthis_button').mouseup(function(){
if ($('#at15s').css('display') == 'block') {
addthis_close();
addthis_close();
}
});
});
//]]>
</script>
<!-- BEGIN switch_user_logged_in -->
<div id="pun-visit" class="clearfix">
<ul>
<!-- BEGIN switch_plus_menu -->
<li>
<script type="text/javascript">//<![CDATA[
var url_favourite = '{switch_user_logged_in.U_FAVOURITE_JS_PLUS_MENU}';
var url_newposts = '{U_NEWPOSTS_JS_PLUS_MENU}';
var url_egosearch = '{U_EGOSEARCH_JS_PLUS_MENU}';
var url_unanswered = '{U_UNANSWERED_JS_PLUS_MENU}';
var url_watchsearch = '{U_WATCHSEARCH_JS_PLUS_MENU}';
insert_plus_menu_new('f{FORUM_ID}&t={TOPIC_ID}','{JS_SESSION_ID}', {JS_AUTH_FAVOURITES});
//]]>
</script>
</li>
<!-- END switch_plus_menu -->
<li><a class="addthis_button" href="https://www.addthis.com/bookmark.php?v=250&pub=forumotion">{L_SHARE}</a></li>
<li><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a></li>
<li><a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></li>
<!-- BEGIN watchtopic -->
<li>{S_WATCH_TOPIC}</li>
<!-- END watchtopic -->
</ul>
<p>{LOGGED_AS}. {LAST_VISIT_DATE}</p>
</div>
<!-- END switch_user_logged_in -->
<div class="pun-crumbs noprint">
<p class="crumbs">
<a href="{U_INDEX}">{L_INDEX}</a>{NAV_CAT_DESC} »
<strong><a href="{TOPIC_URL}">{TOPIC_TITLE}</a></strong>
</p>
</div>
<div class="titlebox">
<dd> <dava><div class="avatarredet"><a class="teste2" href="#">
<img class="teste" alt="" src="https://2img.net/u/2617/31/90/74/avatars/1-40.png" /></a></div></dava>
<div itemscope="" itemtype="http://schema.org/Article" class="ipsBox_withphoto">
<h1 itemprop="name" class="ipsType_pagetitle">{TOPIC_TITLE}</h1>
<div class="PB-desc lighter blend_links">
<dts>Iniciado por </dts><span itemprop="creator"></span>, <span itemprop="data_post"></span></div></div>
<!-- BEGIN switch_user_logged_in -->
<!-- END switch_user_logged_in -->
</dd></div>
<div class="main paged">
<div class="paged-head clearfix">
<!-- BEGIN topicpagination -->
<p class="paging">{PAGINATION}</p>
<!-- END topicpagination -->
<p class="posting">
<!-- BEGIN switch_user_authreply -->
<a href="{U_POST_REPLY_TOPIC}"><img src="{REPLY_IMG}" class="i_reply" alt="{L_POST_REPLY_TOPIC}" /></a>
<!-- END switch_user_authreply -->
</p>
</div>
{POLL_DISPLAY}
<div class="main-head clearfix">
<p class="h2">
<a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a> <a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a> <a href="#bottom">{L_GOTO_DOWN}</a>
{L_MESSAGE} [{PAGE_NUMBER}]
</p>
</div>
<div class="main-content topic">
<!-- BEGIN postrow -->
<!-- BEGIN hidden -->
<p class="p-hidden">{postrow.hidden.MESSAGE}</p>
<!-- END hidden -->
<!-- BEGIN displayed -->
<div class="post post--{postrow.displayed.U_POST_ID}"{postrow.displayed.THANK_BGCOLOR} style="{postrow.displayed.DISPLAYABLE_STATE}">
<a name="{postrow.displayed.U_POST_ID}"></a>
<h3>
<span class="post_id right ipsType_small desc blend_links">
<a itemprop="replyToUrl" data-entry-pid="424042" href="{postrow.displayed.POST_URL}" rel="bookmark" title="{postrow.displayed.POST_SUBJECT}: post #{postrow.displayed.COUNT_POSTS}">
#{postrow.displayed.COUNT_POSTS}
<img src="https://i.servimg.com/u/f78/17/31/71/58/icon_s10.png" class="small" title="{postrow.displayed.POST_SUBJECT}: post #{postrow.displayed.COUNT_POSTS}" />
</a>
</span>
<div class="post_username">
<div class="post_online">{postrow.displayed.ONLINE_IMG}</div>
<span itemprop="creator name" class="author vcard">
<span hovercard-ref="member" hovercard-id="35095" class="url fn name ___hover___member _hoversetup" title="" id="anonymous_element_2">
<span itemprop="name">{postrow.displayed.POSTER_NAME}</span>
</span>
</span>
</div>
</h3>
<div class="postmain">
<div style="display:none" id="p{postrow.displayed.U_POST_ID}" class="posthead"{postrow.displayed.THANK_BGCOLOR}>
<h2>
<strong>{postrow.displayed.COUNT_POSTS}</strong>
{postrow.displayed.ICON} <a href="{postrow.displayed.POST_URL}">{postrow.displayed.POST_SUBJECT}</a> {postrow.displayed.POST_DATE_NEW}
</h2>
</div>
<div class="postbody">
<div class="user">
<div class="user-ident">
<div class="user-basic-info">
{postrow.displayed.POSTER_AVATAR}<br />
{postrow.displayed.POSTER_RANK_NEW}{postrow.displayed.RANK_IMAGE}
</div>
</div>
<div class="user-info">
<!-- BEGIN profile_field -->
{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
<!-- END profile_field -->
{postrow.displayed.POSTER_RPG}
</div>
</div>
<div class="post-entry">
<div class="post_date">
<p class="posted_info desc lighter ipsType_small">Postado <abbr class="published" itemprop="commentTime" title="{postrow.displayed.POST_DATE_NEW}">
<span class="data-post">{postrow.displayed.POST_DATE_NEW}</span>
</abbr>
</p>
</div>
<div class="entry-content">
<!-- BEGIN switch_vote_active -->
<div class="vote gensmall">
<!-- BEGIN switch_vote -->
<div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_PLUS}">+</a></div>
<!-- END switch_vote -->
<!-- BEGIN switch_bar -->
<div class="vote-bar" title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}">
<!-- BEGIN switch_vote_plus -->
<div class="vote-bar-plus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_plus.HEIGHT_PLUS}px;"></div>
<!-- END switch_vote_plus -->
<!-- BEGIN switch_vote_minus -->
<div class="vote-bar-minus" style="height:{postrow.displayed.switch_vote_active.switch_bar.switch_vote_minus.HEIGHT_MINUS}px;"></div>
<!-- END switch_vote_minus -->
</div>
<!-- END switch_bar -->
<!-- BEGIN switch_no_bar -->
<div title="{postrow.displayed.switch_vote_active.L_VOTE_TITLE}" class="vote-no-bar">----</div>
<!-- END switch_no_bar -->
<!-- BEGIN switch_vote -->
<div class="vote-button"><a href="{postrow.displayed.switch_vote_active.switch_vote.U_VOTE_MINUS}">-</a></div>
<!-- END switch_vote -->
</div>
<!-- END switch_vote_active -->
<div class="content">
<div>{postrow.displayed.MESSAGE}</div>
<!-- BEGIN switch_attachments -->
<dl class="attachbox">
<dt>{postrow.displayed.switch_attachments.L_ATTACHMENTS}</dt>
<dd>
<!-- BEGIN switch_post_attachments -->
<dl class="file">
<dt>
<img src="{postrow.displayed.switch_attachments.switch_post_attachments.U_IMG}" />
<!-- BEGIN switch_dl_att -->
<a class="postlink" href="{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.U_ATTACHMENT}">{postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT}</a> {postrow.displayed.switch_attachments.switch_post_attachments.switch_dl_att.ATTACHMENT_DEL}
<!-- END switch_dl_att -->
<!-- BEGIN switch_no_dl_att -->
{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT} {postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.ATTACHMENT_DEL}
<!-- END switch_no_dl_att -->
</dt>
<!-- BEGIN switch_no_comment -->
<dd>
<em>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_comment.ATTACHMENT_COMMENT}</em>
</dd>
<!-- END switch_no_comment -->
<!-- BEGIN switch_no_dl_att -->
<dd>
<em><strong>{postrow.displayed.switch_attachments.switch_post_attachments.switch_no_dl_att.TEXT_NO_DL}</strong></em>
</dd>
<!-- END switch_no_dl_att -->
<dd>({postrow.displayed.switch_attachments.switch_post_attachments.FILE_SIZE}) {postrow.displayed.switch_attachments.switch_post_attachments.NB_DL}</dd>
</dl>
<!-- END switch_post_attachments -->
</dd>
</dl>
<!-- END switch_attachments -->
<div class="clear"></div>
</div>
<p>
{postrow.displayed.EDITED_MESSAGE}
</p>
</div>
</div>
</div>
<!-- BEGIN switch_signature -->
<div class="sig-content">
{postrow.displayed.SIGNATURE_NEW}
</div>
<!-- END switch_signature -->
<div class="postfoot">
<!--All rights reserved to the DevCodes -->
<div class="post-options profile_{postrow.displayed.PROFILE_POSITION}">
{postrow.displayed.EDIT_IMG} {postrow.displayed.DELETE_IMG} {postrow.displayed.REPORT_IMG} {postrow.displayed.MULTIQUOTE_IMG} {postrow.displayed.QUOTE_IMG} {postrow.displayed.THANK_IMG}
</div>
<div style="clear:both;"></div>
</div>
</div>
</div>
<!-- BEGIN first_post_br -->
</div>
<hr id="first-post-br" />
<div class="main-content topic">
<!-- END first_post_br -->
<!-- END displayed -->
<!-- BEGIN hidden -->
<p class="p-hidden">{postrow.hidden.MESSAGE}</p>
<!-- END hidden -->
<!-- END postrow -->
</div>
<div class="main-foot clearfix">
<p class="h2">
<a href="{U_VIEW_OLDER_TOPIC}">{L_VIEW_PREVIOUS_TOPIC}</a> <a href="{U_VIEW_NEWER_TOPIC}">{L_VIEW_NEXT_TOPIC}</a> <a href="#top">{L_BACK_TO_TOP}</a>
{L_MESSAGE} [{PAGE_NUMBER}]
</p>
<p class="options">
<input type="hidden" name="t" value="{TOPIC_ID}" />
<!-- <input type="hidden" name="sid" value="{S_SID}" /> -->
<input type="hidden" name="{SECURE_ID_NAME}" value="{SECURE_ID_VALUE}" />
<!-- BEGIN viewtopic_bottom -->
{S_TOPIC_ADMIN}
<!-- END viewtopic_bottom -->
</p>
</div>
<a name="bottomtitle"></a>
<br />
<!-- BEGIN promot_trafic -->
<div class="main" id="ptrafic_close" style="display:none">
<div class="main-head clearfix">
<p class="h2">{PROMOT_TRAFIC_TITLE}</p>
<p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_MORE_IMG}" alt="+" align="" border="0" /></a></p>
</div>
</div>
<div class="main" id="ptrafic_open" style="display:''">
<div class="main-head clearfix">
<p class="h2">{PROMOT_TRAFIC_TITLE}</p>
<p class="options"><a href="javascript:ShowHideLayer('ptrafic_open','ptrafic_close');"><img src="{TABS_LESS_IMG}" alt="-" align="" border="0" /></a></p>
</div>
<div class="main-content clearfix">
<!-- BEGIN link -->
» <a href="{promot_trafic.link.U_HREF}" target="_blank" title="{promot_trafic.link.TITLE}">{promot_trafic.link.TITLE}</a><br />
<!-- END link -->
</div>
</div>
<!-- END promot_trafic -->
<!-- BEGIN switch_forum_rules -->
<div class="main" id="forum_rules">
<div class="main-head clearfix">
<p class="h2">{L_FORUM_RULES}</p>
</div>
<table class="main-content frm">
<tr>
<!-- BEGIN switch_forum_rule_image -->
<td class="logo">
<img src="{RULE_IMG_URL}" />
</td>
<!-- END switch_forum_rule_image -->
<td class="rules entry-content">
{RULE_MSG}
</td>
</tr>
</table>
</div>
<!-- END switch_forum_rules -->
<!-- BEGIN switch_user_logged_in -->
<a name="quickreply"></a>
{QUICK_REPLY_FORM}
<!-- END switch_user_logged_in -->
<div id="pun-info" class="main" style="display:none;">
<div class="main-content">
<div id="stats">
<p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p>
</div>
</div>
</div>
<div id="pun-info" class="main" style="display: none;">
<div id="stats">
<!-- Backup <p>{L_TABS_PERMISSIONS} <br />{S_AUTH_LIST}</p> -->
{LOGGED_IN_USER_LIST}
</div>
</div>
<!-- BEGIN switch_image_resize -->
<script type="text/javascript">
//<![CDATA[
$(resize_images({ 'selector' : '.post-entry .entry-content', 'max_width' : {switch_image_resize.IMG_RESIZE_WIDTH}, 'max_height' : {switch_image_resize.IMG_RESIZE_HEIGHT} }));
//]]>
</script>
<!-- END switch_image_resize -->
Re: Mensagem pré definida após a primeira
Altere para:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: PunBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.user-info',
'.postfoot a',
'.postfoot img'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4'
}
};
$(function () {
var $link = $('.pun-crumbs').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.posthead h2')
.html(config.message.title)
.end()
.find('.entry-content')
.html(config.message.content)
.end()
.find('span[itemprop="name"]')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.user-basic-info')
.html($('<img />', { 'src': config.message.avatar }))
;
$post
.find(config.global.hide.join(','))
.hide()
;
if($('.post:nth-child(2)').length) {
return;
}
$post.insertAfter($firstPost);
});
}(jQuery));
Última edição por Pedxz em 16.03.20 16:57, editado 1 vez(es)
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
Funcionou sim, porem, ha um promenor que nao gostei, que agora depois desta alteraçao, o bot nao esta igual o nick, ta a negreto, e possivel retirar? deixando como se fosse um user normal? assim a azul?
https://prnt.sc/rhawuv
https://prnt.sc/rhawuv
Re: Mensagem pré definida após a primeira
empireofwars escreveu:Funcionou sim, porem, ha um promenor que nao gostei, que agora depois desta alteraçao, o bot nao esta igual o nick, ta a negreto, e possivel retirar? deixando como se fosse um user normal? assim a azul?
https://prnt.sc/rhawuv
É que o nome do robô não tem hiperligação, então fica sem a cor padrão das hiperligações (azul)
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
E possivel colocar uma frase centrada por baixo e por cima da imagem do bot?
Re: Mensagem pré definida após a primeira
empireofwars escreveu:E possivel colocar uma frase centrada por baixo e por cima da imagem do bot?
Sim, quais seria as designações
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
EM cima seria "Venha jogar connosco"
E em baixo a vermelho seria "BOT de Suporte"
E em baixo a vermelho seria "BOT de Suporte"
Re: Mensagem pré definida após a primeira
Altere para:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: PunBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.user-info',
'.postfoot a',
'.postfoot img'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4',
rank : 'Venha jogar connosco',
user : 'Bot de suporte'
}
};
$(function () {
var $link = $('.pun-crumbs').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.posthead h2')
.html(config.message.title)
.end()
.find('.entry-content')
.html(config.message.content)
.end()
.find('span[itemprop="name"]')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.user-basic-info')
.html($('<img />', { 'src': config.message.avatar }))
.end()
.find('.user-basic-info')
.after('<span style="min-width: 100%!important; text-align: center!important; color: red;">' + config.message.rank + '</span>')
.end()
.find('.user-basic-info')
.before(config.message.user)
;
$post
.find(config.global.hide.join(','))
.hide()
;
if($('.post:nth-child(2)').length) {
return;
}
$post.insertAfter($firstPost);
});
}(jQuery));
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
Obrigado, resultou, agora apra finalizar e desculpe, e possivel me passar este codigo mas com a diferenca de mesmo respondendo, o bot continuar a aparecer
Re: Mensagem pré definida após a primeira
Aqui esta:
- Código:
/**
* Script para postar uma mensagem após a primeira.
* Versão de atuação: PunBB.
*
* @author Luiz Felipe <https://lffg.github.io/>
* @version 1.0
* @licence MIT
*/
(function ($) {
'use strict';
var config = {
global: {
forum: 1,
/**
* @ignore
*/
hide : [
'.user-info',
'.postfoot a',
'.postfoot img'
]
},
message: {
title : 'Seja bem-vindo(a)!',
content: 'Lorem ipsum dolor sit amet.',
author : 'Forum Bot',
avatar : 'https://avatars3.githubusercontent.com/u/6422482?s=400&v=4',
rank : 'Venha jogar connosco',
user : 'Bot de suporte'
}
};
$(function () {
var $link = $('.pun-crumbs').find('a[href^="/f' + config.global.forum + '-"]');
if (!$link.length) {
return false;
}
var $firstPost = $('.post').first();
var $post = $firstPost.clone();
$post
.find('.posthead h2')
.html(config.message.title)
.end()
.find('.entry-content')
.html(config.message.content)
.end()
.find('span[itemprop="name"]')
.html($('<strong>', { 'text': config.message.author }))
.end()
.find('.user-basic-info')
.html($('<img />', { 'src': config.message.avatar }))
.end()
.find('.user-basic-info')
.after('<span style="min-width: 100%!important; text-align: center!important; color: red;">' + config.message.rank + '</span>')
.end()
.find('.user-basic-info')
.before(config.message.user)
;
$post
.find(config.global.hide.join(','))
.hide()
;
$post.insertAfter($firstPost);
});
}(jQuery));
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Re: Mensagem pré definida após a primeira
Questão resolvidaEsta questão foi dada como resolvida pelo seu autor, e por esse motivo será marcada como resolvida e movida para o arquivo de questões resolvidas desta área. |
tikky- Admineiro
- Membro desde : 13/01/2017
Mensagens : 7962
Pontos : 9217
Tópicos semelhantes
» Mensagem pré definida após a primeira
» Mensagem pré-definida com problemas
» Mensagem pré-definida para o post
» Os links da coluna Última Mensagem remetem à primeira mensagem do tópico, não à última
» Relembrando a primeira mensagem
» Mensagem pré-definida com problemas
» Mensagem pré-definida para o post
» Os links da coluna Última Mensagem remetem à primeira mensagem do tópico, não à última
» Relembrando a primeira mensagem
Fórum dos Fóruns :: Ajuda e atendimento ao utilizador :: Questões sobre códigos :: Questões resolvidas sobre códigos Javascript e jQuery
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos