Page 1 of 1

How to Move the "View entire Knowledgebase" Button?

Posted: Mon Nov 29, 2021 5:53 pm
by ArcherData
Script URL: https://archerdatahosting.com/helpdesk
Version of script: 3.2.4
Hosting company: Archer Data Hosting (https://archerdatahosting.com)
URL of phpinfo.php: https://archerdatahosting.com/serverprofile.php
URL of session_test.php: ?
What terms did you try when SEARCHING for a solution: move button

Write your message below:

Is there a way to move the button labeled "View entire Knowledgebase" from the bottom of the page to before, next to, or after the "top articles" button above the fold? Users tend to not notice it at the bottom of the screen.

Re: How to Move the "View entire Knowledgebase" Button?

Posted: Wed Dec 01, 2021 4:13 pm
by Klemen
You will need to edit the "theme/hesk3/customer/index.php" file for that.

The code that prints the button is

Code: Select all

                    <div class="article__footer">
                        <a href="knowledgebase.php" class="btn btn--blue-border" ripple="ripple"><?php echo $hesklang['viewkb']; ?></a>
                    </div>
Cut and paste it somewhere towards the top (you may need a bit of HTML knowledge to find the right spot)

Re: How to Move the "View entire Knowledgebase" Button?

Posted: Sat Dec 04, 2021 2:08 am
by ArcherData
Thank you! It worked perfectly. I left the original and inserted an additional button below the Knowledgebase at the top of the page.