Forum Replies Created

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

    (@ykf1)

    Ok thanks for checking! It must be a configuration I set up in Relevanssi then as when I disable the plugin, the problem disappears. The issue is both on frontend forms and in backend admin. Admin search is enabled – is that a problem ?

    • This reply was modified 5 days, 20 hours ago by ykf1.
    Thread Starter ykf1

    (@ykf1)

    Oh ok so the _bricks_page_content_2 is supposed to be there! No worries, so it is not that one causing issue.

    For metabox, it was a custom user field, that is a search field for CPT. This would be the configuration:

    <?php
    add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name' );

    function your_prefix_function_name( $meta_boxes ) {
    $prefix = '';

    $meta_boxes[] = [
    'title' => __( 'test', 'your-text-domain' ),
    'id' => 'test',
    'type' => 'user',
    'fields' => [
    [
    'name' => __( 'Post', 'your-text-domain' ),
    'id' => $prefix . 'Example',
    'type' => 'post',
    'post_type' => ['post'],
    'field_type' => 'select_advanced',
    'add_new' => false,
    'multiple' => false,
    'parent' => false,
    'required' => false,
    'clone' => true,
    'sort_clone' => false,
    'clone_default' => false,
    'clone_as_multiple' => false,
    'clone_empty_start' => false,
    'hide_from_rest' => false,
    'hide_from_front' => false,
    ],
    ],
    ];

    return $meta_boxes;}

    And with this box, you cannot search when relevanssi is activated. It loads the options, but the field search does not work.

    Thread Starter ykf1

    (@ykf1)

    Thank you both! Passwords were immediately changed and then I ran securi as per your suggestion?– it said the site was safe. I also checked with siteground.

    But I am still trying to work it out. I have created a staging site and am conducting some experiments to try get to the bottom of it. I realise it is triggered when an admin logs out, max 2 times a day. One of my experiments was disabling all plugins except meta box and elementor pro and simple history. It still triggered. These two plugins are constantly updated. I just struggle to disable them without breaking the site.

    The changes that I see are to the biography. If there is a 's then it changes it to /'s . Which makes me think it is a formatting thing?

    But then I don’t understand why it says that it made edits to the users that it did not update, but maybe it clicks save. And why these edits show as being made by whichever admin logs out.

    • This reply was modified 1 year, 8 months ago by ykf1.
    • This reply was modified 1 year, 8 months ago by ykf1.
    • This reply was modified 1 year, 8 months ago by ykf1.
Viewing 3 replies - 1 through 3 (of 3 total)