Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Forum topic as a link to the custom page

Asked Modified Viewed 1,860 times
W
wfczesio
W
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
asked
Newbie

How to do that when you click on forum topic brings us to the custom page?
0 replies

6 posts

C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

This is a requested feature, yet. :) It requires core to be modified.
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

This request is a bit weird reminds me of this one...
https://www.php-fusion.co.uk/forum/viewthread.php?thread_id=34970

I mean why would a Forum Thread title link to a custom page?
Under what circumstances would this be useful to anyone?
0 replies
W
wfczesio
W
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

I am keeping a website from the forum and needs after the click to the topic so that it moves the user to the subpage.

Sorry for my English, I'm from Poland :)
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Is it for if they click on all topics?
0 replies
W
wfczesio
W
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Newbie

On one topic.
0 replies
C
Chan
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
answered
Super Admin

I think what he wants is like other forum software, where they mod it to make thread title as link (because these forum software doesn't have weblinks directory.)

Instead of a thread link opens up a thread, it goes to google or any link they want. Like site links where you put URL instead.

Right now the thread title is automatic generated to pair thread_id and forum_id.

Something like this would do:

In Forum thread admin:

1. Add a toggler - thread as link or thread as discussion.
2. If bullet checked for link, using JS to hide thread description and show URL text input. (Or just change the label to URL)
3. Add new column in DB - thread_type small int 1.
4. Thread description can be used to store URL here.

JS:

$('#thread_type').bind('change',function()
If $(this).val() == 1 { $('#thread_description.label').text('URL');
} else {
$('#thread_description.label').text('Thread Description');
}
});


In forum template (output) , hack the while $data= dbarray($result) with a thread_type condition to display the link differently.

That's how I would do it.. Just an idea.

Like I said, core mod is needed because this requires a small modification hack in admin. This was road mapped for forum infusion for v8 if not mistaken... :G
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 6 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
C
C
Chan 0
Lead Developer of PHP-Fusion
  • Super Admin, joined since
  • Contributed 3,841 posts on the community forums.
  • Started 232 threads in the forums
  • Answered 6 questions
W
W
  • Newbie, joined since
  • Contributed 6 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet