-
Posts
4,868 -
Joined
-
Last visited
-
Days Won
390
Everything posted by Blesta Addons
-
Domain Management Refactor + Ideas
Blesta Addons replied to Blesta Addons's topic in Feature Requests
package per extension , yes , you can have control of price of every extension . but can you set a different price for renew , transfer , registration ? you can't . can you offer free domain (extention) + hosting ? and the same extention is paid when it is alone (no hosting) nowadays a lot of new extension in the market , so for me a package per extension can lead to more than 100 package .... so that is a lot for maintain the package under control .- 16 replies
-
- domain management
- domain module
-
(and 1 more)
Tagged with:
-
maybe another columns like "canceled_by" and "cancel_reason" can resolve the issue . is so important . because some times we provide a trial period for some services , and the clients can remove the scheduled cancellation , and the service remain active forever !!!! we can here resolve 2 issue , 1 already addressed a years ago about cancel reason
-
How To Retain / Show Data For A Service Even After It Is "cancelled"?
Blesta Addons replied to Fantasma's question in Support
i don't think the data is deleted , i think is just you can't view the data . -
i have added another bug that is in the same boat , but not related to this plugin http://www.blesta.com/forums/index.php?/topic/5116-client-can-remove-cancellation/
-
regarding this thread http://www.blesta.com/forums/index.php?/topic/5107-plugin-auto-cancel/ , i have imagined another case that is not related to that plugin , when a staff add a scheduled services for cancellation for a service is still active . the client can also remove the cancellation !!! that shouldn't be happen ... only the staff can remove the cancellation . the client can remove cancellation only if he was added the cancellation . normally it should disting beetween who has added the cancellation , if the system or staff , so clients can't be remove it.
-
nice to see your post here
-
Domain Management Refactor + Ideas
Blesta Addons replied to Blesta Addons's topic in Feature Requests
the actual package system will not support price per extention , and price per action (registrer, transfer, renew ) , that was one of the obstacle that i have fronted .- 16 replies
-
- domain management
- domain module
-
(and 1 more)
Tagged with:
-
Domain Management Refactor + Ideas
Blesta Addons replied to Blesta Addons's topic in Feature Requests
all of this points should be adressed in the new domain manager . but from my point of view 4-5-7 we can live without them , the rest absolutely should be exist in the new domain manager .- 16 replies
-
- domain management
- domain module
-
(and 1 more)
Tagged with:
-
the client can remove the cancellation !!! even if the service is suspended . this is not related to this plugin but is related the tab view element . the cancel options shouldn't be available to client when the service is suspended , related to CORE-1570 .
-
Domain Management Refactor + Ideas
Blesta Addons replied to Blesta Addons's topic in Feature Requests
i believe Mr Cody will have a genius idea about the new domain manager . just we need to wait until they finish 3.6.0 .- 16 replies
-
- domain management
- domain module
-
(and 1 more)
Tagged with:
-
This CORE-1686 resume and resolve the issue .
-
from my anwser in the other thread .
-
1+ for me, a simple email notice for both , but i prefer something like the fallowing : for staff a simple email with cancellation notice . for clients , first notice of cancellation after X Days . and email for cancellation notice . (why , if the service has a cancellation fee , the clients should be alerted about a cancellation in the road that will generate a invoice with XX amount )
-
the plugin put the service in cancellation and with use_module false . so when the cancellation proccessed it will not use the module to cancel the service ? if that's true , it should be the use use_modue , that way the service canceled from blesta and remote server . another issue i see here is the invoces created for this service . normally it should also delete the associated invoice to that service .
-
it would be perfect if the staff recieve notice by email for canceled serviced .
-
Sound Good with this plugins ...... Oley ... More & more
-
Hello .. i have disabled payment accounts from admin setting, but in the client side , they still see the box "Your account is not set up for automatic payment. Change this?" , i when they want to add a new payment account they recieve a warning info : The ability to add payment accounts is currently disabled. i think when payment account is disabled , 1 - it shouldn't show the the box message . 2 - it shouldn't show the content of the page "client/accounts/" , and show the message "The ability to add payment accounts is currently disabled." . if there are a option to control the navigation links, it shoudn't display the "payment accounts" link . (at the moment when task 2 is done is enough )
-
sorry , i have missed the thread about the announcement .
-
i can provide the valid subdivision for my country , as from now 2015 , morocco wil have just 12 regions . 1 - Tanger-Tétouan-Al Hoceima 2 - l’Oriental 3 - Fès-Meknès 4 - Rabat-Salé-Kénitra 5 - Beni Mellal-Khénifra 6 - Casablanca-Settat 7 - Marrakech-Safi 8 - Darâa-Tafilalet 9 - Souss-Massa 10 - Guelmim-Oued Noun 11 - Laâyoune-Sakia El Hamra 12 - Dakhla-Oued Ed Dahab from the official file http://www.pncl.gov.ma/fr/EspaceJuridique/DocLib/d%C3%A9cret%20fixant%20le%20nombre%20des%20r%C3%A9gions.pdf
-
How To Make Order System Available To Logged In Clients Only?
Blesta Addons replied to jkirk001's question in Support
yes, bacause you should add a condition for the message , the message will appear for logged in when they load new page . so , i can suggest this new code // Set the client info $this->client = $this->Clients->get($this->Session->read("blesta_client_id") ; if (!$this->client) { $this->flashMessage('notice', "You must be logged in to use the order system.", null, false); $this->requireLogin($this->client_uri); } -
greate news, going to test . if they ask me what they should do , i will suggest make some new modules wanted by the community . investing times in modules will bring new clients .
-
whre is the beta 3.6 ?
-
from wich i remember , at the moment just UK, Italy , morocco has been identiefied for this behaviors . maybe other countries but i don't remember if any one reported that .
-
How To Make Order System Available To Logged In Clients Only?
Blesta Addons replied to jkirk001's question in Support
normally it should redirect unlogged client to login page . try this one $this->requireLogin($this->client_uri); or set a redirect or set a input error message redirect : $this->redirect($this->client_uri); set error message : $this->setMessage("sorry you need to be logged in to place an order", $error, true, null, false)