When I enable manual synchronization, I get two buttons “synchronize page order” and “synchronize menu” (or something like that, I have to translate from german). Neither of those buttons seems to work. When I add new pages or change order, those buttons will not synchronize anything. What do I have to do to make them synchronize?
I always have to go to APPEARANCE->MENUS and manually add the pages, which is very very cumbersome when you have a lot of pages because it adds new pages at the bottom of the page tree – you have to move the new entries one by one with your mouse across the whole page tree up to the desired position – which is a major PITA, even when you have “Nav Menu Collapse” installed.
What do I do wrong?
]]>I just want to manualy reply to reviews but its not possible. Fews day ago, I could use the “Reply with chatGPT” button, but now, it’s no more possible.
I asked for the support with email but they didn’t respond the main question. I think they read the questions too quickly or they don’t try to understand the problem because they tell me that automatic responses are a paid service when I want to answer manually.
Other problem : I want to desactivate automatic reply suggests and it’s not possible in the parameters (the button to desactivate don’t work).
]]>I liked the fact that it was free, and it worked great after they fixed the issue, but I would be reticent to use it again because of all of the extra work I had to do.
I wish I would have paid more (in fees) for a more tried & true ticketing platform.
]]>I want to manually add this on an article with only 4 headings.
It won’t show
]]>Automatic rewards don’t usually respond to quality engagement and that is what we want to reward on our Community.
Thanks
]]>According to phpinfo() I’m running Apache2 + FPM/FastCGI. I also located the php.ini file based on what was listed as the Loaded Configuration File path.
I tried the automatic installation using recommended settings (Apache+FastCGI) but that ran into a server error that could only be fixed by removing the Wordfence entry from .htaccess.
Instead, I decided to use the manual option. I see that the wordfence-waf.php was indeed added to /var/[path]/ and I added the line of code (auto_prepend_file = ‘/var/[path]/wordfence-waf.php’) to the previously identified php.ini file.
([path] is an actual normal path, removed for security.)
While the site is still running fine, it still shows that I’m only using the basic firewall. Any idea what I did wrong? Thank you!
More system details if that helps: Linux 5.10.0-27-cloud-amd64 #1 SMP Debian 5.10.205-2 (2023-12-31) x86_64
]]>add_filter( 'woocommerce_can_reduce_order_stock', 'can_reduce_order_stock_exceptions', 9000, 2 );
function can_reduce_order_stock_exceptions( $can_reduce, $order ) {
// Define your product ID(s) or variation ID(s) that will avoid stock reduction
$targeted_ids = array( 796 );
// Loop through order items
foreach ( $order->get_items() as $item_id => $item ) {
if ( in_array($item->get_product_id(), $targeted_ids)
|| in_array($item->get_variation_id(), $targeted_ids) ) {
$can_reduce = false;
break;
}
}
return $can_reduce;
}
If I create an order with any products + the product with id 796 and change the order status to completed it still reduces my product stock. I tried adding debug statements and it seems the function only gets called after creating the order and then changing the status to ‘Processing’.
But when I change the order status to ‘Completed’ it still reduces my stock. (No appearance in debug.log)
Is there a different filter I have to use for that?
]]>