1 (edited by REDxPHOENIX 2016-07-29 02:24)

Topic: How do I change quicklinks

Hey, so I am using punbb and I recently changed my style, I am aware that one of the plugins that are automatically on punbb is custom pages, so here is my question.

How do I change the quicklinks so I can change the names of some and redirect others to different pages, for example I would change the index quicklink to say forum and maybe add another to the left of it to say home so I can make a homepage?

I am also pondered as to another situation,
how is it that it appears in the administration cp that I have a chatbox yet I cannot see one anywhere in my forums?

Re: How do I change quicklinks

If you need help , rename your theme to start. Make the subject meaningful.

There is a theme with this extension. It could be the best out there to ask?

Re: How do I change quicklinks

PanBB.Ru wrote:

If you need help , rename your theme to start. Make the subject meaningful.

There is a theme with this extension. It could be the best out there to ask?

What?

Re: How do I change quicklinks

here all need help . but users are properly called a theme.

http://punbb.informer.com/forums/topic/ … tom-pages/

Re: How do I change quicklinks

PanBB.Ru wrote:

here all need help . but users are properly called a theme.

http://punbb.informer.com/forums/topic/ … tom-pages/

I am simple looking to change the quicklinks, that's all.

Re: How do I change quicklinks

2 PanBB.Ru

Leave the patient alone with his illness.

If he doesn't understand - let him seek further ...

Re: How do I change quicklinks

sempai wrote:

2 PanBB.Ru

Leave the patient alone with his illness.

If he doesn't understand - let him seek further ...

What? Why do you all use terrible wording.

Re: How do I change quicklinks

I need help

What a question, this is the answer...

You find it hard to change the name of the theme?

Will find anyone or answer to your question among these names:
- help me!
- nothing works!
- Please help urgently!

How will people find for themselves something useful as a forum similar to the trash?

So many and can not find the answer to your question...

Re: How do I change quicklinks

PanBB.Ru wrote:

I need help

What a question, this is the answer...

You find it hard to change the name of the theme?

Will find anyone or answer to your question among these names:
- help me!
- nothing works!
- Please help urgently!

How will people find for themselves something useful as a forum similar to the trash?

So many and can not find the answer to your question...

Better?

10 (edited by PanBB.Ru 2016-07-29 04:05)

Re: How do I change quicklinks

Yes thank you. If you mean bread crumbs , then the variable is called crumbs.
Just add to the array another link:
In extension cPage open page.php and find code:

$forum_page['crumbs'] = array(
        array($forum_config['o_board_title'], forum_link($forum_url['index'])),
    $row['title']
);

Replace to:

$forum_page['crumbs'] = array(
array('Title', 'custom_url'),
        array($forum_config['o_board_title'], forum_link($forum_url['index'])),

    $row['title']
);

11 (edited by REDxPHOENIX 2016-08-01 01:44)

Re: How do I change quicklinks

PanBB.Ru wrote:

Yes thank you. If you mean bread crumbs , then the variable is called crumbs.
Just add to the array another link:
In extension cPage open page.php and find code:

$forum_page['crumbs'] = array(
        array($forum_config['o_board_title'], forum_link($forum_url['index'])),
    $row['title']
);

Replace to:

$forum_page['crumbs'] = array(
array('Title', 'custom_url'),
        array($forum_config['o_board_title'], forum_link($forum_url['index'])),

    $row['title']
);

What would this exactly do? And hoe do I get to page.php

Re: How do I change quicklinks

What I mean is that I have a plugin named custom pages and I would like to change the links on the header to one of the custom pages.