ACarlsson
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] WYSIWYG WidgetHow far away is this plugin with a WYSIWYG editor? Would really need one.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] WYSIWYG WidgetHi, I’m also looking forward to se the Page Builder with a WYSIWYG editor. Hope you are able to fix that soon.
Amazing plugin!
Forum: Plugins
In reply to: [RS EVENT multiday] Show RS EVENT date in All posts adminOkay thanks for the quick reply. I will figure something out!
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Plugin does not dynamically updateIf anyone want to skip the cache thing you can do like me.
In the plugin folder on line 52 in the file includes/widget-recent-posts-extended.php
replace this
if ( false === ( $rpwewidget = get_transient( 'rpwewidget_' . $widget_id ) ) ) { $args = array( 'numberposts' => $limit, 'cat' => $cat, 'post_type' => $post_type ); $rpwewidget = get_posts( $args ); set_transient( 'rpwewidget_' . $widget_id, $rpwewidget, 60*60*12 ); } ?>with this
/* if ( false === ( $rpwewidget = get_transient( 'rpwewidget_' . $widget_id ) ) ) { */ $args = array( 'numberposts' => $limit, 'cat' => $cat, 'post_type' => $post_type ); $rpwewidget = get_posts( $args ); /* set_transient( 'rpwewidget_' . $widget_id, $rpwewidget, 60*60*12 ); } */ ?>Thanks a lot, so simple that I missed it!
Viewing 5 replies - 1 through 5 (of 5 total)