Foobar Studio
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Customer Area] Incompatibility with other plugin “Clean Image Filenames”Hi,
We already have hooks to handle file names
Here is the file in our plugin managing the uploads: https://gitlab.com/wp-customerarea/plugins/customer-area/-/blob/master/src/php/core-addons/private-file/private-file-default-handlers.class.php
Line 40 and 44 are the plugin hooks which are triggered when an upload is made.
You will see that we internally us the wp_unique_filename function from WordPress core.
That core function exposes a filter which you could use to sanitize even further your file names:
return apply_filters( 'wp_unique_filename', $filename, $ext, $dir, $unique_filename_callback, $alt_filenames, $number );
Forum: Plugins
In reply to: [WP Customer Area] Updating an old versionHi,
Indeed, the base plugin is not necessarly compatible with older add-ons.
Our servers have been impacted by the fire at the OVH hosting provider and thus we lost all accounts created before March 2021.
As before, we have a 1 year free update policy, so you would need to purchase new licences for those add-ons.
Regards,
Forum: Plugins
In reply to: [WP Customer Area] Incompatibility with other plugin “Clean Image Filenames”Hi,
I missed that thread, sorry.
Indeed the plugin is alive.
I cannot tell much about what is happening as I have never used the plugin you mention.
From what I see in their replies, they are hooking into
wp_handle_upload_prefilter
which may be the reason why our plugin does not find its files afterwards.I currently cannot dedicate much time to supporting compatibility with that plugin, sorry. As WP Customer Area is open-source, we will however welcome any pull request on the repository (public, at gitlab.com).
If you are in a hurry, and as I see that you are a professional selling websites, I can offer to help your developer to find his way into our code by pointing out the files and classes he may have a look at in the first place.
Otherwise, we will have a look at that issue later on, but I cannot yet give any timeframe.
Regards,
Forum: Plugins
In reply to: [WP Customer Area] Invoicing add-onHi,
As per the www.ads-software.com rules, please use the plugin’s support forum at https://wp-customerarea.com/support when asking about the commercial addons.
We will let you know how to change the default font used to generate the PDF to support other locales.
Regards
Forum: Plugins
In reply to: [WP Customer Area] Where to edit toolbarHi,
Have you read our documentation about the template system?
https://wp-customerarea.com/documentation/developer-guides/the-template-system/
More specifically the part about enabling debugging information to output the template file names in the HTML code as comments ??
Forum: Plugins
In reply to: [WP Customer Area] Problème WP CUSTOMER AREA> L’onglet est celui natif à WordPress pour consulter les pages publiées, en brouillon ou dans la corbeille.
C?té admin ?
Forum: Plugins
In reply to: [WP Customer Area] Problème WP CUSTOMER AREA> Je voulais soulever que lorsque l’extension WP CUSTOMER AREA est active, l’onglet me permettant de voir toutes mes pages n’affiche plus rien… Alors que les pages sont belles et bien existantes.
De quel onglet parlez vous ?
> En revanche concernant les factures, pouvons nous les importer et les dispatcher à l’ensemble de nos clients facilement ?
Vous pouvez le tester avec le plugin de base, et en suivant notre guide de démarrage : https://wp-customerarea.com/documentation/getting-started/
Si ce n’est pas suffisant, nous avons une extension d’import en masse, dont la documentation vous détaillera les possibilités : https://wp-customerarea.com/documentation/add-on-guides/ftp-mass-import/
Forum: Plugins
In reply to: [WP Customer Area] Problème WP CUSTOMER AREABonjour,
Notre plugin utilise les utilisateurs natifs WordPress. Je ne sais pas comment fonctionne Ultimate Members.
Vous pourrez normalement en effet mettre à disposition de vos utilisateurs des fichiers (factures) de manière privée.
Hi,
You can edit the capabilities for those roles in the WP Customer Area settings, under the capabilities tab.
Regards,
Forum: Plugins
In reply to: [WP Customer Area] addon EventsHi,
Currently not, sorry. Have you tried integrating them in a private page?
Forum: Plugins
In reply to: [WP Customer Area] WordPress Customer AreaHi,
They simply sign-in on the regular WordPress login screen.
If they are not logged in, the plugin automatically redirects them to that page.
If they are already logged in, the plugin simply shows the content they are allowed to see.
If you need alternate login forms, we have an addon available on the plugin website to integrate that login/register form in the website UI.
Hi,
The conflict is with the theme most probably: it includes some CSS rules in its stylesheet that mess up the dropdown styles.
You would need to find that rule and try to include a CSS fix that reverts to what is required to make it show up properly.
Forum: Plugins
In reply to: [WP Customer Area] Logout redirectHi,
You could use our Authentication forms add-on.
Forum: Plugins
In reply to: [WP Customer Area] Custom PageHi,
Yes that can be done. You can use our shortcodes: https://wp-customerarea.com/documentation/user-guides/shortcodes/
Forum: Plugins
In reply to: [WP Customer Area] Maximum File Size?Hi,
We do not have any particular setting for the file size. Our plugin uses whatever settings are set on your PHP environment and the restrictions set by WordPress itself.
You can get some additional information about that with a little research on ? WordPress max upload size ?
Regards,