bzmof
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Conference Schedule] TD not “colspanning”Awesome, thanks!
Forum: Plugins
In reply to: [WP Conference Schedule] TD not “colspanning”To fix this bug change line 331 in schedule-output-functions.php
fromforeach($columns_clone as $pair) {to
foreach($columns_clone as $pair['key'] => $pair['value']) {(Note: It makes to code easier to use two different variables for key and value, but changing the line like this allows to leave the other lines untouched)
ping @stevejonesdev
- This reply was modified 4 years, 5 months ago by bzmof.
Forum: Plugins
In reply to: [WP Conference Schedule] TD not “colspanning”I believe this is a bug in the latest version, as the developer’s demo has the same issue: https://wpconferenceschedule.com/#demo
As a workaround you could use the “grid” layout for now, as it’s still working as intended.Forum: Themes and Templates
In reply to: [Agama] Blog: Posts title is glitched into the date.Sounds like your title is meant to be at maximum 1 lines long (or better: tall), and therefore collides with the meta data. Use your browsers object inspector to find the respective box (in terms of an html div) the title is written into and override it’s CSS / bootstrap settings. Either with some additional CSS provided from within Agama Theme, or go for a child theme.
Steve,
you are awesome. I did not expect anything, therefore thank you for the very quick answer and resolution!P.S.: As my mobile menu has a different color set as the normal menu, I had to adapt the code posted above to only change the mobile menu:
header.shrinked nav.mobile-menu ul li ul {
background-color: #DDDDDD !important;
}Thank you very much Devs (@themevision)!
I just found this bug when a friends asked me why his menu didn’t work and now I see you already fixed it (-: Great! Thank you for being active!