Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/16/2015 in all areas

  1. A whitespace at the beginning or end of a search string results in no results found. I can't think of any case where it'd be warranted to need to search for whitespace at the beginning or end of a string, so perhaps a trim() here could fix it right up
    3 points
  2. well it work for me,you need to add both packages to same group and when you create order form add that package group to order form and it shoud show on same order form,you can see here on my test order form two different exrensions from enom and namecheap https://nelsahost.com/blesta/order/config/preconfig/testvps Also when creating order form in drop down menu you can chose type of the form and you have "general" on first and "domain and other" on second place ,so make sure that all steps are properly done.
    1 point
  3. André P.

    Naxsi Rules Set

    I already collected a great rule set, but am still pretty far away from complete. It runs great so far.
    1 point
  4. Paul

    Release 3.5.0-B5

    We do our best to ensure that public betas don't have critical bugs, but it can happen. The whole point of a beta is to open things up so others can find issues we couldn't find and provide feedback so that we can make adjustments in functionality. We can't and won't recommend running a beta in production, but some people do it. It's looking like we probably won't need a beta 6. Final release imminent (In by best robotic voice).
    1 point
  5. Blesta Addons

    Future Of Paypal...

    if you are looking for this , i have started the work in it , but not finiched and need some tweaks to be complete . http://host-image.net/v.php?id=45397incontext.png
    1 point
  6. 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));
    1 point
×
×
  • Create New...