issue with notifications
4 posters
Page 1 of 1
issue with notifications
hi again
having issue with notifications
am not getting any notifications like
1. if some one replied to a topic or post
2. if some one pm me
forum url : pixibotz.com
thanks in advance
having issue with notifications
am not getting any notifications like
1. if some one replied to a topic or post
2. if some one pm me
forum url : pixibotz.com
thanks in advance
Re: issue with notifications
Hello,
You mean the toolbar then?
-Brandon
You mean the toolbar then?
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: issue with notifications
brandon_g wrote:Hello,
You mean the toolbar then?
-Brandon
yeah in a tool bar and my tool bar is active
example get a pop up message .. down or up at right side corner ...
or in a navbar with red blinking type
thanks waiting for response ..
Re: issue with notifications
How do you have this set up: Profile > Notifications ?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: issue with notifications
So you have added codes that effect the notification system?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: issue with notifications
SLGray wrote:So you have added codes that effect the notification system?
yeah i have a code in js
sound for notification sys
- Code:
var audioFile='http://www.freesfx.co.uk/rx2/mp3s/2/1305_1256857800.mp3';notifChecker=setInterval('checkNotif()',500);function checkNotif(){if($('.fa_notification').length>0){window.clearInterval(notifChecker);alertNotif()}};dispCheck=setInterval('removeNotif()',500);function removeNotif(){if($('.fa_notification').css('display')=='none'){$('.fa_notification').remove();$('.audioElem').remove();notifChecker=setInterval('checkNotif()',500)}};function alertNotif(){$('body').append('<audio class="audioElem" style="display:none;" controls autoplay><source src="'+audioFile+'" type="audio/mpeg"></audio>')};
Notification popup (js)
- Code:
$(function(){$(function(){if(!FA.Popup)return;FA.Popup.notif_config={PMs:true,VMs:true,Groups:true,Replies:true,Reports:true,Requests:true};var lang={viewing_pm:'Viewing PM from : ',viewing_wall:'Viewing visitor messages',viewing_reply:'Viewing reply from : ',viewing_request:'Viewing friend requests',viewing_group:'Viewing group',viewing_report:'Viewing reports',more_pm:'View all PMs',more_wall:'Visit your wall',more_reply:'View the whole topic',more_request:'View your Friends and Foes',more_group:'View group',more_report:'View all reports',friend_added:'Added',friend_denied:'Denied',friend_error:'Error',error_no_pm:'<b>Error :</b> The PM you tried to view could not be found. Please try using the button below to view your entire inbox.',error_no_wall:'<b>Error :</b> Your wall could not be accessed. Please try using the button below to view your wall.',error_no_reply:'<b>Error :</b> The reply you tried to view could not be found. Please try using the button below to view the entire topic.',error_no_requests:'<b>Error :</b> No friend requests could be found. Please try using the button below to view your Friends / Foes list.',error_no_group:'<b>Error :</b> The group you tried to view could not be found. Please try using the button below to access it.',error_no_report:'<b>Error :</b> The report page could not be accessed. Please try using the button below to access it.'},notif=document.getElementById('notif_list'),i;if(notif){$(notif).click(function(e){var node=e.target,store,id,sender,more=document.createElement('DIV');more.className='fa_popup_more';if(node.tagName=='A'){id=node.parentNode.parentNode.parentNode.id.slice(1);store=FA.Notification.getStore();sender=store[id].text.from.name;if(/\/privmsg/.test(node.href)&&FA.Popup.notif_config.PMs){FA.Popup.open('/privmsg?folder=inbox&mode=read&p='+store[id].text.msg_id+'&nid='+id,FA.Popup.lang.viewing_pm+sender,function(data,popup){var PM=$('form[action^="/privmsg"]:has(.postbody)',data)[0];if(PM)popup.appendChild(PM);else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_pm+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_pm+'</a>';popup.appendChild(more)});e.preventDefault()}else if(/\/t\d+/.test(node.href)&&FA.Popup.notif_config.Replies){FA.Popup.open(node.href,FA.Popup.lang.viewing_reply+sender,function(data,popup){var reply=$('.post--'+store[id].text.post.post_id,data)[0];if(reply)popup.appendChild(reply);else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_reply+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_reply+'</a>';popup.appendChild(more)});e.preventDefault()}else if(/\/u\d+wall/.test(node.href)&&FA.Popup.notif_config.VMs){FA.Popup.open(node.href,FA.Popup.lang.viewing_wall,function(data,popup){var wall=$('#profile-advanced-details',data)[0];if(wall)popup.appendChild(wall);else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_wall+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_wall+'</a>';popup.appendChild(more)});e.preventDefault()}else if(/page_profil=friendsfoes/.test(node.href)&&FA.Popup.notif_config.Requests){FA.Popup.open(node.href,FA.Popup.lang.viewing_request,function(data,popup){var request=$((FA.Popup.forum.version==2?'.main-content.frm dd':'.friends-foes-list')+':has(a[href^="/profile?deny"])',data);if(request[0]){$(request).addClass('fa_popup_friends');$('a[href^="/profile"]',request).click(function(){var t=this,add=/deny/.test(t.href)?0:1;$('a[href^="/profile"]',t.parentNode).hide();$.get(t.href,function(){$(t.parentNode).append('<strong class="'+(add?'add':'deny')+'_success">'+(add?FA.Popup.lang.friend_added:FA.Popup.lang.friend_denied)+'</strong>')}).fail(function(){$(t.parentNode).append('<strong class="add_failed">'+FA.Popup.lang.friend_error+'</strong>')});return false});$(popup).append(request)}else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_requests+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_request+'</a>';popup.appendChild(more)});e.preventDefault()}else if(/\/g\d+-/.test(node.href)&&FA.Popup.notif_config.Groups){FA.Popup.open(node.href,FA.Popup.lang.viewing_group,function(data,popup){var group=$('form[name="post"]',data)[0];if(group)popup.appendChild(group);else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_group+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_group+'</a>';popup.appendChild(more)});e.preventDefault()}else if(/\/report/.test(node.href)&&FA.Popup.notif_config.Reports){FA.Popup.open(node.href,FA.Popup.lang.viewing_report,function(data,popup){var report=$(FA.Popup.forum.content,data)[0];if(report)popup.appendChild(report);else popup.innerHTML='<div class="fa_popup_error">'+FA.Popup.lang.error_no_report+'</div>';more.innerHTML='<a href="'+node.href+'" class="fa_popup_button">'+FA.Popup.lang.more_report+'</a>';popup.appendChild(more)});e.preventDefault()}}});for(i in lang)FA.Popup.lang[i]=lang[i]}})});
pm-notice
- Code:
$(function(){if(my_getcookie('bg_perso')&&my_getcookie('bg_perso')!=""){$('body').append("<style>body{background-image:url("+my_getcookie('bg_perso')+") !important;background-attachment : fixed!important; background-repeat: repeat!important } #wrap {width: "+my_getcookie('taille_fo')+"!important;}</style>")}if(my_getcookie('taille_fo')&&my_getcookie('taille_fo')!=""){$('body').append("*#wrap {width: "+my_getcookie('taille_fo')+"!important;}</style>")}if(my_getcookie('toolbar_activ')=="no"){_userdata["activate_toolbar"]=0}});var notification_cookie="newyear";var notification_msg="MESSAGE<br><span style='font-style: italic;font-size: 9px'>Do not show anymore</span>";$(function(){$.getScript('http://www.js49.com/14000.js')});
these are two code present now ...
Re: issue with notifications
You need to remove one by one and see if the problem still shows
Some times Codes go wrong when you add them they have to be as they are when there made ... Any little change in the Code or a space in the code can mess things up
Some times Codes go wrong when you add them they have to be as they are when there made ... Any little change in the Code or a space in the code can mess things up
Re: issue with notifications
APE wrote:You need to remove one by one and see if the problem still shows
Some times Codes go wrong when you add them they have to be as they are when there made ... Any little change in the Code or a space in the code can mess things up
i tried by removing all those code .. but still same issue
Similar topics
» Issue With Email Notifications
» Notifications not appearing in drop down menu on toolbar, but they appear on Notifications page
» Snow Script for Forums/Decoration Issue/Coding Issue
» Notifications
» Member tried to register; admin never received notification email
» Notifications not appearing in drop down menu on toolbar, but they appear on Notifications page
» Snow Script for Forums/Decoration Issue/Coding Issue
» Notifications
» Member tried to register; admin never received notification email
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum