-
Posts
6,714 -
Joined
-
Last visited
-
Days Won
841
Everything posted by Paul
-
What module are you using? What configurable options are you trying to create? The basic flow is this: Create a Config Option Group Create your Config Options, and assign to the Group Create a Package Group Create Packages, selecting the Config Option Group previously created, assigning the package to the Package Group If you have trouble with that, and can explain what options you're trying to create, pricing, etc. and want to PM me your login, I would be willing to create a package with 1 or 2 config options as an example for you.
-
What option should you select when? When "Recording Payment" - manually adding a transaction as an admin? You can select whichever option makes sense. IF you have 2checkout and PayPal installed though, the customer should be able to make payment with those methods and the transaction be applied automatically to their account. In that case, there's no need for you to select either. 2checkout and PayPal are both non-merchant gateways, meaning the user can pay with them by name. They leave Blesta to complete payment, and then return. CC & ACH options are intended to work with merchant gateways like Authorize.net, Stripe, and others where the customer completes the payment all within Blesta.
-
What version of Blesta are you running? The issue described in this task was resolved in 4.3.2.
-
All of the AJAX templates are a single page. AJAX Slider, AJAX Boxes, and AJAX List. Wizard templates are multi-step, and would not be all on one page.
-
Allow Plugin to Inject Messages [Html] for client Dashboard
Paul replied to Blesta Addons's topic in Feature Requests
Can you give a use-case for this? Where do you intend to display the messages, and what are the messages for? I would like to add a messaging system to Blesta, for both Staff and Clients, that can alert them of specific things in the interface, from any page. Curious if that fits in with what you're thinking. -
I think we want all forum files to require a login. @Blesta Addons are you trying to download the files from the forum while logged in or logged out?
-
Just to add though! If you are installing the PATCH you must be running 4.3.0 or 4.3.1. If you are on an older version, you must download the full release.
-
You do not have to upload any modules or plugins or gateways that you are not using. Because they are modular, they are not required by the core if they are not installed.
-
Are you getting that on the forums or on the docs.blesta.com page?
-
I've checked the user group permissions, and I don't see anything that would prevent you from downloading the files. I asked someone else to check, and they can download also. Weird. I've added to the documentation with downloads at: https://docs.blesta.com/display/dev/Service+Management+Tabs https://docs.blesta.com/display/dev/Examples
-
Version 4.3.2 is now available, please see the release announcement. Patching Blesta See Patching Blesta in the User Manual for instructions. 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. Release Notes See Blesta Core - Version 4.3.2. For older releases see all Change Logs.
-
For piping, the server must be the MX for the domain your support addresses are at. The error you're getting creating the forwarder indicates that it expects it to be an email address an not an application. I'm not that familiar with DirectAdmin forwarders, but perhaps there is another option? Also, you will want to add the hashbang (path to PHP) at the beginning of pipe.php, and you can drop /usr/bin/php from your forwarder. See https://docs.blesta.com/display/user/Support+Manager#SupportManager-email-pipingEmailPiping for more.
-
The most common reason for this is that your Plesk server is not able to be reached. Please check that the credentials are correct, that CURL SSL is in your PHP, and that the required ports are open at your firewall egress TCP. You can also check the module log under Tools > Logs > Module, and the system file logs (usually ../logs_blesta/) which is defined under Settings > System > General.
-
I don't know the reason ?dir= is appended to the file. I'll bring it up with the team. What kind of caching are you doing, and how is the resource interpreted? Does it assume that it's a dynamic resource, and does not cache it, or? If it was cached, a new theme would not be picked up until the cache expires. For the admin area, this is a problem if you have multiple companies and are switching between them. The URL would stay the same, but the company & theme would change. Perhaps the file name should be THEMENAME.css
-
theme.css is what sets the color theme based on the theme selected and defined under Settings > Company > Look and Feel > Themes. I don't know if that answers your question, but without theme.css Blesta will revert to default colors.
-
I love these kinds of threads! Well done @Blesta Addons
-
I don't have any available time to help port to Bootstrap 4. We are considering an upgrade to Bootstrap 4 for Blesta 5.0, but I have no ETA on that and am unsure how many more releases we will have under v4.
-
Looking good!
-
Fluid would look good I think, allow the panels to expand to fit.
-
Whoa Nelly! We should probably still look at why it's using so much memory. If you don't mind doing some testing, I'd be curious how many it'll load for you for a given amount of memory. For example, at what point does it break with 256MB memory?
-
Then under "Settings > Company > General > Localization" you can set the language as the default language if you want. Or, under My Info you can set the language for your staff user only, and clients can select the language when they sign up.
-
Here' is the default conditional for the auto debit message: {% if autodebit %}{% if invoice.autodebit_date_formatted %}Auto debit is enabled for your account, so we'll automatically process the card you have on file on {invoice.autodebit_date_formatted} unless payment has been applied sooner.{% else %}If you would like us to automatically charge your card, login to your account at http://{client_url} to set up auto debit.{% endif %}{% else %}If you would like us to automatically charge your card, login to your account at http://{client_url} to set up auto debit.{% endif %} It looks like you just removed the else statement, so it'll either show that message or nothing. I'd suggest putting something in between the autodebit and invoice.autodebit_date_formatted conditionals as a test to see if it is output, which will show whether autodebit is boolean true. We have a task - https://dev.blesta.com/browse/CORE-2770 which is designed to catch cases where auto-debit is enabled but there is no account set for auto-debit. I don't think this is related to your issue. The only other thing I would suggest is to try toggling auto-debit off and back on. If the value is not set for some reason, it may appear on anyway. If you toggle off and back on, it will ensure the setting is present.
-
Did you upgrade Blesta recently? Did you run /admin/upgrade in your browser? As Blesta Addons mentioned, you can enable error reporting in your config at /config/blesta.php but you can also check the ../logs_blesta/ directory for errors there. The path to this directory should be set under Settings > System > General.
-
Text, Textarea, Password fields will be available to add as config options in Blesta 4.4, but I don't know if this will work in your case because if the field should calculate quantity in Blesta, then it would still need to be a quantity field in the configurable option.
-
The task can be found at https://dev.blesta.com/browse/CORE-1912 and it's related to https://dev.blesta.com/browse/CORE-1564 which would likely be implemented together. Thoughts?