I used the Buddypress Message Compose to send a site wide email to all members wasnt sent tho [closed]

The way the feature works is by posting the message on the screen, not in the members inbox, and it requires the template tag: <?php bp_message_get_notices(); ?> So wherever you put the tag, the message will appear there. In the default buddypress theme, it shows up when you activate a message and the user is … Read more

Buddypress Adding a Nav item and Calling Custom Fields [closed]

The problem is that you’re not specifying which template BuddyPress should use to display your content. There are a couple of ways to do it (see https://github.com/boonebgorges/buddypress-skeleton-component/blob/master/includes/bp-example-screens.php for a few options), but I suggest the following // This is the screen_function called in bp_core_new_nav_item() function all_conversations_link() { add_action( ‘bp_template_content’, ‘all_conversations_content’ ); bp_core_load_template( ‘members/single/plugins’ ); } … Read more

Serve WordPress in root path of Apache

After copying WordPress files in the DocumentRoot of Apache server. I found that URLs where rendered as wordpress/qwe. So I removed all the files in DocumentRoot and installed WordPress again. By copying the contents, NOT the directory, of the downloaded WordPress to the DocumentRoot of Apache server. Installation makes the URLs to be in the … Read more