Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/29/2014 in Posts

  1. Cody

    Release 3.4.0

    Version 3.4.0 is now available. You can download it in the Client Area. Installing Blesta See Installing Blesta in the User Manual for instructions. Upgrading Blesta See Upgrading Blesta in the User Manual for instructions. Migrating to Blesta See Migrating to Blesta in the User Manual for instructions. Overview Client Contact Logins Two Factor Authentication for Clients and Contacts Knowledgebase via the Support Manager plugin Tons more... PHP 5.5+ Users Included in this release is a /hotfix-php5.5/ directory. Please use this directory to overwrite the default /blesta/app/app_controller.php, /blesta/app/app_model.php, and /blesta/app/models/license.php files. Release Notes See Blesta Core - Version 3.4.0-b1. See Blesta Core - Version 3.4.0-b2. See Blesta Core - Version 3.4.0. For older releases see all Change Logs.
    4 points
  2. tenaki

    Remove Tax Id/vatin

    Blimey didn't have to wait long 3.4 Released today @ 07:37 PM
    2 points
  3. Tyson

    Some Email Tags Dont Work.

    FYI, docs on the cPanel welcome email tags can be found in the documentation.
    2 points
  4. A task has already been created to support this behavior, but it has not yet been completed. See CORE-1269.
    2 points
  5. Tyson

    Navigation Label Icon

    Icons shown in navigation links in the client interface are defined in /app/models/navigation.php. In the admin interface, they are set in the associated template where it is displayed.
    2 points
  6. Tyson

    Remove Tax Id/vatin

    The Tax ID is not required. And as mentioned, can be removed using a setting available in v3.4.0.
    2 points
  7. It's possible, but it's not natively supported. It would require you to make core changes, which will be overridden during upgrades. You would need to maintain the changes in your installation. Amounts are displayed in several places across the admin/client interfaces, but for brevity I'll give an example of one place on the Wizard order form. The other order forms (i.e. Standard/AJAX) would need to be updated similarly. This example will change the price display on the Wizard order form's drop-down menu for Term and Price. This will show prices using the per-month price rather than the price for all months combined. Open /plugins/order/views/templates/wizard/config.pdt Find (line 37): $prices[$price->id] = $this->_("Config.index.package_price", true, $period, $this->CurrencyFormat->format($price->price, $price->currency)); Replace with: $amount = $price->price; if ($price->period == "month" && $price->term > 0) $amount = ($price->price/$price->term); $prices[$price->id] = $this->_("Config.index.package_price", true, $period, $this->CurrencyFormat->format($amount, $price->currency));
    2 points
  8. Updated to the version 3.2 Portal! I believe that Paul mentioned somewhere that they are currently working on a better method for allowing clients to place multiple orders (domain + hostng, etc) from one order page...but until then, I figured I would share my portal page edits with everyone. This rearranges things a little bit, and then adds a separate link for different order forms...to allow clients to pick which one they want directly from the portal page. (in this example, the Register link will be whatever you set as the default order form...so I would suggest creating a registration order form for this). You can of course add in as many order forms as you want, it should be fairly obvious how to do so if you read the code...however, if anyone has any trouble, I'm happy to help generate the needed code for your specific situation . End Result: In order to implement this: Go to Settings > Plugins > Manage Portal the replace the Index Page Content with the below: (you will need to edit the direct links to each of your order forums, the example below is for my site...you'll have different links) {% if plugins.order %}<div class="col-md-4 col-sm-6 portal-box"> <a href="{blesta_url}order/"> <div class="well"> <i class="fa fa-cogs fa-4x"></i> <h4>Register</h4> <p>Don't have an account? Create one now. Or you can create one while ordering a package later.</p> </div> </a> </div>{% endif %} <div class="col-md-4 col-sm-6 portal-box"> <a href="{client_url}login/"> <div class="well"> <i class="fa fa-cogs fa-4x"></i> <h4>My Account</h4> <p>Have an account with us? Log in here to manage your account.</p> </div> </a> </div> {% if plugins.support_manager %}<div class="col-md-4 col-sm-6 portal-box"> <a href="{client_url}plugin/support_manager/client_tickets/add/"> <div class="well"> <i class="fa fa-ticket fa-4x"></i> <h4>Support</h4> <p>Looking for help? You can open a trouble ticket here.</p> </div> </a> </div>{% endif %} {% if plugins.download_manager %}<div class="col-md-4 col-sm-6 portal-box"> <a href="{client_url}plugin/download_manager/"> <div class="well"> <i class="fa fa-download fa-4x"></i> <h4>Download</h4> <p>You may need to be logged in to access certain downloads here.</p> </div> </a> </div>{% endif %} {% if plugins.order %}<div class="col-md-4 col-sm-6 portal-box"> <a href="{blesta_url}order/main/packages/shared/?group_id=1"> <div class="well"> <i class="fa fa-shopping-cart fa-4x"></i> <h4>Order Shared Hosting</h4> <p>Start your presence on the web, order a web hosting package today!</p> </div> </a> </div> <div class="col-md-4 col-sm-6 portal-box"> <a href="{blesta_url}order/main/packages/reseller/?group_id=2"> <div class="well"> <i class="fa fa-shopping-cart fa-4x"></i> <h4>Order Reseller Hosting</h4> <p>Shared hosting not enough for you, need to host your own clients? A Reseller plan will be perfect.</p> </div> </a> </div> <div class="col-md-4 col-sm-6 portal-box"> <a href="{blesta_url}order/config/preconfig/domains"> <div class="well"> <i class="fa fa-shopping-cart fa-4x"></i> <h4>Order a Domain Name</h4> <p>It's always good to have your own place on the net...so get your domain before someone else does.</p> </div> </a> </div>{% endif %}
    1 point
  9. Jonathan

    Setting Cron > Plesk

    crontab -e -u <username>
    1 point
  10. Sndan

    Navigation Label Icon

    So it is only defined Manually? There is no backend interface to do so?
    1 point
  11. What is shown under [Tools] -> [Logs] when you click on the table row related to the service being provisioned with GoGetSSL?
    1 point
  12. The system settings nav was updated in 3.4.0-b2 to use the marketplace URL from the config file, however, the value in the config file is not set until v3.4.0. The message you received should have been a PHP warning--not an error--so you may not have been able to view the links because of your error reporting level.
    1 point
  13. Michael

    Setting Cron > Plesk

    Try: env php -q /var/www/vhosts/yatosha.com/httpdocs/billing/index.php cron or: extension_dir /var/www/vhosts/yatosha.com/httpdocs/billing/index.php cron Get extension_dir from a phpinfo page.
    1 point
  14. Joseph H

    Remove Tax Id/vatin

    That feature is already on the 3.4.0-b1, you can simply disable it from client groups. You can wait for the final 3.4.0 as currently its still in beta
    1 point
  15. You can create a recurring invoice by creating a manual invoice and selecting to make it recurring. If you want a service that renews and customers can order, then you can use the Universal Module. Just create a Universal Module product under Settings > Company > Modules > Universal Module that has a name. If you require the customer enter any details during checkout for the service, create service fields for the Universal Module product.
    1 point
  16. Yeah, the ability to disable the Tax ID field is in 3.4, which is likely to be officially released tomorrow, Mon Dec 28th. As Joseph mentioned, there are custom fields as well. The other default fields will be able to be enabled/disabled/required in a future update. The biggest complaint was the Tax ID field so we tackled that first.
    1 point
  17. Michael

    Some Email Tags Dont Work.

    Double check it I paste the content into the text area, and the copy it into the html box and edit as please.
    1 point
×
×
  • Create New...