James Nodws
James Nodws
In the "publish" metabox select visibility to "hidden" or "search" https://docs.woocommerce.com/wp-content/uploads/2014/12/forcesells1.png Can also be se in the "quick edit" mode. I'm sure this is not the solution you want but...
I had it, then disappeared
yeah, plugin is a pain, better to write your own
lol you want to use us as zombie machines for your service?
Only workaround is to disable the redirection ``` add_filter( 'redirect_canonical','custom_disable_redirect_canonical' ); function custom_disable_redirect_canonical( $redirect_url ){ if ( is_tax('wpsc_product_category')) $redirect_url = false; return $redirect_url; } ```
FIXED if your content is in the front page, add this to the functions ``` $_GET['preview'] = 'true'; remove_action( 'template_redirect', 'redirect_canonical' ); ```
Yes please add asterisk so we can use it as [random] slot selector
this would be very useful, regardless if subbed or not im not interested in 7 years+ old video
found it, in advanced blocking add ``` (video, objectType) => { if (video.publishTimeText.match(/[4-9]|1[0-9] years/i)) return true; return false; } ``` this will block all 4+ year old vids, if you...
Yes, if you swap years for months it will only block +4 months videos and stop blocking years old videos this should work ``` (video, objectType) => { if (video.publishTimeText.match(/[2-9]|1[0-9]...