Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1369291

    Hi,

    I am having trouble editing certain posts because the editing tool is endlessly loading. We have tried investigating plug in, clearing cache, and reaching out to WP support. We have come to the conclusion it is the theme. If someone could help me resolve this issue quickly and effectively that would be great. I can provide temporary log in credentials just let me know what email you’d like to use.

    #1369299

    Hi nuslyz,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    #1369450

    Hi there,

    I went ahead and attached the URL down below.

    #1369455

    Hi,

    Thanks for that. Could you link directly to a post where this problem is happening as well please?

    Best regards,
    Rikard

    #1369474

    These are the two links that we have noticed have this issue

    #1369487

    Hi nuslyz,

    Thanks for pointing out the problem pages.
    Your firewall (wpewaf) seems to be blocking the code block you have inserted.
    Try to whitelist your IP and see if it helps, or try any options that will allow you to insert those codes.
    If it does not work, then try using WordPress hooks and conditional tags to insert those codes in those specific pages (or try using a plugin that does this).

    Best regards,
    Nikko

    #1369776

    Can you please give a little more information about the hooks? The whitelist did not work on our end. We are not the original web designers for this page, so we are not sure which code you are referring to. The temporary login is available for another 3 days.

    #1369983

    Hi nuslyz,

    To be exact, I’m just thinking of using the wp_footer hook to add the script and then using conditional tags in order to have the script added only to specific pages.

    Best regards,
    Nikko

    #1370060

    Can you please give me detailed step by steps

    #1370651

    Hi,

    Sorry for the late reply. Please try something like this in your functions.php file:

    function nuslyz_add_footer_script(){
        if (is_page( array( 42, 10 ) ) ) {
           ?>
             YOUR SCRIPT GOES HERE!
          <?php
        }
    }
    add_action('wp_footer', 'nuslyz_add_footer_script', 999);

    Add the ID’s of your pages in the array, and your script where indicated. https://developer.wordpress.org/reference/functions/is_page/

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.