Marcel Oerlemans
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Client Reports] Email problems?Hello @sgillihan,
Thank you for your reply, I will look into using external mail so I can disable sendmail on my server.
Forum: Plugins
In reply to: [WP Client Reports] Email problems?Hello, sorry to not give a response for a while. I’ve been in contact with my hosting provider and found the issue! I have a VPS server running Plesk and due to security reasons the Sendmail functionality was turned off in December. Because of this WP Client Reports couldn’t send mails anymore. For the websites where I use WP Client Reports on I disabled Sendmail and now it works fine again π
In Plesk Sendmail can be turned of this way:
Tools & SettingsΒ >Β Outgoing Mail ControlΒ >Β SubscriptionΒ >Β example.comΒ >Β Change Limit:I hope this helps for others who have these issues.
Is it possible to make the plugin work without Sendmail? This way I can turn off Sendmail for these accounts in my server, which improves security. Thanks!Forum: Plugins
In reply to: [WP Client Reports] Email problems?Hi Sheryle,
Thanks for your response, I hope you can fix it π If you need more information or help please let me know.
Hope to hear from you soon, best regards!
Forum: Themes and Templates
In reply to: [Kids Education] How to translate the theme?Hello,
I tried that, but it doesn’t work yet. I don’t understand this, I’ve tried many things but nothing seems to work… π
I now also added in wp-config: define (‘WPLANG’, ‘nl_NL’);
I set the site language in WP already, but this line wasn’t in wp-config for some reason.Best regards, Marcel
I’m very curious about this too.
Forum: Plugins
In reply to: [Event Organiser] Events won’t display anymoreHello @manuart72
I had the same issues, solved it with the following CSS code:
li.eo-event-past, li.eo-event-future {display: none;}
Best of luck!
Regards, MarcelForum: Fixing WordPress
In reply to: Music database plugin or themeThanks for you input a2hostingrj! I’m now using Ulisting, which seems to be working fine, just have too little time yet to really start with that, hope I can soon figure out all the options π
Forum: Plugins
In reply to: [Event Organiser] Events won’t display anymoreHi Manuart,
The code I now use, which works perfect for me, is:
<h2>Future events</h2> <table><tr><th>Title</th><th style="width: 150px;">Date</th><th style="width: 300px;">Venue</th></tr> [eo_events orderby="eventstart" order="ASC" showpastevents="FALSE" showfutureevents="TRUE"] <tr><td><a href="%event_url%">%event_title%</a></td><td>%start{jS M Y}%</td><td>%event_venue% - %event_venue_city%</td></tr> [/eo_events]</table> <h2>Past events</h2> <table><tr><th>Nr</th><th>Title</th><th style="width: 150px;">Date</th><th style="width: 300px;">Venue</th></tr> [eo_events orderby="eventstart" order="DESC" showpastevents="TRUE" event_start_before="now"] <tr><td>%event_custom_field{Number}%</td><td><a href="%event_url%">%event_title%</a></td><td>%start{jS M Y}%</td><td>%event_venue% - %event_venue_city%</td></tr> [/eo_events]</table>Forum: Plugins
In reply to: [Event Organiser] Events won’t display anymoreSorry I found out my code was wrong, I fixed it now π
Hello Brendon,
No problem, thanks for your response! Would be great if it would be possible! Could you keep me informed through this post?
Thanks in advance!
Best regards, MarcelForum: Plugins
In reply to: [Mollie Payments for WooCommerce] Menu not editable?It is solved, indeed it wasn’t the Mollie plugin but the “Conditional Payment Methods for WooCommerce” plugin. I deactivated that and now menu management works again. Thanks again Davdebcom!
You’re right Karolina, you explained to me why my ‘solution’ wasn’t correct, but I can’t edit that anymore.. Thanks for the help!
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Payment broken…Hi Karolina,
Sorry, that’s how much I know about PHP programming π I thought the + sign was an error because after deleting the error didn’t show anymore, may be coincidence..
Thanks for your response, I put the + sign back and the settings are now good, so I won’t edit them anymore.
Mollie does however still work, but I couldn’t see it in a certain delivery method.
The PHP version is 5.4.35Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Payment broken…resolved
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Payment broken…I think I resolved the issue, for me at least.
On line 259 stood:
$options += $extra;
This has to be:
$options = $extra;