Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/15/2015 in all areas

  1. A draft feature like the invoices however would be a nice idea.
    1 point
  2. 2 New order forms added -Backupsy -Startup
    1 point
  3. What you've described is how it works. Yes, it sounds like what you have setup should be working just fine.
    1 point
  4. If you don't want to update core files, you can write a plugin that adds a widget to the client dashboard similar to the Invoices, Transactions, and Services widgets. Otherwise, you'll need to update core files to make the data you want available to that template. To do so, open the ClientMain controller in /app/controllers/client_main.php. Find: $this->set("client", $this->client); Above that line add: $this->set("max_due_currency", (isset($max_due_currency) ? $max_due_currency : null)); $this->set("max_due_amount", (isset($max_due_amount) ? $max_due_amount : null)); Open up the client_main.pdt template you mentioned, and use the CurrencyFormat helper to format the amount due, e.g.: <?php if ($this->Html->ifSet($max_due_currency) && $this->Html->ifSet($max_due_amount)) { ?> <p><?php echo $this->CurrencyFormat->format($this->Html->ifSet($max_due_amount), $this->Html->ifSet($max_due_currency));?></p> <?php } ?>
    1 point
  5. You can enable error reporting in your config/blesta.php by changing Configure::errorReporting(0); to Configure::errorReporting(-1); Then, try running the cron manually under Settings > System > Automation and see if there are any errors. You may need to temporarily disable your cron from running automatically and wait a while to run it manually.
    1 point
  6. the plugins navigation links in Blesta are stored in the database, therefore, to modify their links, you have to modify their records in your db: Blesta database >> plugin_actions Table >> look for the record where action = nav_primary_client >> modify the uri field to your desired value. to modify the sub links you have to modify the options field of the same record.
    1 point
  7. Thanks for info, It's just happen once for my first paid customer that buy monthly license to use (my blesta is using for that universal module + license module), and customer did not paid for renewall. I will be checking other following customers in the next weeks as none other paid package expired yet And just to be certain to understand the meaning of package option "cancel at end of terms" - My free service (14-day trial) do have this option ticked - My 3 paid service (monthly or yearly or lifitime) do have this option unticked (I was thinking when not paid they will be suspended, but still will be able as admin to unsuspend, or if customer paid late it's will be auto unsuspended) I have one package by terms, there is no option to swich from one to an other (I did not wanted as not certain it will be working fine), and customer can not cancel service from client area. So I suppose such kind of above parameters/setup I did should be very neutral as customers can not upgrade from one to an other (I wanted safety at blesta side) but customer can just order an other package.
    1 point
  8. @ PauloV YES, that FIXED IT !!!! And for those reading this, the problem identified and solved by Paulo V was in the original LiveHelperChat php core files, which means this solution PauloV provided shows just how well he knows his stuff !!!! You're AMAZING PAULO V !!!!!!! THANKS !!!
    1 point
  9. Gave it a test last night and everything imported with no issues. Good work so far guys!
    1 point
×
×
  • Create New...