The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Missing Quick Reply Toolbar in IE

3 posters

Go down

Missing Quick Reply Toolbar in IE Empty Missing Quick Reply Toolbar in IE

Post by timberella May 13th 2018, 8:30 am

Some of our members who use Internet Explorer are reporting that the Quick Reply Toolbar "went missing" when I installed a Javascript Module to hide forum signatures.  This is the Javascript code that I have installed.

Code:
$(function(){

/* --- CONFIGURATION --- */
// Topic IDs where the signatures are hidden
var topic_ids = [1, 2, 3];
// Forum IDs where the signatures are hidden
var forum_ids = [1, 2];
// Category IDs where the signatures are hidden
var cat_ids = [5];
/* --- CONFIGURATION --- */

var topic_match = window.location.pathname.match(/\/t(\d+)/); if (!topic_match) return;
  var current_topic = topic_match[1];
  var navbar = document.querySelector('.pathname-box');
  if (!current_topic || !navbar) return;
  var forum_selector = navbar.querySelectorAll('.nav');
  var current_forum = forum_selector[forum_selector.length - 1]; if (!current_forum) return;
  var forum_match = current_forum.href.match(/\/f(\d+)/); if (!forum_match) return;
  current_forum = forum_match[1]; if (!current_forum) return;
  if (topic_ids.includes(parseInt(current_topic)) || forum_ids.includes(parseInt(current_forum))) {
    $('.signature_div').filter(function(){ this.style.display = "none" });
  }
  var cat_selector = navbar.querySelectorAll('.nav');
  var current_cat = cat_selector[cat_selector.length - 2]; if (!current_cat) return;
  var cat_match = current_cat.href.match(/\/c(\d+)/); if (!cat_match) return;
  current_cat = cat_match[1]; if (!current_cat) return;
  if (topic_ids.includes(parseInt(current_topic)) || cat_ids.includes(parseInt(current_cat))) {
    $('.signature_div').filter(function(){ this.style.display = "none" });
  }
});

Our forum is phpbb3.
timberella
timberella
Forumember

Female Posts : 111
Reputation : 5
Language : English

http://pinkpalace.forumotion.com/

Back to top Go down

Missing Quick Reply Toolbar in IE Empty Re: Missing Quick Reply Toolbar in IE

Post by SLGray May 13th 2018, 9:40 am

PC's or mobile devices?


Missing Quick Reply Toolbar in IE Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Missing Quick Reply Toolbar in IE Empty Re: Missing Quick Reply Toolbar in IE

Post by timberella May 13th 2018, 10:20 am

PCs.
timberella
timberella
Forumember

Female Posts : 111
Reputation : 5
Language : English

http://pinkpalace.forumotion.com/

Back to top Go down

Missing Quick Reply Toolbar in IE Empty Re: Missing Quick Reply Toolbar in IE

Post by timberella May 19th 2018, 6:15 am

Bump.
timberella
timberella
Forumember

Female Posts : 111
Reputation : 5
Language : English

http://pinkpalace.forumotion.com/

Back to top Go down

Missing Quick Reply Toolbar in IE Empty Re: Missing Quick Reply Toolbar in IE

Post by SarkZKalie May 19th 2018, 6:17 am

Tell them to remove IE please. Choose Chrome, Opera or Microsoft Edge instead


Missing Quick Reply Toolbar in IE Sarkzk10
SarkZKalie
SarkZKalie
Support Moderator
Support Moderator

Male Posts : 1407
Reputation : 218
Language : English

https://rotavn.forumotion.com/

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum