Forum Replies Created
-
Vincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
We do not have that sorry. This should not be hard to develop though as our classes offer all the functions to easily persist that information into the database.
in reply to: Import files for specific user via API (or DB)Vincent Mimoun-Prat
Participant# 3 years, 10 months agoHmmm
Looks like their version is 5.12 and not 5.12.0, am I right?
In that case, the regex that could work is that one
‘/^5\.12(\.?)([0-9^\.]*)$/’ => 1, // regular 5.12 and 5.12.x are supportedCould you try that?
in reply to: ACF allert messege version 5.12Vincent Mimoun-Prat
Participant# 3 years, 10 months agoThis reply has been marked as private.in reply to: Divi Site Addon Purchased, but things got weird.Vincent Mimoun-Prat
Participant# 3 years, 10 months ago2. I did not get what you mean.
3. All HTML produced by the plugin can be customized. Invoice templates are no exception. You can refer to the template system documentation
4. Currently not, sorry.
in reply to: Invoicing add-on issuesVincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
We are using the Html2Pdf library to produce the PDF files. Here is part of our code which initializes the html2pdf object.
`$html2pdf = apply_filters('cuar/private-content/invoices/pdf/html2pdf-object', $html2pdf); $html2pdf->addFont('zapfdingbats', '', CUAR_PLUGIN_DIR . '/libs/php/html2pdf/vendor/tecnickcom/tcpdf/fonts/pdfazapfdingbats.php');` As you can see, we allow you to customize that object using a filter:function cuar_customize_html2pdf($html2pdf) { // Do anything you need with the $html2pdf object $html2pdf->addFont('yourfont', '', WP_CONTEN_DIR . '/path_to_your_font_folder/your_font.php');</pre> <pre> $html2pdf->setDefaultFont('yourfont');</pre> <pre> return $html2pdf; }You can get the fonts from https://tcpdf.org/
in reply to: Invoicing add-on issuesVincent Mimoun-Prat
Participant# 3 years, 10 months agoThis reply has been marked as private.in reply to: Problems with Setting Pasword or ResetVincent Mimoun-Prat
Participant# 3 years, 10 months agoThis reply has been marked as private.in reply to: Bulk Add Users to a Managed GroupVincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
Did you check for a plugin conflict ?
Does it work with another theme?
Do you have any add-on active?
in reply to: Login redirect failVincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
Have a look at that documentation: https://wp-customerarea.com/documentation/developer-guides/theme-development/
The section about « Custom single templates » should tell you which file to update in your theme.
Regards,
Vincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
Could you check the server setup? What kind of response do you get when downloading from mobile? Does it work with another theme?
Vincent Mimoun-Prat
Participant# 3 years, 10 months agoHi,
If you add the capability to create users to your teacher role, there should be no problem. This is part of WordPress core though and has nothing to do with our plugin.
On our side, there is no user creation anywhere, we rely on the WP core functionnalities for that.
Regards,
in reply to: May manager of group create users?Vincent Mimoun-Prat
Participant# 3 years, 11 months agoPour les réponses, voici le code qui les récupère. Vous pourrez ainsi avoir le nom du filtre à implémenter pour modifier cette requête.
private function get_replies_query_args(){return apply_filters('cuar/private-content/conversations/replies/query-args', array('post_type' => CUAR_ConversationReply::$POST_TYPE,'posts_per_page' => -1,'orderby' => 'date','order' => 'ASC','post_parent' => $this->ID), $this);}in reply to: Ordre des réponses de conversationVincent Mimoun-Prat
Participant# 3 years, 11 months agoBonjour,
Oui c’est possible via un peu de code PHP.
Vous trouverez sur la page suivante de quoi vous inspirer :
Cordialement,
in reply to: Ordre des réponses de conversationVincent Mimoun-Prat
Participant# 3 years, 11 months agoHi,
Yes, that is what the add-on is made for.
Chosse the personal licence if you intend to use it on a single website. The other plans allow usage on more websites (respectively 5 and unlimited number).
Regards,
in reply to: Upload files from userVincent Mimoun-Prat
Participant# 3 years, 11 months agoThomas est absent cette semaine (congés), il reviendra la semaine prochaine. Je lui rappellerai de venir faire un tour ici.
in reply to: WPCA adds permissions to main categoriesVincent Mimoun-Prat
Participant# 3 years, 11 months agoYes, just paste the URL to that private file in the private page.
To view the private file, the user must have access to it of course.
in reply to: Link private files in PagesVincent Mimoun-Prat
Participant# 3 years, 11 months agoYou said you have moved your website from one host to another.
In that process, your website now lives in a different location on the server.
If your database had references of that location (folder), then those are now incorrect.
When moving a website from a host to another, you must take care of updating your existing database so that all the data stays consistent.
The same is true if you have changed your domain name : old domain has to be changed to new domain in the database.
in reply to: File not found or inaccessible at path moved hostingVincent Mimoun-Prat
Participant# 3 years, 11 months agoThomas is currently on holiday, he should be back next week with some tips, he is the frontend guy.
in reply to: Integration problemsVincent Mimoun-Prat
Participant# 3 years, 11 months agoHi,
Did you try switching to one of the default themes (such as Twenty Twelve). Are styles showing up there?
in reply to: Styles not showingVincent Mimoun-Prat
Participant# 3 years, 11 months agoHi,
Files have to be stored on the server itself currently. You will not be able to reference private files on a remote FTP server.
Regards,
in reply to: FTP Export

