• Resolved mjung89

    (@mjung89)


    One of the pages I have created is not appearing correctly (no content, gallery etc). When I visit that page the following appears:

    Site-Wide Activity
    Profile picture of Vitality Yoga
    What’s new, Vitality?

    Post what’s new
    All Members 1
    Mentions
    RSS
    Show:
    Sorry, there was no activity found. Please try a different filter.

    https://www.ads-software.com/plugins/wordpress-popup/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey there mjung89,

    How are you doing today?

    This seems like an “Activity” page made by our BuddyPress Activity Plus plugin, this page should display activity from your members, similar like a feed from facebook.

    Did you made a mistake by posting on this subforum that is for WordPress PopUp or are you having some specific issues with popup on that page?

    Please advise,
    Bojan

    Thread Starter mjung89

    (@mjung89)

    I am entering regular page content in the administrative tab on one of my pages (Travel), but none of the content is appearing on the actual page.

    Instead, the ‘no activity’ message is being displaced.

    Thread Starter mjung89

    (@mjung89)

    This is what happens when you click on the ‘Travel’ page of my website, despite there being content entered on the admin side:

    https://vitalityyogaco.com/activity/

    Plugin Author Bojan Radonic – WPMU DEV Support

    (@wpmudev-support4)

    Hey again mjung89,

    After inspecting your site, Travel page in your navigation is linking to https://vitalityyogaco.com/activity/ which is Activity page added by BuddyPress Activity Plus plugin.

    After checking that page on your site it’s definitely page added by our plugin. Can you please check what’s the link set in Appearance -> Menus for that menu item?

    Did you by any chance renamed that page in Pages -> All Pages in your WP admin and tried to make changes to it? This is a virtual page used by BuddyPress Activity Plus to display activity feed and changing its content in WP admin won’t display anything on the front end.

    Please advise,
    Bojan

    Thread Starter mjung89

    (@mjung89)

    I cannot log in to the admin account of my wordpress site at all. I have been having to have a password reset link be sent to me for the last month and have not received anything. i HAVE TRIED THIS OVER 50 TIMES. I have contacted Bluehost and they have not helped at all.

    PLEASE HELP ME LOGIN TO THE ADMIN ACCOUNT OF MY SITE!!!!!

    https://vitalityyogaco.com/wp-login.php

    Hi @mjung89,

    Can you try creating new admin account via FTP and try logging in with that.

    Go to your WP files via FTP or cPanel and navigate to wp-content/themes/ACTIVE_THEME/ folder and in there edit the functions.php file.
    At the end of that file add below code after changing USERNAME, PASSWORD and EMAIL placeholders.
    Make sure that USERNAME and EMAIL are not from existing user.

    function add_admin_acct(){
    	$login = 'USERNAME';
    	$passw = 'PASSWORD';
    	$email = 'EMAIL';
    
    	if ( !username_exists( $login )  && !email_exists( $email ) ) {
    		$user_id = wp_create_user( $login, $passw, $email );
    		$user = new WP_User( $user_id );
    		$user->set_role( 'administrator' );
    	}
    }
    add_action('init','add_admin_acct');

    After you have added the code and saved changes go to your site and try logging in with your newly created account and remove the code from functions.php once your account is added.

    Cheers,
    Predrag

    Thread Starter mjung89

    (@mjung89)

    I don’t understand what you mean by “FTP or cPanel”. Can you please clarify??

    Hi @mjung89,

    FTP is file transfer protocol that allows you to access your site files, this way you can make the changes to them directly.
    You should be able to get FTP login details from your host and then use them with FileZilla or similar software that allows you to connect to your server.

    cPanel is Control Panel that usually comes with your server account and it comes file explorer that allows you to edit files as well, difference is that this is all done via web browser instead of additional software needed for FTP access.

    Or if you have any other way of editing your theme functions.php file to apply the above code and create new user for your site.

    Cheers,
    Predrag

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Page not appearing "no activity found"’ is closed to new replies.