Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jagarda

    (@jagarda)

    Hi,

    thanks for the reply. I now seem to have located the error. I got the help from a previous thread: https://ww.wp.xz.cn/support/topic/can-we-disable-action-scheduler/

    I added the following line to my function.php:

    //TEMPORARY BUGFIX FOR WOOCOMMERCE “PHONING HOME” – REMOVE AFTER WOOC FIXES
    add_filter(‘woocommerce_admin_features’, ‘pk_woocommerce_admin_features’);
    function pk_woocommerce_admin_features($features) {

    if(($key = array_search('remote-inbox-notifications', $features)) !== false) {
        unset($features[$key]);
    }
        // return other features if any (?)
    return $features; 

    }

    After this the loading time went from 8-10 seconds to under 1 second. Although this seems to be a temporary fix from my understanding. How can I permanently fix the issue with my remote-inbox-notifications?

    Thread Starter jagarda

    (@jagarda)

    Hi, I included an image with the action schedule here:

    https://imgur.com/a/PmJQV8n#NXE0ij2

    Even though I cleared it last week its already filled up with several hundred thousand new actions. How can I know which action thats causing all the problems? From my understanding it looks like “remote_inbox” event is the issue but Im not sure what that specific event is triggered by

    Thread Starter jagarda

    (@jagarda)

    Hi MariusG,

    the url in the browser is just fine. I want it to include “e-juice” which it does at the moment like this:

    https://vapehuset.se/e-juice/acid-house-black-mango-50ml-shortfill/

    Im just worried that Yoast seem to redirect everything to this /e-juice/ folder. As I showed in the example I can write the following faulty URL:

    https://vapehuset.se/fakeurl/acid-house-black-mango-50ml-shortfill/

    And it will still redirect it to folder /e-juice/. How do I stop this redirection from faulty URLs?

Viewing 3 replies - 1 through 3 (of 3 total)