Xenforo Feedback Thread

TigerKing

Wise Old Owl
@Raaabo @ico could someone fix the clock in forum's server (it is lagging)? I believe that is causing 2FA related problems. I confirmed this by using a code which had just expired on the Authenticator app.
Exactly..
I used authy code which was shown 1-2 minutes ago and I successfully logged into forum.

Hackers can use this flaw.
 
OP
Raaabo

Raaabo

The Dark Lord
Staff member
Admin
Sorry, been super busy and ignored the forum.

Will look into this two factor thing. Very strange that you can login after it expires! Weird.
 

thetechfreak

Legend Never Ends
Thankfully on Tapatalk we don't face the problem of the oversized emoji. So only a XF thing.

Sent from my vivo 1807 using Tapatalk
 

Desmond

Destroy Erase Improve
Staff member
Admin
Only proper admins can do that. Until then I guess we will have to use a Greasemonkey script to do that.
 

RumbaMon19

Feel Pain.
I saw an option here for branding removal :- Buy XenForo

Also can we get a theme like in this forum:-
Like here

That blue-dark combination along with rounded corners look awesome and easy to eyes.
 

Desmond

Destroy Erase Improve
Staff member
Admin
How do these look?

1608021067820.png


1608021151323.png


Did this using a Greasemonkey script. Logo taken from the main Digit website.

Use this Greasemonkey script:


JavaScript:
// ==UserScript==
// @name     Digit forum logo replacer for Xenforo
// @description Replaces the default Xenforo logo with the Digit logo from the main digit website.
// @version  1
// @grant    none
// @include  *geek.digit.in/community/*
// ==/UserScript==

var digitLogoUrl = "*geek.digit.in/wp-content/uploads/2020/04/Digit-Logo_122x52-px.png";
var xpath = "html/body/div[1]/header/div/div/div/a/img";
var logoElement = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;

if(logoElement.getAttribute("src") === "/community/styles/default/xenforo/xenforo-logo.png")
  logoElement.setAttribute("src", digitLogoUrl);
 

Ricky

Cyborg Agent
I am just talking about logo on top left corner. It has nothing to do with copyright removal which is at the bottom of the forum.
Its here : "*geek.digit.in/community/styles/default/xenforo/xenforo-logo.png"

Its just that someone was being lazy and overlooked it. (pun intended)
 

Desmond

Destroy Erase Improve
Staff member
Admin
Yes, this the one.
If you are admin here and have to xenforo control panel , you can change it.
Follow this post : XF 2.1 - How to delete and replace the existing logo
I am admin, but I don't have too many privileges. I cannot change the forum structure or look and feel. I can only manage users. Proper admins like @Raaabo or @Anorion can make bigger changes.
 

Ricky

Cyborg Agent
I am admin, but I don't have too many privileges. I cannot change the forum structure or look and feel. I can only manage users. Proper admins like @Raaabo or @Anorion can make bigger changes.
May be you can forward this post to them :
*xenforo.com/community/threads/how-to-delete-and-replace-the-existing-logo.168531/
 

Desmond

Destroy Erase Improve
Staff member
Admin
I have tagged them in the thread, so they will see it sooner or later. But they are both very busy so don't expect any changes anytime soon. Until then, install Greasemonkey and use the script I posted.
 

Desmond

Destroy Erase Improve
Staff member
Admin
Yeah, being a primarily dark theme user, I never realized that until RCuber pointed this out to me.
 
Top Bottom