artilibere
Forum Replies Created
-
try turning off the following option
Object Versioning
Append a timestamp to the S3 file path. Recommended when using CloudFront so you don’t have to worry about cache invalidation.Forum: Plugins
In reply to: [WooCommerce] Overriding wc_get_product_ids_on_sale()too much different rules and functions to use just a post type.
the most important one: products in my ecommerce comes in from a feed, specialproducts are editorial items that needs to be left out the sync process.
Forum: Plugins
In reply to: [WooCommerce] Overriding wc_get_product_ids_on_sale()<strong>
was for the editor ??the new query for me is:
WHERE post.post_type IN ( 'product', 'product_variation', 'specialproducts')
as I added a new custom post type, with different rulres, woocommerce enabled, named specialproducts
Forum: Plugins
In reply to: [Personal Fundraiser] use moneybookers instead of paypal@prisanti I’m asking myself the same.
Maybe we can work together on it, can we?Same for me.
I did that way:
function dbcrf_enablewide(){ global $wp_db_cache_reloaded; $wp_db_cache_reloaded->dbcr_enable(FALSE); } add_action('init','dbcrf_enablewide');
but still doesn’t work!
Forum: Networking WordPress
In reply to: Blank page for superadmin on huge wp networkwow, great answer!
I’ll check if it works.. but I think so.
Thanks a lot.
Forum: Plugins
In reply to: TinyMCE table plugin – missing translation in post editorYes, it should be fixed in 0.354; please notify me if not.
Thank you.Forum: Hacks
In reply to: How to make autoupdate works while coding plugins?sorry again, i still read that 100% of active versions are 0.31 – released 2 weeks ago – while the current version is 0.351 and 6 version came through.
I still think something went wrong and don’t know where to investigate.Forum: Hacks
In reply to: How to make autoupdate works while coding plugins?ok, I’ll calm down and wait ??
thanks a lot Rich ??Forum: Hacks
In reply to: How to make autoupdate works while coding plugins?Thanks, it worked.. just have to wait.
But now I think I still have another anomaly: if I go to the plugin page, under the tab stats I find that 100% of active versions are still the old one (0.31) while I expect some user should have the new one (0.33): almost the users have downloaded it yesterday and today must have the new one (and one is myself).Great!
Thanks also for the comment’s suggestion, I already was working on something similar.
It’s just an embryonal project for now…Thanks a lot Andrea for your suggestions.
I intended to cover a task that wasn’t covered in 3.0x, so if you tell me that in 3.1 there will be implemented I’m happy for my foresight ??I’ll keep in mind your suggestion to avoid reinvent the wheel and to focus correctly the future of that plugin.
I’ll keep asking – also after 3.1x – network administrator what they wish in their backend. Maybe with my luck it will be exactly what we all find in 3.2x ??
Anyway, thanks a lot again for your precious suggestions. ??
Forum: Developing with WordPress
In reply to: Added a new TaxonomySorry but I cannot get it.
I tried as you specify in the head comment of your functions.php:add_action( ‘after_setup_theme’, ‘my_child_theme_setup’ );
function my_child_theme_setup() {
remove_filter( ‘manage_posts_custom_column’, ‘quality_manage_columns’ );
add_filter( ‘manage_posts_custom_column’, ‘my_manage_columns’ );
}but it neither remove the previous filter… where do I did wrong?
Forum: Developing with WordPress
In reply to: Added a new TaxonomyI hacked the original quality-control/functions.php that way:
—
#AFTER:
define( ‘QC_INC_PATH’, get_template_directory() . ‘/inc’ );
#ADD:
define( ‘QC_INC_PATH_CHILD’, get_stylesheet_directory() . ‘/inc’ );
——
#REPLACED:
// Require other files, to keep things organized.
require_once( QC_INC_PATH . ‘/options.php’ );
require_once( QC_INC_PATH . ‘/tickets.php’ );
require_once( QC_INC_PATH . ‘/updates.php’ );
require_once( QC_INC_PATH . ‘/widgets/category-taxonomy.php’ );
#WITH:
// Require other files, to keep things organized.
if(file_exists(QC_INC_PATH_CHILD . ‘/options.php’)) require_once( QC_INC_PATH_CHILD . ‘/options.php’);
else require_once( QC_INC_PATH . ‘/options.php’ );
if(file_exists(QC_INC_PATH_CHILD . ‘/tickets.php’)) require_once( QC_INC_PATH_CHILD . ‘/tickets.php’ );
else require_once( QC_INC_PATH . ‘/tickets.php’ );
if(file_exists(QC_INC_PATH_CHILD . ‘/updates.php’)) require_once( QC_INC_PATH_CHILD . ‘/updates.php’ );
else require_once( QC_INC_PATH . ‘/updates.php’ );
if(file_exists(QC_INC_PATH_CHILD . ‘/widgets/category-taxonomy.php’)) require_once( QC_INC_PATH_CHILD . ‘/widgets/category-taxonomy.php’ );
else require_once( QC_INC_PATH . ‘/widgets/category-taxonomy.php’ );
—So I can override external files in my child theme.