Jump to content

BlacklightJDR

Members
  • Posts

    7
  • Joined

  • Last visited

Reputation Activity

  1. Like
    BlacklightJDR reacted to Michael in Logic Boxes And Resellerclub   
    Edit the following file: /components/modules/logicboxes/config/logicboxes.php
  2. Like
    BlacklightJDR reacted to Paul in Cpanel Extended Module   
    We have updated cPanel extended for Blesta 3.2 so that it's compatible with the bootstrap conversion, however we're not going to be doing much with it going forward. We are however, going to be adding a lot of the extended features to our cPanel module. Unfortunately, there's no way to switch between the two. If our module will work for you for now, I'd suggest using it instead.
  3. Like
    BlacklightJDR reacted to Daniel B in Multiple Order Forums On Client Portal   
    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 %}
×
×
  • Create New...