cmolyn
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Spreadplugin] Yoast Og:image conflictSome resolutions for this:
Line 991
public function overwriteWpSeoType()
should be
public function overwriteWpSeoType( $type )
line 994
//Check for plugin usage global $post; if ( has_shortcode( $post->post_content, 'spreadplugin' ) ) {
line 999
return 'product';
should bereturn 'product'; //return $type; } else { return $type; }
link 1005
public function seoImageUrlHandler()
should be
public function seoImageUrlHandler($img)
line 1039
return false;
should be
return $img
- This reply was modified 4 years, 8 months ago by cmolyn.
Forum: Plugins
In reply to: [WP Header Images] Not savingThis is an error in the log: Undefined variable: url in ../wp-content/plugins/wp-header-images/pro/wphi-premium.php on line 208
Forum: Plugins
In reply to: [WP Header Images] Admin images – not showingReverted to previous version to await fixes.
- This reply was modified 4 years, 10 months ago by cmolyn.
Forum: Plugins
In reply to: [WP Header Images] Unexpected fatal errorI changed :
/wp-content/plugins/wp-header-images/inc/functions.phpLine 298 from is_home_page — which not a WP function to is_home
if($img_id == 0 && (is_front_page() || is_home_page())) {
to
if($img_id == 0 && (is_front_page() || is_home())) {
Forum: Fixing WordPress
In reply to: Error After 5.3 UpdateI added this to the wp-config, and the error went away:
set_error_handler(function() { error_log(print_r(debug_backtrace(), true)); return true; }, E_USER_NOTICE); define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); /* That's all, stop editing! Happy blogging. */
I was just trying to find what plugin it was coming from:
https://wordpress.stackexchange.com/questions/296194/how-to-find-cause-of-php-notices-with-no-stack-traceI have no idea why, or if I should do it, but it also resolved the media page being blank.
- This reply was modified 5 years ago by cmolyn.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Only certain events imported from .icsSo, actually I traced my issue back to the recurrence_rules, which I wouldn’t need on an import, I don’t think, in app/model/event/instance.php I commented out 151-161 and all the events came through.
/* if ( $recurrence_rules ) { date_default_timezone_set( $timezone ); iCalUtilityFunctions::_recur2date( $recurrence_dates, $recurrence_rules, $wdate, $startdate, $enddate ); date_default_timezone_set( $restore_timezone ); } */
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Only certain events imported from .icsDid you ever get this figured out, other than to increase the memory available?
I have been trying to import a .ics with about 100 events, and it uses too much memory as well. 100 events should not overwhelm a script.
This was also happening to me, and I can confirm that installing 1.2.20. It works, however installing 1.2.22 from the plugin installer, the URL with tab=2 in it, gives a 404 not found page.