Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/23/2015 in all areas

  1. is supper if blesta add option to allow the admin setup a Convenience fees for every gateway , that way the customer pay this fees . this can be against some laws , but is not in all countries . a option to enable/disable will be great . if you running a huge buseniss client based , this small fees can be a big obstacle for making some competitive prices . the problematic , is that the fees is not unified in all gateways , so we can't make a price in consideration with this fees .
    1 point
  2. jh4nn

    Multicraft Bug

    Got it fixed already. I had to re-check the port for SSL . Got another bug, the mail is sending fine now, server is activating as it should do but the panel username and password are not in the mail.. Username: {service.multicraft_login_username} Password: {service.multicraft_login_password} What is the problem?
    1 point
  3. Yeah sadly, haha but this is no way for WHM** to pay their customers back for all the damage they've done to them so far.
    1 point
  4. Yeah they are probably doing it because cPanel need their money back because they invested a lot into it to find out it's not giving much back, or they are power hungry like their faster support for $30 per ticket.
    1 point
  5. for hide completelly service table to given group(s): this not tested code should work, it's use bootstrap theme but you should do a full copy off the boostarp theme and remane it, and in blesta admin interface, select this custom theme...if not at each blesta update if there is change in bellow file, you will be losing customization file to customize: BLESTA-INSTALL/app/views/client/bootstrap/client_services.pdt if ($package_group->id == "4" OR $package_group->id == "10" OR $package_group->id == "12" OR $package_group->id == "14" OR $package_group->id == "16" ) { // nothing to display }else { // Display service table // START SERVICES TABLE <div class="table-responsive"> <table class="table table-curved table-striped-alt table-hover" id="services"> <thead> <tr> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->ifSet($status) . "/?sort=name&order=" . ($sort == "name" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "name" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_package");?></a></th> <th><?php $this->_("ClientServices.index.heading_label");?></th> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->ifSet($status) . "/?sort=term&order=" . ($sort == "term" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "term" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_term");?></a></th> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->ifSet($status) . "/?sort=date_added&order=" . ($sort == "date_added" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "date_added" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_datecreated");?></a></th> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->ifSet($status) . "/?sort=date_renews&order=" . ($sort == "date_renews" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "date_renews" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_daterenews");?></a></th> <?php if ($this->Html->ifSet($status) != "canceled") { if ($this->Html->ifSet($status) == "suspended") { ?> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->_($status, true) . "/?sort=date_suspended&order=" . ($sort == "date_suspended" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "date_suspended" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_datesuspended");?></a></th> <?php } ?> <th><?php $this->_("ClientServices.index.heading_options");?></th> <?php } else { ?> <th><a href="<?php echo $this->Html->safe($this->base_uri . "services/index/" . $this->Html->_($status, true) . "/?sort=date_canceled&order=" . ($sort == "date_canceled" ? $negate_order : $order));?>" class="ajax<?php echo $this->Html->safe($sort == "date_canceled" ? " " . $order : "");?>"><?php $this->_("ClientServices.index.heading_datecanceled");?></a></th> <?php } ?> </tr> </thead> <tbody> <?php // List all services for ($i=0; $i<$num_services; $i++) { ?> <tr class="expand service_info"> <td><?php $this->Html->_($services[$i]->package->name);?></td> <td><?php $this->Html->_($services[$i]->name);?></td> <td> <?php if ($this->Html->ifSet($services[$i]->package_pricing->period) == "onetime") $this->Html->_($periods[$services[$i]->package_pricing->period]); else { $term = $this->Html->_($services[$i]->package_pricing->term, true); echo $this->Html->safe($this->Html->concat(" ", $term, ($term == 1 ? $this->Html->ifSet($periods[$services[$i]->package_pricing->period]) : $this->Html->ifSet($periods[$services[$i]->package_pricing->period . "_plural"])))); } ?> </td> <td><?php echo $this->Date->cast($this->Html->_($services[$i]->date_added, true));?></td> <td> <?php echo (empty($services[$i]->date_renews) ? $this->_("ClientServices.index.text_never", true) : $this->Date->cast($services[$i]->date_renews));?> <?php if ($this->Html->ifSet($status) != "canceled" && !empty($services[$i]->date_canceled) && $this->Date->toTime($this->Date->cast($services[$i]->date_canceled)) > $this->Date->toTime($this->Date->cast(date("c")))) { ?> <a href="#" data-toggle="tooltip" title="<?php $this->_("ClientServices.manage.text_date_to_cancel", false, $this->Date->cast($services[$i]->date_canceled));?>"><i class="fa fa-clock-o text-primary"></i></a> <?php } ?> </td> <?php if ($this->Html->ifSet($status) != "canceled") { if ($this->Html->ifSet($status) == "suspended") { ?> <td><?php echo (empty($services[$i]->date_suspended) ? $this->_("ClientServices.index.text_never", true) : $this->Date->cast($this->Html->_($services[$i]->date_suspended, true)));?></td> <?php } ?> <td> <div class="btn-group"> <a href="<?php echo $this->Html->safe($this->base_uri . "services/manage/" . $this->Html->ifSet($services[$i]->id) . "/");?>" class="btn btn-xs btn-default"> <i class="fa fa-cog fa-fw"></i> <?php $this->_("ClientServices.index.option_manage");?> </a> </div> </td> <?php } else { ?> <td><?php echo (empty($services[$i]->date_canceled) ? $this->_("ClientServices.index.text_never", true) : $this->Date->cast($this->Html->_($services[$i]->date_canceled, true)));?></td> <?php } ?> </tr> <tr class="expand_details" id="services_<?php $this->Html->_($services[$i]->id);?>"> <td colspan="7" class="subtable"> </td> </tr> <?php } ?> </tbody> </table> </div> // END SERVICES TABLE } // END of "if" all code between // START SERVICES TABLE // END SERVICES TABLE is same as in original file, so you have to locate this block in the original file Other, you have also to specify just before this block what group number you want service table be hidden, you can know group number from blesta admin interface when editing a group, in the URL there will be the group number.
    1 point
  6. Here is mine https://online.spaceweb.eu/client/login/ Check it
    1 point
  7. Tyson

    Coupon Bug?

    This will be fixed in v3.5.0
    1 point
×
×
  • Create New...