opmaken
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager Pro - Mollie Payments] Plugin not showing paymentsYou have to activate the legacy mode, to let appear this payment gateway.
Add in the wp-config.php file
define(‘EMP_GATEWAY_LEGACY’, true);
I hope Patrick will update this excellent plugin very soon.
Forum: Plugins
In reply to: [Events Manager Pro - Mollie Payments] Plugin doensn’t workUnfortunately no option in the regular settings area. The message below (shown in my admin area) will probably help you out.
If you are not experiencing any issues, you can disable this warning and complete the migration process by clicking the ‘Dismiss’ button below. At which point, the only way to re-enable legacy mode would be by adding this line to your?
wp-config.php
?file:define('EMP_GATEWAY_LEGACY', true);
Forum: Plugins
In reply to: [Events Manager Pro - Mollie Payments] Plugin doensn’t workDo you use the “Legacy mode”? This is the only way to select this Payment Gateway. I hope Patrick will update this plugin to the new standards of the Pro-plugin.
Wat je kunt doen is in de admin-panel gaan maar:
weergave > customizer > extra css
Daar kun je de CSS toevoegen die nodig is.Als je wilt weten welke classes je moet aanpassen, gebruik dan de Ontwikkelaarstools van je webbrowser. Achtergrondinfo over ontwikkelaarstools
Succes!
Forum: Reviews
In reply to: [Events Manager Pro - Mollie Payments] Nice addonHi Patrick,
You’ve done a great job!
Thanks!Solution is to add some css-style to the admin panel. I did that by adding the following code to the functions.php file
add_action('admin_head', 'my_custom_style'); function my_custom_style() { echo '<style> #expirationdate_year, #expirationdate_month, #expirationdate_day, #expirationdate_hour { width: initial; } </style>'; }