• I launched the website in late Aug without any issues (elementor free version worked perfectly in both Traditional Chinese and English sites).

    Recently I needed to update a pic on both site, I could only start elementor in the main site (https://www.dsssc.org.hk/) but not in the subsite (https://www.dsssc.org.hk/en/)

    It’s so frustrated as I have to make sure both sites show the same content (but in different languages), but now I can only update the Chinese one.

    Please make another update to your plugin to fix the issue. Thanks a lot for creating such a great plugin!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Clivesmith

    (@clivesmith)

    I have the same problem, since updating I cannot edit my pages in Elementor free version, I am not using multi site.
    I also updated the one I have on DesktopServer and that is the same.

    • This reply was modified 4 years ago by Clivesmith.
    Clivesmith

    (@clivesmith)

    I know what my problem was, I use a plugin called “Restaurant Menu” for some reason ti shows each item of the menu as a page, to stop this I used
    /* This is to stop single menu items showing in own page */

    function redirect_to_home( $query ){
    if(is_single() ) {
    wp_redirect( home_url() );
    exit;
    }
    }
    add_action( ‘parse_query’, ‘redirect_to_home’ );

    in my functions.php that was what caused the problem.

    Are both all your functions.php the same ?

    Thread Starter zinizcheng77

    (@zinizcheng77)

    Thanks Clivesmith

    I am sorry that I am a power user of WordPress, but not a programmer or designer that can handle the code easily.

    May I know if the code can be simply copy to functions.php so that I can fix the issue, or I have to customize it for my site? I am using free theme Neve from ThemeIsle with a multi site environment.

    Clivesmith

    (@clivesmith)

    Hi zinizcheng77,

    DO NOT add that to your functions file it was what caused the problem, what I was trying to say was check your function.php files in each of your sites, the problem may be a difference in one of them.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Elementor not working in one of multi sites’ is closed to new replies.