Jeroendebeurs
Forum Replies Created
-
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] no VAT charged over gateway fee?Hi @niklasinpsyde,
I’m looking for the same feature. Do you know when this feature will be ready for use?
Thanks and kind regards!
JeroenThanks! Going to try this.
Forum: Plugins
In reply to: [Salon Booking System] Start time doesn’t match start shift timeHi Chef,
I don’t want to be impatient but is there something I can do? Is it something I’ve done wrong with the settings? Or is it something in the code? We are keen to provide a website for a client with Salon.
Hope to hear from you.
Thanks!
JeroenForum: Plugins
In reply to: [Salon Booking System] Start time doesn’t match start shift timeOk great, please let me know if you find anything.
Cheers,
JeroenForum: Plugins
In reply to: [Salon Booking System] Start time doesn’t match start shift timeHi Chef,
Thanks for your quick reply. I installed it on a dev site on a local server. For now I have temporary install with the same settings on: https://temp.publia.nl/booking/. When you select a date and then a booking hour, you can select 12:00. It should be 11:30.
Further more with this clean install I don’t have the option to select a time after 16:30 while my second shift is from 16:00 to 19:00.
I’ll send you the login information via email. So you can have a look at the settings.
Thanks!
JeroenForum: Plugins
In reply to: [WP Rocket ASYNC CSS] HTML Minification breaksHi Derrick,
Thanks for your quick reply. I also use your WP-Rocket Footer JS plugin, this doesn’t solve the problem. However, like you said it isn’t a big issue. I’ve minified some parts myself.
Thanks,
JeroenForum: Reviews
In reply to: [Elegance Modal Box] Works greatAlthough it would be great if there was an option to show the modal max X times.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] Disabling ssba in custom postI had the same problem and solved it like below. Instead of using the_content(); I used this:
$content = get_post_field('post_content', $post_id); $content = apply_filters('the_content', $content); $content = do_shortcode($content); $content = preg_replace('#<div class="ssba"[^>]*>.*?</\s*div\s*>#si', '', $content); echo $content;
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Login page crashesGreat! Thanks for the quick update ??
Forum: Plugins
In reply to: [All-In-One Security (AIOS) – Security and Firewall] Login page crashesI’ve got the same problem, it’s since I updated to WordPress 3.9. It seems the CSS can’t be loaded from /wp-admin/. And it’s only the case when I change to wp-admin url (option rename login page @ Brute force).
Forum: Fixing WordPress
In reply to: How to remove "post_format" parameter from preview urlI ran in exactly the same problem and solved it with your code, so very useful indeed. Thanks!
Forum: Plugins
In reply to: [My Post Order] [Plugin: My Post Order] Search Posts doesn't workNo, not when you search, then you get all results (so also pages, not published posts and other post types).
Forum: Plugins
In reply to: [My Post Order] [Plugin: My Post Order] Search Posts doesn't workI made a small adjustment to your code, because with the search results I got posts which are not published and got all post types, so I changed this:
add_action( 'wp_ajax_search_posts', 'mpo_search_posts' ); function mpo_search_posts() { $_POST = array_map( 'stripslashes_deep', $_POST ); $search_str = $_POST['search_str']; $args = array('s' => $search_str); require_once ('show_posts.php'); exit; }
To this:
add_action( 'wp_ajax_search_posts', 'mpo_search_posts' ); function mpo_search_posts() { $_POST = array_map( 'stripslashes_deep', $_POST ); $search_str = $_POST['search_str']; $args = array('s' => $search_str, 'post_type' => 'post', 'post_status' => 'publish'); require_once ('show_posts.php'); exit; }
[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
Cheers,
JeroenForum: Plugins
In reply to: [My Post Order] [Plugin: My Post Order] Search Posts doesn't workGreat! Thanks!
Forum: Plugins
In reply to: [Query Custom Fields] [Plugin: Query Custom Fields] Brokenhttps://www.ads-software.com/extend/plugins/custom-query-fields/
This one works for me (wp 3.2.1) ??