newty
Forum Replies Created
-
Hi Adam and Patrick,
Thanks for your help, that’s working ??
Best regards,
I found the issue and fix it. It was due to an html css class.
Hi Jonathan,
That’s strange because I do not have any Cloudflare CDN installed / enabled.
I tried by removing embed short code, publish, and re-add to the homepage, and publish again. And result is the same…
What can help you in order to find the root cause ? Please tell me what you need and I’ll provide it.
Thank you.
Hi Adam,
Yes, I had an html minifier but I disabled it and it’s still the same – you can replace toto by what you want and test it : https://www.parrainage-ing.net/?e=toto
Also, I have wp rocket but it’s disabled so there is no cache from me. Do you have a cache system integrated with hustle embed ?
For now, I don’t know how to solve that.
Thanks for your help.
Best regards,
JulienHi,
I enabled the debug mode with define( ‘WP_DEBUG’, true ); but I have no error or warning displayed when I submit the form. For now, I’m obliged to remove the GDPR checkbox to make it work.
Any other solution ?
Thank you.
Hi,
In the DOM, the checkhbox seems to be checked ( https://www.screencast.com/t/7Z2y5SD9pEg ) but on ajax submission, I do not have the form data data[gdpr]: on
I don’t know why… I did a test by removing all the content of my homepage except the form and I still have the issue. Same result when I disable W3TC.
When I create a new page and add the form, it’s ok (like https://www.boursorama-parrainage.info/etapes). So the issue is on the HP but I don’t know what is blocking the GDPR submission.
Is that possible to have the help of one of your developers ?
Thank you in advance.
Best regards,
I purged cache and even disabled W3 Total Cache and results are exactly the same. I don’t think that it that because the the same form is called at https://www.boursorama-parrainage.info/etapes and it’s perfectly working.
Thanks for your help.
Best regards,
Hi,
For the embed, I only have 3 tabs which are :
– Content
– Design
– Display SettingsI do not see any Emails tab.
Please help me ??
Thank you.
Best regards,
JulienHello,
I use sendy service. Yes, it’s for subscribing to a newsletter list.
And I would like to block bots who submits fake emails with a “Prove your humanity (8+2 = ?) field or Captcha field.
Thank you for your help.
Best regards,
JulienForum: Fixing WordPress
In reply to: Count published posts for a category and month/yearI think it’s good with :
SELECT COUNT( * )
FROM wp_term_taxonomy, wp_posts, wp_term_relationships
WHERE wp_posts.ID = wp_term_relationships.object_id
AND wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id
AND wp_term_taxonomy.term_id = ‘7’
AND wp_posts.post_type = ‘post’
AND wp_posts.post_status = ‘publish’
AND wp_posts.post_date LIKE ‘2011-06-%’??
Forum: Hacks
In reply to: generate a newsletter of wordpress posts per monthI’ve found ! I’ve added query_posts
But I cannot write wordpress data in my file. For example, there, $permalink and $title are displayed on my screen but are not writted in the file. Do you know how can I resolve this problem ?
while (have_posts()) : the_post();
fwrite($fp, ‘<tr>’);
fwrite($fp, ‘<td>’);
fwrite($fp, ‘<p>’);
fwrite($fp, ‘<a href=”‘);
$permalink = the_permalink();
fwrite($fp, $permalink);
fwrite($fp, ‘”>’);
$title = the_title();
fwrite($fp, $title);
fwrite($fp, ”);
fwrite($fp, ‘</p>’);
fwrite($fp, ‘</td>’);
fwrite($fp, ‘</tr>’);
endwhile;Thanks to you ??
Forum: Hacks
In reply to: generate a newsletter of wordpress posts per monthI’ve added a if (have_posts()) and result is “Sorry, no post published”.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2>” href=”<?php the_permalink() ?>” rel=”bookmark”><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p>Sorry, no post published.</p>
<?php endif; ?>So, there is no post for it… Do I have to include another php file ?
Forum: Hacks
In reply to: generate a newsletter of wordpress posts per monthI’ve test in command line on my server with : php -f /var/mon-ndd/www/newsletters/genere-newsletter.php but I havn’t warnings / errors…
Forum: Hacks
In reply to: generate a newsletter of wordpress posts per monthup ! ??