Daniel Maier
Forum Replies Created
-
@geoffgraham Thank you!
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorForum: Plugins
In reply to: [Login Lockdown & Protection] IP range exception@wpsens may be we can change this plugin and add this option? Any PHP knowledge? I can possibly figure that out with a little help.
Some info that may be helpful to some:
https://wordpress.org/support/topic/4-4-0-1-kills-site-fatal-error/page/2/
- This reply was modified 9 years, 6 months ago by Daniel Maier.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorThe blank screen reason is most likely because your server’s PHP display_errors is set to off which is a good thing for production environments.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorFor those that have a custom URL for your events page you may need to re-save that configuration. I use /events/ and it was giving me the 404 page until I re-saved the Events Calendar settings.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorIIS 7.0.6000.16386
Thank you for working on this fix.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorDeleting the folder you mentioned didn’t seem to make the problem go away.
I still got the following error, which seems the same as before:
Fatal error: Uncaught Error: Call to undefined method Tribe__Settings_Manager::add() in E:\Websites\domain.org\wp-content\plugins\the-events-calendar\common\src\Tribe\Main.php:237 Stack trace: #0 E:\Websites\domain.org\wp-includes\class-wp-hook.php(298): Tribe__Main->load_assets('') #1 E:\Websites\domain.org\wp-includes\class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array) #2 E:\Websites\domain.org\wp-includes\plugin.php(453): WP_Hook->do_action(Array) #3 E:\Websites\domain.org\wp-settings.php(449): do_action('init') #4 E:\Websites\domain.org\wp-config.php(109): require_once('E:\\Websites\\cit...') #5 E:\Websites\domain.org\wp-load.php(37): require_once('E:\\Websites\\cit...') #6 E:\Websites\domain.org\wp-blog-header.php(13): require_once('E:\\Websites\\cit...') #7 E:\Websites\domain.org\index.php(17): require('E:\\Websites\\cit...') #8 {main} thrown in E:\Websites\domain.org\wp-content\plugins\the-events-calendar\common\src\Tribe\Main.php on line 237Thank you!
- This reply was modified 9 years, 6 months ago by Daniel Maier.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal Error– Windows Server 2008 SP2
– PHP 7.0.12
– Using IISThe path for the plugins folder is:
E:\domain.org\Websites\domain.org\wp-content\plugins\
- This reply was modified 9 years, 6 months ago by Daniel Maier.
Forum: Plugins
In reply to: [The Events Calendar] 4.4.0.1 Kills Site, Fatal ErrorSame here it completely killed the website! :/
Fatal error: Uncaught Error: Call to undefined method Tribe__Settings_Manager::add() in ...domain.org\wp-content\plugins\the-events-calendar\common\src\Tribe\Main.php:237 Stack trace: #0 ...domain.org\wp-includes\class-wp-hook.php(298): Tribe__Main->load_assets('') #1 ...domain.org\wp-includes\class-wp-hook.php(323): WP_Hook->apply_filters(NULL, Array) #2 ...domain.org\wp-includes\plugin.php(453): WP_Hook->do_action(Array) #3 ...domain.org\wp-settings.php(449): do_action('init') #4 ...domain.org\wp-config.php(109): require_once('...') #5 ...domain.org\wp-load.php(37): require_once('...') #6 ...domain.org\wp-blog-header.php(13): require_once('...') #7 ...domain.org\index.php(17): require('...') #8 {main} thrown in ...domain.org\wp-content\plugins\the-events-calendar\common\src\Tribe\Main.php on line 237An update would be nice. 🙂
Indeed Tobias, very interesting. 🙂
Thank you!
Thank you for your suggestion as well Tobias!
I found this which helped me tweak my CSS in order to fix the issue.
For whatever reason, probably needed at some time, I had the following code:
.tablepress { th { padding-top: 6px !important; padding-bottom: 6px !important; } }This was stopping the following code, suggested on the link above, from working properly:
.dataTables_scrollBody table thead tr { height:0px; }However, the “height: 0px;” is already on the “.dataTables_scrollBody table thead tr”. So, by only removing my paddings it allowed the already existent “height: 0px;” to do its job.
Thanks!
Forum: Fixing WordPress
In reply to: changing twentyfifteen menu and widgets toggle button to textHey there, I know you message is old but I was looking at this yesterday and found out a way to do that with CSS. You will also need to change the header.php for TwentyFifteen though. You can create a child theme to make those changes.
On this line in header.php:
<button class="secondary-toggle"><?php _e( 'Menu and widgets', 'twentyfifteen' ); ?></button>You can change ‘Menu and widgets’ to whatever you want to say. Then with CSS you make the changes to allow that text to be displayed:
/* Responsive toggle button */ .secondary-toggle { width: 190px; } .secondary-toggle:before { line-height: 26px; width: 0; padding-right: 30px; } .secondary-toggle.toggled-on:before { left: -9px; }