Daniele Scasciafratte
Daniele Scasciafratte
The purpose of this ticket is to find a name to the text corpus we are working on that will be used as reference everywhere, probably also outside this project....
Looking on my log I found many of them: ``` [22-Aug-2017 10:06:26 UTC] PHP Notice: Undefined index: ltime in /srv/www/domain/htdocs/wp-content/plugins/query-monitor/output/html/db_queries.php on line 304 [22-Aug-2017 10:06:26 UTC] PHP Notice: Undefined index:...
There is the table of hooks that show everything functions but not show how much time required on running.
Right now is not clear how to do that because only the title is not enough.
Actually GlotDict already do that adding a blue border on the left on the strings that contain at least a term with a glossary. This is used to check what...
I do that in https://github.com/Mte90/GlotDict/blob/master/js/glotdict.js#L41 As example: in a string there is a term with a glossary translation, so can be boring to read the tooltip and write, instead with...
Ref: https://github.com/woocommerce/action-scheduler/issues/857 I am not sure if it is enough to not initialize the class (check for tables etc) but for sure disable the cron and the queue.
So to achieve that you need to use a filter but in the automated tests world this means that you need a WP instance already available. There is https://github.com/woocommerce/action-scheduler-disable-default-runner that...
So CMB2 has a parameter that let you to show the field (also with a custom callback) in the post type table list. This means that we can remove the...
As per PM: Create a function in your `_bootstrap.php`: ``` function woo_disable_wizard() { \add_filter( 'woocommerce_prevent_automatic_wizard_redirect', '__return_true' ); } ``` In your `WPLoader`: ``` bootstrapActions: - woo_disable_wizard ``` In this way...