Jump to content

wCORS

Members
  • Posts

    10
  • Joined

  • Last visited

  1. if the customer is using the 'Remove' button next to the domain product in the ordering cart. e.g if needed to change the number of years, the cart doesn't allow the customer to re-add the domain name, instead, it shows an error; Am using the latest version 5.11.2 How to replicate this error: Add the domain, and hosting package as usual to the cart, as soon as you reach the confirmation you can remove the domain name (the same domain name), and try to re-add it to the cart, it will protect you with error "The domain .... is already on your cart"
  2. The customer information and Order ID are not showing up in FraudLabPro website while examining the entry manually, This makes it hard to figure out which customer the entry refers to. It would help if FraudLabPro could display the customer details and Order ID. Blesta 5.11v screencapture-fraudlabspro-merchant-transaction-details-20250306-CRNSUF-2025-03-06-10_34_47.pdf
  3. wCORS

    Pad Exchange Rates ?

    @kikloo are you able to resolve it, am also having that issue also. it is decreasing instead of increasing.
  4. wCORS

    custom link

    i require a custom link that contains a URL-encoded message on redirect. for e.g. mydomain.com/blesta/pay/received?client_id=23&message=your+payment+will+be+confirm+soon
  5. I have coded it, but it doesn't redirect to the received page, my gateway supports one return URL, and as soon as the client pays, it shows a blank page. and the transaction is added. I have tried $this->redirect invalidate, but it doesn't work at all. now help, please. how do I redirect the client back to the client's page? $redirectUrl = "https://domain.com/client/payments/success"; $this->redirect($redirectUrl); // Use Blesta's redirect method also checked that, but doesn't work sucess() public function success(array $get, array $post) { $validatedData = $this->validate($post); if ($validatedData) { $redirectUrl = "https://domain.com/client/payments/success"; $this->redirect($redirectUrl); // Use Blesta's redirect method exit; return $validatedData; // Return the already validated data } echo "Validation failed."; // Handle failure case return null;
  6. are you able to do it?
  7. I have some confusion regarding the validate function and success. $client_id = (isset($get['client_id']) ? $get['client_id'] : null); does the "$get" function return the client ID of the person making the payment? - Problem: Assuming that Blesta require here the client ID who's making the payment, whereas, the callback doesn't return the Client ID.
  8. I have been trying to add an email package that calculates the total price based on the quantity and displays a single-line title on the invoice. However, when I use the configuration options, it creates two lines for the email product on the invoice. and also display the domain name for which it was purchased for ..
  9. How can I modify the expiration date of a generic domain name module?
  10. How can I modify the Update Package to easily switch the module for all assigned services? I would like to find a way to change the module without having to unassign each service individually. What is the best approach to accomplish this?
×
×
  • Create New...