beunoit
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailjet Email Marketing] Mailjet with new form builder and wordpress plugin@sam, I found a solution to have a simple subscribe form : with Contact Form 7 plugin.
In the mailjet plugin, go to parameters => integration. Make Contact form 7 active and select your list. Then you have a short code to put in your CF7 form.
Great !Forum: Plugins
In reply to: [Mailjet Email Marketing] Mailjet with new form builder and wordpress pluginThank you Sam for this issue.
Same question : I would like to know how to insert a subscription form without inserting an iframe from the “new builder tool”. An iframe cause several pb with responsive, design, and performance… It couldn’t be a good solution for the most popular CMS on the web.
Thank you,
Beno?t- This reply was modified 1 year, 10 months ago by beunoit.
Forum: Plugins
In reply to: [Super Simple Site Offline] Notice: Undefined index: preview_offlineGreat !
Thank you !Great !
Forum: Plugins
In reply to: [Custom Post Type UI] Add Custom Post Type Taxonomy to Divi Blog ModuleHi !
I was needing the same thing and I made this “patch”.
Copy this theme file in your child theme : /wp-content/themes/YOURTHEME/includes/builder/module/Blog.php
and delete the line 3 : “require_once ‘helpers/Overlay.php’;”
-> Then use this guide to override a Divi module :
https://github.com/eduard-ungureanu/Divi-tuts/wiki/How-to-customize-the-PHP-code-of-any-Divi-ModuleAnd add after line 1494 :
<?php // Print custom taxo $customtaxo = wp_get_post_terms( $post->ID, 'YOUR_TAXO_SLUG', array( 'fields' => 'all' ) ); if(!empty($customtaxo )) { foreach($customtaxo as $t) { echo "<p lass=\"term-$t->term_id\">". $t->name . "</p>"; } } ?>
This is not a very good work, but it works !
- This reply was modified 4 years, 6 months ago by beunoit.
Thank you very much for your answer !
“Could you try configuring a report “HTML” and in “Display options” select “Display tables only (no graphs)”. Does it work then?”
- -> it works with this configuration ! So, the pb come from pdf or image attachement with my client email ! Not from Matomo
- -> for Gmail, emails were effectively in my spam folder, so sorry ! (I’m not used to gmail interface !!)
- -> my two differents clients email which have pb with Matomo emails : first one is the Outlook Web App (not hotmail, but dedicated outlook web app from organisation where I work), second one is a Zimbra mail version 7.2 from my internet access provider (it seems to be an old version).
So, I’m gonna use a different mailbox where it works !
My topic title was about the error Failed to load HTML-File, so
for the error message :
Failed to load HTML-File:
Please check if you have an adblocker or something similar enabled
The message is only displayed with my firefox but does not affect what I described above for emails. So it’s not a pb from Matomo, but from my configuration.Last thing to say :
I tried a Matomo plugin on an other WordPress website hosted on other webserver :
Everything was exactly the same !
So the pb comes definitively from the two clients emails, and from my firefox for the error message !Thanks again for your answers !
If it’s ok for you too, we can close the toic as resolved.Thank you for your answer.
The email is sent !Hmmm… I tried now with a gmail address with Edge (for having no error displayed) :
I don’t receive the email either in CSV format !Hello !
thank you for your answer.
My website is running with an Apache webserver.
I tried differents things and it seems to be more complicated !
I tried with Edge -> the error message is not here, but no email.
I tried a different email address -> the email is received but with a mime format “error” :
This is a message in Mime Format. If you see this, your mail reader does not support this format.
That’s why, some client email doesn’t accept the email…
Finaly, I changed HTML or PDF format () with mime format error, for CSV, and the email is ok !
In resume :
Whit Edge (instead Firefox) I don’t have error message, but same pb.
Only email with CSV format works with me.
Maybe a little thing to revise in the email HEADER ?Forum: Plugins
In reply to: [RSS Feed Widget] Code optimisation (bxSlider)Great ! Thank you ! ??
Forum: Plugins
In reply to: [RSS Feed Widget] Code optimisation (bxSlider)For my need, I just put this on line 125 and remove the two files from index.php :
$html = ""; if($this->list_type =='slider') { wp_enqueue_script( 'rfw-slider-script', plugins_url('js/jquery.bxslider.js', __FILE__), array( 'jquery' ), date('Ymhi'), true ); wp_enqueue_style( 'rfw-slider-style', plugins_url('css/jquery.bxslider.css', (__FILE__)), array(), date('Ymhi')); //pree($this->img_size); $html.= "<script type=\"text/javascript\" language=\"javascript\">jQuery(document).ready(function($){ $('#".$args['widget_id']." .rfw_dock.rfw_slider').bxSlider({ auto: true, adaptiveHeight: true, pager: true, controls: false, infiniteLoop: true, speed: $speed, mode: 'horizontal', pause: 10000, ticker: false, pagerType: 'full', randomStart: true, hideControlOnEnd: true, easing: 'linear', captions: false, video: true, responsive: true, useCSS: true, preloadImages: 'visible', touchEnabled: true }); }); </script>"; } $html.= '<aside id="'.$args['widget_id'].'" class="rfw-class '.$rfw_style.'">';
Maybe you can do it better ! ??
Forum: Plugins
In reply to: [Audio Player] [Plugin: Audio Player] Add an external play buttonUp !
Somebody has an idea ?