Service RTM
Forum Replies Created
-
It should be a minor change te resolve this. Please follow up !!
I am referring to the variations. As it can be alterred in woocommerce, it should follow the sequence that is enterred in woocommerce.
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] Feature Request: Edit Sale PriceWhen you have entered sale prices for variable products for a specific period – This plugin erases this information when you change your Stock !
In my perception is this a BUG. It makes the plugin worthless, for us.
Forum: Plugins
In reply to: [Stock Manager for WooCommerce] filter improvement on screenIn addition to the wild card filter – a button with expand all would help.
You would expand all and then filter on the variation you want to see.
Probably an error in de zip – if I look at the trunk it is using a dash:
Forum: Plugins
In reply to: [Smart WYSIWYG Blocks Of Content] Admin load time exceeded server limitsWe suspect the amount of posts that is loading takes a long time.
Could it be the loading part in the class-swboc-widget.php on line 19-30 AND in the form function om line 56-75 ?
Can it be made faster (more efficient) to load?class-swboc-widget.php in the widget function:
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
if ( ! empty( $swboc_title ) ) echo $before_title . $swboc_title . $after_title; $args = array ( 'post__in' => array ( $swboc_id ), 'post_type' => 'smartblock', ); $swboc_posts = get_posts( $args ); remove_filter( 'the_content', 'prepend_attachment' ); foreach ( $swboc_posts as $post ) { echo apply_filters( 'the_content', $post->post_content ); } class-swboc-widget.php in the form function om line 56-75 $args = array ( 'post_type' => 'smartblock', 'posts_per_page' => -1, 'orderby' => 'ID', 'order' => 'ASC' ); $swboc_posts = get_posts( $args ); foreach ( $swboc_posts as $post ) { $currentID = $post->ID; if ( $currentID == $swboc_id ) { $extra = 'SELECTED'; } else { $extra = ''; } echo '<option value="' . $currentID . '" ' . $extra . '>' . $post->post_title . '</option>'; }Forum: Plugins
In reply to: [Smart WYSIWYG Blocks Of Content] Admin load time exceeded server limitsRoughly 900 smartblocks. It is when admin is logged-in to edit a page the load time is 2 minutes (also the display of widgets menu option). It makes editing almost impossible.