SLIBINAS Posted March 4, 2020 Report Posted March 4, 2020 Hello, I want to edit this navigation bar, I want to add some more links to this navigation bar, how I can do that?
0 Tyson Posted March 4, 2020 Report Posted March 4, 2020 You can create a plugin that registers actions which will appear in the navigation as described in the documentation.
0 SLIBINAS Posted March 4, 2020 Author Report Posted March 4, 2020 18 hours ago, Tyson said: You can create a plugin that registers actions which will appear in the navigation as described in the documentation. Ohh, i have weakest skills on PHP programming, So I don't know I can make it. Is there any chance to edit original files?
0 Michael Posted March 5, 2020 Report Posted March 5, 2020 4 hours ago, SLIBINAS said: Ohh, i have weakest skills on PHP programming, So I don't know I can make it. Is there any chance to edit original files? You can use my Community Edition plugin to do this... It's called the BlestaCMS. Follow the docs on https://cms.blesta.how and you can use the blesta nav bit to add links to the navigation.
0 SLIBINAS Posted March 5, 2020 Author Report Posted March 5, 2020 12 hours ago, Blesta.Store said: You can use my Community Edition plugin to do this... It's called the BlestaCMS. Follow the docs on https://cms.blesta.how and you can use the blesta nav bit to add links to the navigation. Hello, already stuck on BlestaCMS Installation, I can't find download link in this documentation.
0 Michael Posted March 5, 2020 Report Posted March 5, 2020 10 minutes ago, SLIBINAS said: Hello, already stuck on BlestaCMS Installation, I can't find download link in this documentation. https://blesta.store click the button but even on the docs it says Purchase and on the page you can click the free open source version.
0 SLIBINAS Posted March 5, 2020 Author Report Posted March 5, 2020 53 minutes ago, Blesta.Store said: https://blesta.store click the button but even on the docs it says Purchase and on the page you can click the free open source version. Okay, I think I already installed BlestaCMS but now all my blesta website broken. I can't get in my website, I got HTTP ERROR 500.
0 Michael Posted March 5, 2020 Report Posted March 5, 2020 4 minutes ago, SLIBINAS said: Okay, I think I already installed BlestaCMS but now all my blesta website broken. I can't get in my website, I got HTTP ERROR 500. 500 error is an internal server error you'll need to look at your error_log.
0 SLIBINAS Posted March 5, 2020 Author Report Posted March 5, 2020 10 minutes ago, Blesta.Store said: 500 error is an internal server error you'll need to look at your error_log. I turn on Blesta debugging, still I got this error. I check: Blesta logs, /var/log/nginx/access.log, /var/log/nginx/error.log, nor /var/log/nginx/php_errors.log And don't get any information, I don't know which error_log I need to open to see exactly problem.
0 Michael Posted March 5, 2020 Report Posted March 5, 2020 2 minutes ago, SLIBINAS said: I turn on Blesta debugging, still I got this error. I check: Blesta logs, /var/log/nginx/access.log, /var/log/nginx/error.log, nor /var/log/nginx/php_errors.log And don't get any information, I don't know which error_log I need to open to see exactly problem. I don't use Nginx but I know it's your server error_log if you don't have a control panel with one to look into. A server error isn't something I can help with unless I have an error.
0 SLIBINAS Posted March 5, 2020 Author Report Posted March 5, 2020 15 minutes ago, Blesta.Store said: I don't use Nginx but I know it's your server error_log if you don't have a control panel with one to look into. A server error isn't something I can help with unless I have an error. I attach error log image. When I installed CMS and tried to launch website.
0 SLIBINAS Posted March 6, 2020 Author Report Posted March 6, 2020 On 3/5/2020 at 3:28 PM, Blesta.Store said: I don't use Nginx but I know it's your server error_log if you don't have a control panel with one to look into. A server error isn't something I can help with unless I have an error. I don't going to use BlestaCMS because it's corrupted all my Blesta engine. Is there any change how I can edit navigation bar?
0 zulfikar wijaya Posted June 30, 2020 Report Posted June 30, 2020 Hi, I'm not coder or programmer (and cant speak english well too), but maybe you can try this : 1. Copy your template to another template name or backup your template, just in case something gone wrong 2. If needed, change client template views to new template (from admin dahsboard: Settings - Look and Feel - Template - Client Template) 3. In new template, open file structure.pdt (in yourblestadomain/yourblestafolderifexist/app/views/client/yourtemplatename/structure.pdt) 4. Find line <ul class="nav navbar-nav navbar-right"> around line 190; this is user menu block code which show Login/Logout/UserMenu in right side client navigation 5. Above that code, add your links with html code unordered list (use same css class with main menu) for example : <ul class="nav navbar-nav"> <li><a href="https://yourdomain.com/blog/">Blog</a></li> <li><a href="https://yourdomain.com/kontak/">Message Us</a></li> <li><a href="https://anythingurl.com/">anything</a></li> </ul> or add html code unordered list without class in to main navigation block (before </ul>) <?php } ?> // Above is main navigation menu block <li><a href="https://yourdomain.com/blog/">Blog</a></li> <li><a href="https://yourdomain.com/kontak/">Message Us</a></li> <li><a href="https://anythingurl.com/">anything</a></li> </ul> // Below is user profile menu block <ul class="nav navbar-nav navbar-right"> <?php if ($this->Html->ifSet($logged_in)) { ?> <li class="dropdown"> 6. Save and check your blesta client page Jono and Deactivat3d 2
Question
SLIBINAS
Hello, I want to edit this navigation bar, I want to add some more links to this navigation bar, how I can do that?
12 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now