Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: fox0r on December 03, 2010, 06:35:24 PM

Title: Two Issues - RC4
Post by: fox0r on December 03, 2010, 06:35:24 PM
I'm having a couple of issues with my forum since I've upgraded to RC4 and installed Tiny Portal.

First off, in my admin panel, where I have tick boxes and things like that I will also have a text field next to it for either a 1 or a 0.  If I don't type either in the box, it wont save whether or not I tick or untick.

And also across the top where you have SMF Community Forum, SMF Support, SMF 2.x, on my board if I were viewing a topic, and clicked SMF 2.x, it'd dump me back to the main forum page instead of taking me back to that category.

Any ideas?
Title: Re: Two Issues - RC4
Post by: Deaks on December 03, 2010, 07:41:22 PM
1. is tp the only mod you have installed if so remove it and tell me if this issue is still there
2. Admin - Themes and Layout - Member Options  - Configure guest and new user options for this theme  then look for # Return to topics after posting by default. place check then save
Title: Re: Two Issues - RC4
Post by: fox0r on December 03, 2010, 11:23:45 PM
TP is not the only mod I have installed.

1.   Post Ratings   1.4   [ Uninstall ]
2.   nCode Image Resizer   1.3.1   [ Uninstall ]
3.   Spoiler BBCode   1.1.3   [ Uninstall ]
4.   Post History   0.3   [ Uninstall ]
5.   Dice Roller BBcode   1.3   [ Uninstall ]
6.   TinyPortal   1.101   [ Uninstall ]

I will go work on the member options now.  Thanks!
Title: Re: Two Issues - RC4
Post by: fox0r on December 03, 2010, 11:27:53 PM
Okay, the problem we have is this... You go into a topic, which leaves you with Forum name > Category > Board > Topic.  If you click on Category it dumps you at the top of the forum, and doesn't skip you down to that category.
Title: Re: Two Issues - RC4
Post by: fox0r on December 05, 2010, 03:07:42 PM
Anyone?
Title: Re: Two Issues - RC4
Post by: Norv on December 05, 2010, 03:18:29 PM
Do you use the default theme, or a custom theme?
Can we see a link to your forum?
Title: Re: Two Issues - RC4
Post by: fox0r on December 06, 2010, 01:24:36 PM
It's forums.hellestar.com.  I'm using Outline by Dziner Studios.. I've used this theme before without the issues I'm having now, though granted it's been updated for the newer SMF.

This is what the skip down links (Category in my previous example) are looking like:  http://forums.hellestar.com/index.php?action=forum#3
Title: Re: Two Issues - RC4
Post by: Norv on December 06, 2010, 01:36:09 PM
That link is modified, it's not how SMF does the navigation links by default. Maybe you should ask the theme authors, or look into your mods.
Title: Re: Two Issues - RC4
Post by: fox0r on December 06, 2010, 01:38:07 PM
I fixed it.

I went into my Load.php and tweaked this bit here:

// Build up the linktree (adding TPortal forum index)
$context['linktree'] = array_merge(
$context['linktree'],
array(array(
'url' => $scripturl . '?action=forum#' . $board_info['cat']['id'],
'name' => $board_info['cat']['name']


// Build up the linktree (adding TPortal forum index)
$context['linktree'] = array_merge(
$context['linktree'],
array(array(
'url' => $scripturl . '?action=forum#c' . $board_info['cat']['id'],
'name' => $board_info['cat']['name']



Now that that part is solved.  Does anyone have any idea why I'm getting boxes in my admin panel for 0's and 1's next to check boxes and such? It seems to display in multiple themes.
Title: Re: Two Issues - RC4
Post by: Norv on December 06, 2010, 01:40:32 PM
I'm not sure what that means... Could you please show a screenshot with the problem?
Title: Re: Two Issues - RC4
Post by: fox0r on December 06, 2010, 02:46:01 PM
Sure, here you go!
Title: Re: Two Issues - RC4
Post by: Antechinus on December 06, 2010, 02:56:03 PM
My guess here (having never seen this particular party trick before) is that somehow it is showing the php states next to the checkboxes. I would assume that this is due to something being edited incorrectly in Sources/Admin.php and/or Admin.template.php. Check that all the edits to those files have been done correctly.
Title: Re: Two Issues - RC4
Post by: fox0r on December 06, 2010, 03:03:12 PM
I skimmed both and didn't see anything weird with them. I do have a mod that I need to uninstall that gave me a bit of problems when I installed it.  It has a new version out..So let me work on that and we'll see if that decided to fix it (or I can then at least rule out that it's that mod doing it).
Title: Re: Two Issues - RC4
Post by: fox0r on December 06, 2010, 04:00:28 PM
That seems to have fixed it.  Thanks for your help!