Forum Replies Created
-
@gunju2221 Yeah that’s what I’m looking for. Right now I have my members using mentions to get “notified” on the site. I wonder why it is only for messaging and other functions and not replies. Oh well, hopefully there will be a plugin for it soon.
Nevermind, I figured it out. After upgrading, I always replace some of my theme files… I replaced the functions.php file in /bp-themes/bp-default/ which caused the problem, so I got the “new” functions.php and it fixed it. Sorry lol
Yep, it is.
Hi, when is the 0.1.9 version going to be released?
I’m using WP 3.0, BP 1.2.5, and BP-Album version 0.1.7. I didn’t know there was a newer version of the plugin. Where can I get it?
That worked. Thank you SO much!!!
Yeah, I figured… It would be great if someone were able to do this in a plugin!
Oh I see. Where would I have to put that?
I looked at it but the code on there seemed to be for something else so I’m not really sure what you mean…
That didn’t work. The problem is that I have this:
<?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) : ?> which makes the “Load More” link work. I am trying to ADD ‘per_page=35′ (which I know works when put this way: <?php if ( bp_has_activities ( ‘per_page=35′ ) ) : ?> but I need to keep, not replace, the bp_ajax_querystring part). How do I do that?
I tried using that but it didn’t do anything. ‘per_page=35′ works but what I’m trying to do is put it into:
<?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) : ?> because if i replace it with the bp_ajax_querystring( ‘activity’ ) part, the “Load More” thing won’t work anymore.
No.. where am I supposed to put that? Sorry, I’m not really a developer and I don’t want to mess anything up. Could you be more specific please?
Ok so because I removed that my “Load More” thing isn’t working anymore… Is there a way to put (‘per_page=35′) along with ( bp_ajax_querystring( ‘activity’ ) )??
I had this: <?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) : ?>
and to specify the number of posts to show on the activity stream I want to add this: (‘per_page=35′)
without having to completely remove the ( bp_ajax_querystring( ‘activity’ ) ) part.
I had this: <?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) : ?> and I didn’t know how to add the per_page part so I did it this way: <?php if ( bp_has_activities (‘per_page=35′) ) : ?> and it worked. Thank you very much!
Thanks, I’ve seen that but I’m not a developer so I don’t know how to do it…
Hi, where exactly did you put the code you posted at first & on which file?