Plastic
Member  
Posts: 19
Registered: 5-18-2012
Member Is Offline
|
|
[Resolved] Help.
Full Board URL: http://www.heybritneyforums.com
XMB Version: 1.9.11
Hi guys, I have some issues and i need help with that.
1. I don't why in the Spanish language when users are browsing the index the invisible members are missing in the who's online table. Example: http://www.abload.de/img/pljhgfuxufx.jpg
2. Since I installed this hack everytime when we tried to click the link to return to the forum index we're redirected to the portal instead. Example: http://www.abload.de/img/pljhgf1ivu68.jpg
3. Anyone knows a raw SQL code - like this- to force all members to use the default theme option?.
That's all guys, I would really appreciate it if anybody could help me.
|
|
Plastic
Member  
Posts: 19
Registered: 5-18-2012
Member Is Offline
|
|
Bump. 
|
|
lottos
Administrator       
Posts: 483
Registered: 6-3-2002
Member Is Offline
Mood: pass me a TimTam
|
|
Backup xmb_members table first, then if your default theme is 0
update xmb_members set theme = '0' where status = 'Member'
Also in your Admin panel, go to Templates, choose the Footer template, look for
http://www.xmbforum.com/
and replace with:
http://www.xmbforum2.com/
|
|
Daniel Gouveia
XMB International Support      
Posts: 64
Registered: 4-10-2007 Location: Portugal, Braga
Member Is Offline
Mood: |Catch Me If You Can|
|
|
Go to: Administration Panel » Translations » Spanish » Detalles
click edit and find: whosoneval
Replace by this:
$lang["whosonmsg"] = "$guestn, $membern y $hiddenn están conectados ahora.";
Edit file "include/functions.inc.php"
Find this:
Code: | if (empty($add) or empty($links)) $links = array('<a rel="v:url" property="v:title" href="./">'.$SETTINGS['bbname'].'</a>'); |
Replace by this:
Code: | if (empty($add) or empty($links)) $links = array('<a rel="v:url" property="v:title" href="index.php?forums">'.$SETTINGS['bbname'].'</a>'); |
lottos give you the solution.
Enjoy it
|
|
Plastic
Member  
Posts: 19
Registered: 5-18-2012
Member Is Offline
|
|
Thank you so much lottos and Daniel.
|
|