carletto0282
Forum Replies Created
-
The _payment_method is filled with braintree_credit_card.
We are using Woocommerce Subscriptions to manage subscriptions products
Hi,
I have the same issue.
Downloaded version number 1.4.2 and no option for Woocommerce Email is available despite Woocommerce is installed.
How can a rollback to a previous version can be a solution for this issue?!
Thanks
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Add “Custom ID” fieldThank you!
I’ll follow the issue for sureBest regards
Forum: Plugins
In reply to: [Stackable - Page Builder Gutenberg Blocks] Add “Custom ID” fieldHi Benjamin, thanks for your question.
As an anchor for a menu item for example.To achieve this I’m adding an empty div with a specific id at the top of a container block.
It would be much more elegant and straightforward to add this attribute directly to the element through GUI.
I thinkThanks again
CarloThe from email address is a fully functional email account.
The same error occurs even when sending to external addresses… take a look here
smtps:login://ssl0.ovh.net:465 220 ssl0.ovh.net player760 EHLO 10.20.40.76 250-player120.ha.ovh.net 250-SIZE 123231242414 250-AUTH PLAIN LOGIN 250-AUTH=PLAIN LOGIN 250-ENHANCEDSTATUSCODES 250 8BITMIME AUTH LOGIN 334 blablabla abunchofcharacters= 334 anotherBunchofCharacters yetAnotherBunchofCharacters= 235 2.7.0 Authentication successful MAIL FROM:<[email protected]> 250 2.1.0 Ok RCPT TO:<[email protected]> 554 5.7.1 <[email protected]>: Recipient address rejected: You have exceeded the limit of 400 messages per hour and per IP address. Please, re-try later.
Hi everybody,
I’m having the same error log.
OS: Linux webd076.cluster020.gra.hosting.ovh.net 4.14.19-ovh-vps-grsec-zfs-classid #1 SMP Thu Feb 15 06:51:19 CET 2018 x86_64 PHP: Linux 7.1.13 C PHP Dependencies: iconv=Yes, spl_autoload=Yes, openssl=Yes, sockets=Yes, allow_url_fopen=Yes, mcrypt=Yes, zlib_encode=Yes WordPress: 4.9.4 it_IT UTF-8 WordPress Theme: Dottssa Rachele Biasco WordPress Plugins: ManageWP - Worker, WPML Multilingual CMS, Akismet Anti-Spam, Broken Link Checker, Caldera Forms, Caldera Forms Anti Spam, Duplicate Post, Google Tag Manager for WordPress, Email Templates, Post SMTP, Really Simple SSL, Slider Revolution, Simple Image Sizes, Compress JPEG & PNG images, Toolset Types, Yoast SEO, ImageInject, Toolset Views, WPML CMS Nav, WPML Media, WPML String Translation, WPML Translation Management WordPress wp_mail Filter(s): wp_staticize_emoji_for_email, Mailtpl_Mailer->send_email_postman WordPress wp_mail_from Filter(s): Mailtpl_Mailer->set_from_email WordPress wp_mail_from_name Filter(s): Mailtpl_Mailer->set_from_name WordPress wp_mail_content_type Filter(s): Mailtpl_Mailer->set_content_type WordPress phpmailer_init Action(s): Mailtpl_Mailer->send_email Postman: 1.8 Postman Sender Domain (Envelope|Message): rachelebiasco.it | rachelebiasco.it Postman Prevent Message Sender Override (Email|Name): No | No Postman Active Transport: SMTP (smtps:login://ssl0.ovh.net:465) Postman Active Transport Status (Ready|Connected): Yes | Yes Postman Deliveries (Success|Fail): 841 | 350
I’m trying to use OVH.
Everything works fine but when I try to send two test mail one after the other I get the first delivered while the second not.I’ve asked for help to the hosting help desk they tell everything is fine on them and maybe the script I’m using for mail send is making too much requests while hiding them in the logs.
Please help.
Here you can find a link to the form
https://rachelebiasco.it/richiedi-una-ricettaThanks
CarloHi Greg,
of course I don’t need debug enabled all the time and yes, I’m troubleshooting something – that’s not akismet.
I supposed akismet won’t fire debug info by default but only if needed upon activation of debug function.
In fact no other plugins are filling my debug log… only akismet.
By the way I disabled it, as reported above.
ThanksI’m sure I don’t touch neither Akismet nor any function/filter about akismet debug.
I’ve addedadd_filter( ‘akismet_debug_log’, ‘__return_false’ );
to my theme’s functions.php file.
Thanks
Forum: Plugins
In reply to: [W3 Total Cache] Adding stylesheet with a generated nameHi there,
I’ve got same issue.
I’m using Pagelines DMS child theme that works like already said by @uxusI’d like to add a further request development: the CDN purge is also unable to load newly generated css files… so that everytime the css is generated I need to manually purge the old one from the CDN server.
Thanks
CarloHi @justrunlah,
I think you could use the more generic yarpp_related() function to build your own custom related post query using ‘post_type’ option in you query arguments.
You have to put a custom function in the functions.php file of your theme, something like this should work
function custom_yarpp() { $custom_args = array( 'post_type' => array( 'your-CPT-here' ), ... any other argument like 'treshold' or 'template' or 'limit' ... ) yarpp_related($custom_args,$post_ID,false); }
and then call your own function
<?php custom_yarpp(); ?>
in the single.php file or wherever you want.
Basically it should work but I’m not sure since I don’t have tried it out.
Your welcome mate!
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Nested relatedI call get_related for each producer but if there are movies produced by both producers I get them doubled per each producer…
Producer 1
– movie 1 (produced only by prod1)
– movie 2 (produced by both)
– movie 2
…Producer 2
– movie 2
– movie 2
…Any suggestion to avoid duplication?
ThanksCarlo
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] shortcodes to display relationshipsWell actually I don’t have really much to share since I solve my issue trough css ??
My problem was that I put the related list inside a
<p></p>
element and when I run the page the related list broke the got and display on a new line.So I simply use the mode=list and work on css to put label and related list inline.
That’s it…. a not-so-brilliant workaround at all.
But now I see that scribu add an inline mode in the dev version of the plugin. Think that this could be a great solution indeed!
Thanks again!
ByeForum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Simple list output modeGreat, I will check it asap
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Nested relatedOk mate!
Thanks