Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/08/2014 in all areas

  1. Hey guys- New user here- I discovered Blesta on Friday and quickly signed up after about a month of debating on how I am going to manage my growing client's hosting. We primarily focus on fully-managed solutions and optimized hosting solutions and I have been looking for a highly configurable, but usable out of the box solution, that really doesn't automate everything (as we're a hands on web dev company) but had the capability, and this is it! I spent the weekend plugging in my clients, linking my Stripe account, building service plans, etc, and best of all, personalizing the client dashboard and login screen (I've modded the admin a bit, but really not necessary). I am a front-end developer with a lot of CSS experience and basic PHP experience... enough to tweak and move stuff around comfortably, but I don't program. Here is the result of my personal integration for my clients. Basically- I widened the template, removed all of border radius' and shadows, removed the chunky top sections, modified the client_main_myinfo to incorporate a photo (which is static for now, my programmer will make that account specific, set by the admin, in the weeks to come) and rearranged some of the functions, and basically changed the font and colors on everything. This is just a start- We're going to run client account info down the left as part of main_myinfo, and tweak it a bit more. We'll eventually modify the package order forms before we roll out the ability to sign up from our website. We also do graphic/print work, so we may modify the support system to allow for requests that include text fields and drop downs for graphic type products (ie. asking the client what type of product, what size, what amount, etc) I am not happy with my CSS mods of the login page, it will likely change. It looks nice, but it's not perfect. I've really enjoyed modifying Blesta- the php and css is very clean and easy to work with! See attached. Feedback greatly appreciated! Craig
    5 points
  2. Tyson

    New Plugin (Faq)

    The knowledge base has already been completed for v3.4. If any tweaks need to be made to it, that will happen during beta. Additional features, like interfasys mentioned, would come in another version.
    3 points
  3. Job done, I am now piping all over the place. Thanks for the support
    2 points
  4. Hello The community LAST UPDATE : 23-08-2014 First i dont know if this is the correct forum to post ! another time we are happy to announce the release of the first professional Template for blesta called admin LTE , this Template is based in the adminLTE , is bootsrap of course (3.1.x) . to not talk so much i will let you with some screenshoot . Login Page Client Dashboard Client Other Pages when we get more time we will word in the admin side , but we need to add ability to select template for admin side like client side . any BUG/SUGGESTION port it in this thread . you can download it from github https://github.com/Blesta-Addons/adminlte just upload the folder adminlte inside the folder "app/views/client/" and select the template from admin area . THE BONUS : the color theme can be changed from admin side in look and feel , client section . if you like our work , thanks or donate
    1 point
  5. When is the invoice due? Based on your screenshots, it looks like the service should be suspended 5 days after an invoice has passed its due date. And since your service was added on Dec 1 and suspended on Dec 6, I would think that the invoice was created Dec 1 and set to be due on Dec 1 as well. If that's the case, then this would be expected behavior.
    1 point
  6. Tyson

    Not Working Admin Page

    If you just upgraded Blesta, make sure you run /admin/upgrade in your browser. If you already ran the upgrade, then enable error reporting in your config file (/config/blesta.php) by setting... Configure::errorReporting(-1); ...toward the top of the file. If there are errors causing the page not to load, then you should be able to see what they are afterward. It would be useful to know what errors are being generated.
    1 point
  7. No it's not Yours "mailparse" isn't found. It should show: I recommend moving hosts.
    1 point
  8. RRWH

    Customizing Blesta Interface

    After reading the excellent Site integration tutorial - I quickly came to realize that we can modify almost all aspects of the Site. WARNING WARNING WARNING - ALWAYS MAKE A BACKUP BEFORE MODIFYING ANY FILES There are a LOT of *pdt files within a blesta install, and the one you want to modify is usually pretty easy to find. From the doc root of your Blesta install, simply do the following # find . -name "*pdt" This will give you a list of ALL the PDT files used for the presentation of the site. Now, say you have a little specific mod you want to do (and yes) I did. The Mod I wanted to make was really quite simple - it is on the Support page. (Portal -> Support) We are setting up several Support departments - we only have a single Support department listed where you can raise a request without being logged in, all other departments you need to be logged in. As it is not obvious, we wanted to add a little bit of extra text to the page. First, look at the URL of the Page you are going to: https://yoursite/client/plugin/support_manager/client_tickets/departments/ next list ALL the pdt files so we can identify what we want to modify, we went looking thru the list for a file that was a close match to the page path. ./plugins/support_manager/views/default/client_tickets_departments.pdt looked to be a likely candidate for what we were trying to achieve. First thing, we make a backup of the original file, just in case we mess it up and can easily revert to the original # cp client_tickets_departments.pdt client_tickets_departments.pdt_orig Then with your favorite editor, modify the file. We wanted to add a very simple message to the page <div style="margin: 0 0 0 4em"><p><br />Existing Clients, Please login to see all Support departments</p></div> Well, we took a moment, looked over the code and found what appeared to be the place where we wanted to add the text to the page. <div class="heading first"> <h5><?php $this->_("ClientTickets.departments.heading_details");?></h5> </div> <div style="margin: 0 0 0 4em"><p><br />Existing Clients, Please login to see all Support departments</p></div> <div id="departments" class="pad"> Now, when you go to Portal -> Support you will see what we added (see the attached Image) - In this case, it was pretty east to see where within the pdt file we needed to make the addition. Pretty Simple! The Final Step - remember, if you do an update or install a newer version that your mods may be removed. You should also be keeping a document somewhere of what files you modify and exactly what you changed, so in the event that an upgrade replaces the file you modified, you can easily put your changes back in place - and of course, making a copy of the files you modified as well is probably a good idea as well. Looking forward to seeing some of the other customization's that everyone does.
    1 point
×
×
  • Create New...