Daniel Letschka
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Columns Layout brokenThank you! The issue on the single event pages is now fixed.
The column issue is only fixed by your custom css, not by the update.
Kind regards, Daniel
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Columns Layout brokenYes, thats partly fixed now.
Colours still different, single event layout too.Category:
before update: https://barock2026.netzspinnerei.at/mep_cat/seminare/
after update: https://barock2026.netzspinnerei.at/mep_cat/seminare/Single events:
before update: https://barock2026.netzspinnerei.at/events/h8-seminar-schoene-dinge-aus-ton/
after update: https://www.einzigartig-creativ.at/events/h8-seminar-schoene-dinge-aus-ton/I have to say that i spent hours fixing things after almost every update you did during the last year.
Sometimes frontend, sometimes backend.
Please be more careful! I manage 40+ websites – cannot think of any other plugin update that breaks things that often.
My client is extremely unhappy because of this and we are looking into other solutions right now.Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Columns Layout brokenThe issue is not yet resolved.
Forum: Plugins
In reply to: [Event Booking Manager for WooCommerce] Email and Company fields emptyThanks, i will contact pro support.
Great! It works! Thank you!
I already did this – i posted it above!


But why are the <br> tags in the single-event but not in the event list? See screenshots.
No i want to keep them!
Thank you!
Unfortunately – still no success.
I inserted the shortcode like this:
<div class="em-item-desc"> #_EVENTEXCERPT_HTML{20} </div>Code is added via Code Snipptes plugin. It works – when i cahnge the length of the excerpt it changes in the frontend.
On this page: https://www.freiraum-stp.at/veranstaltungen/stp-metalweekend/
Look into the event description – there are <br> tags after the artists.Those are gone if you look at the event on the homepage.
Thanks for your help!
DanielHi, is there any update on this?
Thanks! It did not work for now.
In the Layout i did this:
<div class="em-item-desc"> #_CUSTOMEXCERPT </div>And thats function.php in /mu-plugins:
<?php
/*
This snippet will create new placeholder for event details excerpt with limits
to any given characters which in this case 10.
*/
add_filter('em_event_output_placeholder','my_em_custom_excerpt_placeholders',1,3);
function my_em_custom_excerpt_placeholders($replace, $EM_Event, $result){
switch( $result ){
case '#_CUSTOMEXCERPT':
$replace = $EM_Event->output("#_EVENTEXCERPT");
$replace = preg_replace('/<[^>]+./','', $replace);
if($result == "#_CUSTOMEXCERPT"){
if ( strlen($replace) > 10 ) {
$length = 200;
$replace = substr($replace,0,$length);
}
$replace = $replace . '… ';
}
break;
}
return $replace ;
}Forum: Plugins
In reply to: [ManageWP Worker] Sync doesn’t workHi Michael and support team,
i have the same problems since a few weeks. I had to manually reconnect many websites (deleting worker plugin etc.) but this did not help for long. Usally 5-10 of my ca. 50 websites cannot connect and i have to go through the process above, which i sometimes have to do multiple times until the website syncs. Right now – after reconnecting multiple websites manually – again 9 websites cannot connect.
Today i also experienced problems with the refresh-button in the dashboard.
I also feel very attached to ManageWp but managing my websites has recently become painful because of these problems.
Kind regards
DanielForum: Plugins
In reply to: [Social Feed Gallery] Instagram Authorization FailedHi, instagram integration stopped working.
See here: https://kpj-korneuburg.at/umgebung/
Error: 412: Account id 17841404970221286 not found to fetch user profile.
I took the usual steps to connect to the account via facebook (have done it many times)- but i get an error at the end.
Please help!
Thanks,
Daniel
Forum: Plugins
In reply to: [Social Feed Gallery] Can’t set up feed againI have the same issue!
Forum: Plugins
In reply to: [Polylang] Append query stringThank you!
We solved it with javascript now. We check if the url contains “/en/” and depending on the result write a value to local storage.
The non-wordpress-pages we link to are on a subdomain, so that works.
Best,
Daniel