-
Henry replied to the topic Private Message Button in Member List Loop in the forum Installing BuddyPress 12 years, 10 months ago
I’m still scratching my head with this one. It must be my install playing games. In the end I got it working with
Anyway I thought why not just build the link and throw it directly in the friends template?
-
Henry replied to the topic Create Group in the forum How-to & Troubleshooting 12 years, 10 months ago
Once logged in as a member, try navigation to the Groups area. You’ll then be given the opportunity to create a new group.
-
Henry replied to the topic Tranfering / Moving Domain Name in the forum How-to & Troubleshooting 12 years, 10 months ago
There isn’t a button or setting that will move everything for you. You could pay someone to do it if you’re not comfortable with doing it yourself. The cost involved for moving a stand-alone WordPress install (files and db) should be reasonable.
-
Henry replied to the topic Change TITLE tag of main activity feed in the forum How-to & Troubleshooting 12 years, 10 months ago
You can edit the template or a better approach is to create a localisation file:
https://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/
-
Henry replied to the topic Creating New Plugins in the forum Creating & Extending 12 years, 10 months ago
Even though your plugin is BP related, it might be worth posting the question in:
https://wordpress.org/support/forum/plugins-and-hacks
Your reach will be extended to the WP plugin dev community
-
Henry replied to the topic One Activity Stream ( Personal, Mentions, Friends ) in the forum How-to & Troubleshooting 12 years, 10 months ago
@frontburnr thanks for pointing out that plugin. Will be v helpful until #4988 is implemented!
-
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
$query = new WP_Query( 'post_type=portfolio' );More info on how you can use the WP_Query class:
-
Henry replied to the topic Tranfering / Moving Domain Name in the forum How-to & Troubleshooting 12 years, 10 months ago
There is a Codex page which will talk you through the steps you need to do when the time comes…
-
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
Great stuff, glad you got it to work!
-
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
You should be able to.
Try changing
$query = new WP_Query( 'author=' . $user_id );to
$query = new WP_Query( 'showposts=1&author=' . $user_id ); -
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
Yep! not really that hard at all :} Check out the WordPress Codex, you’ll find lots of useful stuff on there too…
-
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
Do you mean this “the_field(‘featuredimage’);” is displaying the feature image URL? If it is, then you can just wrap some HTML around it:
<?php
$user_id = bp_get_member_user_id();
$query = new WP_Query( 'author=' . $user_id );if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();…[Read more] -
Henry replied to the topic [Resolved] Show member recent post in members loop in the forum How-to & Troubleshooting 12 years, 10 months ago
Try putting this in members-loop.php
<?php
$user_id = bp_get_member_user_id();
$query = new WP_Query( 'author=' . $user_id );if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
//display title
the_title();
//display content…[Read more] -
Henry replied to the topic Stop page going to top when menu item is clicked(activity/profile/messages etc?) in the forum How-to & Troubleshooting 12 years, 10 months ago
My solution was to hide the header image on all areas of the site except the homepage.
Maybe that would help you?
-
Henry started the topic Blog URLs – multisite in the forum How-to & Troubleshooting 12 years, 10 months ago
I’m using path based URLs so when a member creates a new blog the URL will look like this:
example.com/BLOGNAME/2013/06/25/hello-world/
This set up doesn’t allow for 2 blogs with the same name. Does anyone know if it is possible to have blog URLs work something like this:
example.com/members/USERNAME/BLOGNAME/2013/06/25/hello-world/
It may not…[Read more]
-
Henry replied to the topic "My Sites" in the forum How-to & Troubleshooting 12 years, 10 months ago
If the member has no friends, the friends tab will still show, so yep, this is how it supposed to work.
-
Henry replied to the topic Stop page going to top when menu item is clicked(activity/profile/messages etc?) in the forum How-to & Troubleshooting 12 years, 10 months ago
Your header HTML wouldn’t be in style.css. It would be in your theme’s header.php.
Links are everywhere. You’d basically be looking for every inbound link (which would be a huge undertaking). You may be able to do something in .htaccess but that seems overkill
Perhaps someone else knows of an easier approach?
-
Henry replied to the topic Prevent from spam messages. in the forum How-to & Troubleshooting 12 years, 10 months ago
Have you tried searching the WordPress plugin repository for something like ‘buddypress spam messages’?
A good plugin that will certainly resolve the issue is
-
Henry replied to the topic Stop page going to top when menu item is clicked(activity/profile/messages etc?) in the forum How-to & Troubleshooting 12 years, 10 months ago
The way to do it would be to put an id of “top” on the HTML element directly under the header image. So something like this
<!-- end header -- >
<div id="top">...</div>Then append all of your links with #top
-
Henry replied to the topic [Resolved] bp-default sidebar login not working in the forum How-to & Troubleshooting 12 years, 10 months ago
Same here after an install of 1.7.2 and 3.5.2 with multisite.
It does seem to be an issue so I suggest you file a bug report at https://buddypress.trac.wordpress.org/
- Load More
@henrywright-1
Active 11 years, 3 months ago