Jump to content

JNdev

Members
  • Posts

    120
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by JNdev

  1. We are pleased to announce the release of our new blesta client theme, designed with a fresh new look cloud model and user-friendly display. We hope you will enjoy with our new blesta theme. Lutfi Cloud it’s perfectly suitable for Cloud Hosting or any other business hosting. It’s is a fully responsive and it works nicely on smartphones, PC’s and Laptops. Easy-to-customize and fully featured design. --------------------------------------------------------------------------------------- Main Feature Bootstrap Latest Version 3.3.7 Fixed And Static Header Super Fast Html5 & Css3 Blesta 3 And 4 Ready Always Compatible With Latest Blesta Ultra Responsive Well written & commented code & many more updates coming soon ------------------------------------------------------------------------ You Get Free Lifetime Update Blesta Custom Order Form Real Super Friendly Support Free Feature Request If you have basic html skill you can create unlimited header/footer combination without editing css. ------------------------------------------------------------------------- Buy Now $40 ------------------------------------------------------------------------- Free installation & customization like rearrange the menu, add remove widget or sidebar. We always consistent help the problems with our lutfi cloud template. Have any idea, feature request, questions and more info please don't hesitate to contact us hendra@jnhost.co.id Or submit ticket We are always happy to hear from you. Thank you so much to @Blesta Addons helped me make some functions, @Blesta Addons recomended #1 blesta developer.
  2. Add SEO-Friendly Site URL Structure Main web Fix Reported Bug Version 1.0.2 - Fix Double Menu - Rebuild main JS - Fix Js Not Load - Blesta
  3. Bootstrap 3 Responsive 4 Footer, if boots4 alpha use col-lg-3 <footer class="myfooter"> <div class="col-md-3"> Content Here </div> <!-- Column 1 --> <div class="col-md-3"> Content Here </div> <!-- Column 1 --> <div class="col-md-3"> Content Here </div> <!-- Column 1 --> <div class="col-md-3"> Content Here </div> <!-- Column 1 --> </footer>
  4. Glad to hear if it is successful. Maybe I'm misunderstanding with your intent.
  5. Yes this been quite helpful, at least a get to see more views . And give back the spirit to develop more theme
  6. I'm not sure about this, because any error messages are gathered in one function.
  7. Wow, it works well with if (!isset($this->Session)) { Loader::loadComponents($this, ["Session"]); } Thank you sir naja7, this is very helpful to me, although it can not be on all pages.
  8. Hi sir turner Like my intructions open structure.pdt on app/views/client/bootstrap After opened, scroll to bottom, you see </body> </html> Add login modal before </body> like this <?php echo $this->Javascript->getFiles("body");?> <?php echo $this->Javascript->getInline();?> <?php echo $this->Html->ifSet($body_end);?> <!-- Start Login Modal --> <div class="modal fade" id="myModalForm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <h4 class="modal-title" id="myModalLabel"> Modal title </h4> </div> <!-- Modal Body --> <div class="modal-body"> <!-- ==================Change This Url With Your Own Blesta Url =====================--> <form method="post" action="http://blesta-domain-url.com/client/login"> <!-- ==================Change This Url With Your Own Blesta Url =====================--> <div class="form-group"> <label class="sr-only">Username or Email</label> <input type="text" name="username" id="login_username" class="form-control" placeholder="Username or Email"> </div> <div class="form-group"> <label class="sr-only">Password</label> <input type="password" name="password" id="login_password" class="form-control" placeholder="Password"> </div> <div class="form-inline form-group"> <button type="submit" class="btn btn-primary btn-block">Login</button> </div> <a href="#"><small>Lost your Password?</small></a> </form> </div> <!-- Modal Footer --> <div class="modal-footer"> <button type="button" class="btn btn-sm btn-warning" data-dismiss="modal"> Close </button> </div> </div> </div> </div> <!-- End Login Modal --> </body> </html> You can call Modal on any page . Other answer done by pm.
  9. Hello If you already know the template that you use, then follow these steps. Open header and footer template file, or using blesta theme open structure.pdt on app/views/client/your-theme 1. Add data-target="#login-modal" data-toggle="modal" to your button link 2. Finally like <a href="#" data-toggle="modal" data-target="#myModalForm" class="btn btn-primary">LOG IN</a> 3. You can put this code to bottom page before </body> or put after button modal <!-- Start Login Modal --> <div class="modal fade" id="myModalForm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">×</span> <span class="sr-only">Close</span> </button> <h4 class="modal-title" id="myModalLabel"> Modal title </h4> </div> <!-- Modal Body --> <div class="modal-body"> <!-- ==================Change This Url With Your Own Blesta Url =====================--> <form method="post" action="http://blesta-domain-url.com/client/login"> <!-- ==================Change This Url With Your Own Blesta Url =====================--> <div class="form-group"> <label class="sr-only">Username or Email</label> <input type="text" name="username" id="login_username" class="form-control" placeholder="Username or Email"> </div> <div class="form-group"> <label class="sr-only">Password</label> <input type="password" name="password" id="login_password" class="form-control" placeholder="Password"> </div> <div class="form-inline form-group"> <button type="submit" class="btn btn-primary btn-block">Login</button> </div> <a href="#"><small>Lost your Password?</small></a> </form> </div> <!-- Modal Footer --> <div class="modal-footer"> <button type="button" class="btn btn-sm btn-warning" data-dismiss="modal"> Close </button> </div> </div> </div> </div> <!-- End Login Modal --> Let me know if you are successful
  10. Stuck with theme switcher :(

  11. First you need Go to /config/blesta.php find the following line just at the bottom of the page: Configure::set("Blesta.csrf_bypass", array()); and replace it with: Configure::set("Blesta.csrf_bypass", array('client_login::index')); Do you use a bootstrap to put modal login?
  12. I have this code but not work and place on client controller, suggestion from my friend naja7 aka @Blesta Addons I mean can switch theme from browser Eg domain.com/?theme=bootstrap-1, domain.com/?theme=bootstrap-2 etc /*===================== Theme Switcher ========= */ $style = null; $stylesArr = array('bootstrap', 'theme-1', 'theme-2', 'theme-3'); // Get from URL as override if(isset($_GET['theme']) && isset($stylesArr[$_GET['theme']])) { $style = 'client/' . $_GET['theme']; } // Fallback condition Set Default Theme if (empty($style)) { $style = 'client/bootstrap'; //Set Back To Default Theme } // Get from cookie if(isset($_COOKIE['theme']) && isset($stylesArr[$_COOKIE['theme']])) { $style = 'client/' . $_COOKIE['theme']; } // Update cookie $expiration = time() + 60 * 60; // Expire in 1 hour setcookie('theme', $style, $expiration); // Set Theme For Blesta $this->setDefaultView($style); /* =================== Theme Switcher ========= */ All help are welcome and greatly appreciated
  13. Try #create_ticket textarea { font-size: 170%; }
  14. I assume you mean admin view Open theme.css on /app/views/admin/default/css Add this to top or bottom textarea { font-size: 20px; font-weight: 500; } You can change font-size:20px with your own eg: font-size:18px
  15. blestacms is best solution, and you can get free template.
  16. Version 2 Now Available Add kit order form (Kit Wizard with sidebar menu) What's new? Added Sidebar Menu 20 bug fix with blesta 4 Replace original jquery.sticky.js from blesta with theia-sticky-sidebar.js Update Bootstrap to latest stable 3.3.7 Replace jQuery Animation With Hardware Accelerated Sticky Box Order Summary Deletion Unused Jquery Color changed on blesta demo And More
  17. I have been deadlocked with jquery.sticky.js for stick sidebar, because covered the footer or all down element. How to prevent sticky element to scroll down until it reaches the footer? I would like to limit it to the container or row . I'm not really expert with jquery var height = $('#footer').height(); $("#sticker").sticky('update'); If can, i recommen use sticky plugin from theia Sticky or http://leafo.net/sticky-kit/ , because from leafo have complete option.
  18. Welcome blesta 4 Lutfi Theme 100% free. Written more than 300 element and write with love Its clean design & powerful premium functionality allows you to creating profesional hosting site. Designed for starup hosting, small hosting company to save expenses Easy to change colors of elements, modify the parameters of elements, also you can add more shortcode from basic bootstrap element up to 100+ combination. Free But Premium Features? Completed HTML Demo File Powerful, Minimal and Clean Design Include features for hosting site Bootstrap 3.3.7 Super Responsive User-friendly & 100% validate Code Sticky Header Mega Menu Font Awesome icons Flat icons Themefy icons Fully customization Minimum Blesta 3.6.2 Download Lutfi Demo Main Site | Blesta Demo Ony Image More functionality & active support? This theme is free version from Kit Material Theme Note: Element not same with kit Need integration, customization or rebuild theme? please don't hesitate to contact us hendra@jawanet.com Or Submit Ticket
×
×
  • Create New...