Stefan Froehlich
Forum Replies Created
-
Hello @reventon94,
thanks for your message.
Unfortunately, this is not true.Being a theme and plugin developer myself for many years, I know this is not exactly a cryptic bug (and even one other user in this forum debugged the underlying query and found the bug).
And no: nothing changed in the current version.
Whenever you edit a page marked as front page, you will see WP Statistics’ widget saying:
Hit Statististics
– No data to display.And honestly: that sucks…
So I cancelled the “Data Plus” subscription. Waste of money.- This reply was modified 1 year, 3 months ago by Stefan Froehlich.
Still the same problem here with (paid) version 14.1.3.1.
Is this a bad joke?Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Negation of product attribute criteriaHi,
you could get an impression on this site:
I would be grateful for any recommendations….The product attributes in the left column are the ones that should be negated.
- This reply was modified 7 years, 6 months ago by Stefan Froehlich.
- This reply was modified 7 years, 6 months ago by Stefan Froehlich.
- This reply was modified 7 years, 6 months ago by Stefan Froehlich.
Well, I followed exactly the steps described by @yithemes. So, please see above ??
I don’t know what you guys are doing wrong. Just follow the steps exactly as described…
For me, it’s working like a charm ??
1001 thanks, @yithemes!!!
Forum: Plugins
In reply to: [YITH WooCommerce Ajax Product Filter] Negation of product attribute criteriaHi,
can you please point me into the right direction? I’m completely lost.
This is the code I’m trying currently:
define( 'HVM_ALLERGENS_TERM', 'pa_allergene' ); add_filter( 'pre_get_posts', 'hvm_ajax_navigation_filter_def', 50 ); function hvm_ajax_navigation_filter_def( $query ) { if ( $query->is_tax() ) { $tax_query = $query->tax_query->queries; $new_tax_query = $tax_query; if ( isset( $_GET['filter_allergene'] ) && count( $new_tax_query ) > 1 ) { $key = array_search( HVM_ALLERGENS_TERM, array_column( $new_tax_query, 'taxonomy' ) ); if ( false !== $key ) { if ( $new_tax_query[ $key ]['operator'] == 'IN' ) { // Negate operator $new_tax_query[ $key ]['operator'] = 'NOT IN'; } } $query->tax_query->queries[] = $new_tax_query; $query->query_vars['tax_query'] = $query->tax_query->queries; } } }
Forum: Plugins
In reply to: [WP-Polls] Translations de_DE?Hi Thomas,
is your translation working? I just tried doing my own translation files with POEdit…
… but the plugin is still ignoring the file, so I guess it’s a BUG in WP Polls ??
Forum: Plugins
In reply to: [FakerPress] Generated posts not assigned categoriesSame here unfortunately ??
Looking forward to Version 0.4.5. When will it come?
Best,
Stefan.No probs, I’m happy with your help anyway.
Thanks again ??
Great!
$events_count = EM_Events::count($args); echo EM_Events::get_pagination_links($args, $events_count);
definitely works.
Thank you very much for that! Is there also a way to influence how many page links will be displayed in the pagination?
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Events page 404I can speak of my own experience:
The “index.php” part seems to be a bug in EM. It seems to occur when you change EM’s permalink settings AFTER you’ve already created some events.
Flushing the rewrite rules, deactivating and reactivating the plugin, deleting/reinstalling, deactivating all the other plugins…. Nothing helped.
The only way for me to solve this was a clean install of wordpress and EM. THEN set the permalinks and then only create events.
Then it works like a charm.