centuri
Forum Replies Created
-
Forum: Plugins
In reply to: [User Switching] 403 Permission DeniedI fixed the problem.
Just installed latest OWASP? ModSecurity CRS rules.
And problem solved.Forum: Plugins
In reply to: [User Switching] 403 Permission DeniedThnx for reply. Yes it realy could be mod-security.
Any particilar idea what exactly should I change?
That is great, can setup from what the barcode to be generated, like order id for exammple?
Regarding reading the old invoices, what if we put our old invoices in pdf into the same location on server where your plugin stores the invoices?
Also do you have live backend demo for the premium version?
- This reply was modified 3 years, 4 months ago by centuri.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Error connecting to facebookSame here using version 2.1.3 now.
Its getting extremely frustrating waiting for months this to be fixed.I’m having the same issue, already wrote to Facebook help as well, they said they working on it (couple a months ago)
Your support is a JOKE!
At the moment of writing this I still experience the same problem, current version is 2.1.3
Its about time you fix this if you like our advertising dollars.
Forum: Plugins
In reply to: [Invoices for WooCommerce] How to hide metadata from external pluginJust read your FAQ I found the answer there.
(in case someone else encounters the same problem here is the solution.
I fixed the issue with the following code:function bewpi_alter_hidden_order_itemmeta( $hidden_order_itemmeta ) { $hidden_order_itemmeta[] = '_is_giftable'; // end so on.. return $hidden_order_itemmeta; } add_filter( 'bewpi_hidden_order_itemmeta', 'bewpi_alter_hidden_order_itemmeta', 10, 1 );
(in case someone else encounters the same problem here is the solution.
I fixed the issue with the following code:function bewpi_alter_hidden_order_itemmeta( $hidden_order_itemmeta ) { $hidden_order_itemmeta[] = '_is_giftable'; // end so on.. return $hidden_order_itemmeta; } add_filter( 'bewpi_hidden_order_itemmeta', 'bewpi_alter_hidden_order_itemmeta', 10, 1 );
Same here, all orders tab is not working, also search field is missing.
The other tabs (completed, on hold, etc..) seems to work OK.
Forum: Plugins
In reply to: [WooCommerce] [3.05] Editing or Deleting products blocks the entire site!UPDATE!
Reverted back to 3.04 the problem disappeared.
Noticed while using 3.05 that while saving edited woocommerce product, some looooooong queries were executed, which was the cause of the blockage.
Also tried editing and saving regular wordpress pages and posts (while had woo-3.05), they were OK only woo-products had the problem.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce 3.0.5 update et Very slow product upload.Yes same here, editing anything on the product is extremely slow, also the site hangs sometimes, when try to edit multiple products.
Forum: Plugins
In reply to: [Invoices for WooCommerce] Error while updating to 2.8.0I have similar error when tried to update too.
Also tried removing the plugin, and installing the 2.80 as new, but got whole screeen with errors.Latest wordpress with woocommerce 3.04
Forum: Plugins
In reply to: [WooCommerce] [3.02] variaton prices are wrongI temporarily fixed the problem by rolling back to 3.01 using WP rollback.
NOTE to everyone who rolls back for this issue:
It does not fix prices right away, you need to enable disable variation product in order the prices to correct.Forum: Plugins
In reply to: [WooCommerce] BUG in product archive pages with WC3.01https://github.com/woocommerce/woocommerce/issues/14147
It was fixed by deleting some products that had wrong ID for out of stock.
Forum: Plugins
In reply to: [WooCommerce] BUG in product archive pages with WC3.01The same theme on the test site with the same plugins, is OK.
It’s DIVI theme from elegant themes.
BIG THNX for offering to look.
How do we do this wp slack thing, never used it before?UPDATE!
I installed slack and sent you a message.- This reply was modified 7 years, 11 months ago by centuri.
Forum: Plugins
In reply to: [WooCommerce] BUG in product archive pages with WC3.01I know the visibility is done with taxonomy in new version.
Also tried last night to disable all plugins to see if there is any conflict.
But the problem persists.Actualy I had this to exclude category>
add_filter( 'woocommerce_product_categories_widget_args', 'woo_product_cat_widget_args' ); function woo_product_cat_widget_args( $cat_args ) { $cat_args['exclude'] = array('2890'); return $cat_args; };*/
Removed it but the problem is still there
Any idea how to fix this?- This reply was modified 7 years, 11 months ago by centuri.