Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 801 through 825 (of 2,230 total)
  • Author
    Search Results
  • #168433
    @mercime
    Participant
    #168428
    David Cavins
    Keymaster

    That’s too bad. A couple of questions I should have asked at the beginning:

    1. What theme are you using?
    2. If you remove the conditional we added, does bbPress return topics for the correct group?
    Ali Hendaoui
    Participant

    Hello, I have a quick questions and it would be great if I have it answered,I am using buddy press, 0n my site http://horsesiq.com/, and when members are added it shows like this: http://horsesiq.com/members/christie/, now is there anyway that I can get rid of the members so that I can have a link like this: http://horsesiq.com/christie, please let me know if there is any solution.

    Thank you

    #168236
    @mercime
    Participant
    #168001
    Isaal
    Participant

    Thanks for ur reply! 😀

    just a question: if I use BuddyPress will it function like this forum? I mean like the forum we are talking in it now and creating topics and asking questions. is this how BuddyPrss will look like?

    ty

    #167910
    maikunari
    Participant

    Just posting back with the solution in case it helps anyone else. This function will do it:
    xprofile_get_field_data('Profile',$u_id);

    In my case it’ll be:

    <?php if ( xprofile_get_field_data( 'Profile', $user_ID ) ) : ?>
         <?php echo xprofile_get_field_data( 'Profile', $user_ID ); ?>
    <?php endif; ?>

    Thanks to chifliiiii on WordPress Answers and to @shanebp.

    #167809
    4ella
    Participant

    This is the old thread but the same question, I didn’t want to spam here that’s why I will ask the same question here again, I would like to dynamically populate buddypress data into custom post types gravity forms when the user is logged in, I am succesfully populating wordpress user meta, but I don’t know the code in functions.php for buddypress profile fields to make them work, I have already asked on Gravity Help forum, but there are plenty of questions like that and the same as mine question they have never been answered, I hope that maybe somebody from this forum already had to resolve that problem in the past.

    #167803

    In reply to: Author Posts

    Hugo Ashmore
    Participant

    I think if you are using this plugin that the appropriate place to ask these further questions is on their support.

    #167680
    Peter
    Participant

    Thanks @mercime

    For your questions,

    1. Chinese
    2. UTF-8

    Could you send me a Chinese site URL based on Buddypress, and the @ mention works well?

    #167668
    Hugo Ashmore
    Participant

    @shameermohamed50 the Codex is your friend, do have a read of some of the guides there as they will answer a certain amount of your questions in setting up BP and bbP

    oedipamaas
    Participant

    @mercime – I have been reading the codex for BuddyPress, Event Manager and WordPress core. It’s just hard to keep it all straight. My only point above was that it literally would take one extra sentence when answering questions to say something like, “put it in bp-custom.php (which is a file you’ll have to create…here’s the codex link”. That’s all. OTherwise, the approach above totally worked for me too! It disabled the completely non-fuctioning registration page (I’m using a BP friendly theme, but not the default) and now I let S2 Member handle the user registration/login process. I don’t how I could ever use BP as a stand alone so there are many things in it that are clearly buggy that consistently get blamed on using any other plugin or theme. My real wish is that the wonderful devs who made BP happen make a non-buggy Pro version and make some money for themselves (while we get better docs/examples/support).

    Prolet
    Participant

    @oedipamaas, unfortunately there are many other critical points.I no longer use this plugin, because it’s structure is in conflict with all the world. I can’t use easy other theme than bp theme, all other additional plugins have to be bp related only, not to mention the fear I have to ask questions here. Most of the time all are concentrated to be irritated by wrong topics, or not telling you everything….
    Anyway, thank you very much for the information and congratulation for finding it by your self!

    Best regards,
    Polly

    #167532

    In reply to: multilingual switcher

    @mercime
    Participant
    #167480
    themefusion
    Participant

    Hey Guys 🙂 Sorry to dig up an old topic, but I came across it and wanted you to know that Avada does work with BBpress. If you had issues with it, please signup at our support forum and post up a new topic with your questions and we’ll take a look.

    Thanks!

    #167401
    daol9999
    Participant

    @mercime

    Thank you so much. Best $15 I’ve spent in a long time. No faffing around for hours and hours and hours, it just works!


    @hnla
    @henrywright-1

    I will install the new 1.8 version on a test server when its out (fyi: I am THE developer. There are no other developers to talk to.) It sounds a big step in the right direction though. In answer to all the ‘why have you done it like that’ questions (on this and another thread) that you and Henry raise is because BuddyPress is a steep learning curve and this project involved bringing together both site functionality (i.e. BuddyPress) and the design that the graphic designer supplied. The design was closer to the TwentyTwelve theme, which is why that was chosen. Then its learn and make mistakes on the way. Some things you get right, others you get wrong. Some things work, some things don’t… So to answer all your ‘whys’, ‘that’s why’.

    #167193
    Hugo Ashmore
    Participant

    @number_6 this is where – like the previous thread – we really need posters to detail their setup first before asking questions.

    You are slightly confusing BP with your theme, your theme provides many options and conditions as in this particular instance.

    This widget is part of the Custom Community theme and found in their core includes, modifying would require you to copy it out to another safe area, rename it, make mods in order that your changes weren’t overwritten if/when you upgrade the main theme files, so a child theme is called for and your widget copy placed in a new functions.php file in your child theme.

    #167168
    crashy11
    Participant

    I tried to put your code and changed user login but its not working.

    echo 'Username: ' . $current_user->user_login . "\n";

    echo 'User ID: ' . $current_user->ID . "\n";

    This situation could be done with custom post type, but another problem is that posts are not showing in category that you mark.

    I found on this forum someone had similar problem like mine:

    Posts are added to the activity stream when the post is saved.

    It’s done in the bp_blogs_record_post() function, which is hooked on to the save_post action.

    There isn’t any easy way to filter bp_blogs_record_post() to stop certain categories appearing, so, your best options may be:

    1. To unhook the whole bp_blogs_record_post() function and replace with your own
    or:
    2. Use a custom post type for your teaser posts – the built in function will only post to activity stream if the post type is ‘post’

    That questions and solution is from this link:
    https://buddypress.org/support/topic/resolved-filter-posts-with-specific-categorytag-from-activity-stream/

    If I go with solution 1. that was offered “unhook the whole bp_blogs_record_post() function and replace with your own”, where to find bp_blogs_record_post(), and just to delete it or?

    bp-help
    Participant

    @mcpeanut
    Please don’t troll your own thread and don’t take what @hnla said as an attack towards your intelligence.
    It was just a recommendation, not an attack. If your upset about him closing another thread that posed the same questions basically then don’t be. It is common for a forum with threads with duplicate content or support requests to lock duplicate posts. Sometimes duplicates happen by accident if you loose a wifi connection for instance and refresh after you reconnect because sometimes it will post the same topic twice.
    For future reference try not to take things to personally as all of the volunteers do the best we can at accommodating the requests.
    Have a good day!

    #167016
    pmcreations
    Participant

    I am using the old buddypress forum. Is there a way to bring all my current topics to bbpress? I’d rather keep my current set up with buddypress. I just want my users to be abl to get email notices when somebody responds. I guess I have two questions.
    1. Does buddypress offer email responses built in?
    2. Any suggestions?
    Thanks!

    #166446
    inge12
    Participant

    Leofitz, WangGuard will check your user base for spammers and delete them.

    See https://wordpress.org/plugins/wangguard/

    The author says that “WangGuard not only protect your site from sploggers, spam users or unwanted users, WangGuard cleans your database from them. No plugin or service does this, only with WangGuard you will get this feature,” and I believe him. His English may not be too good, but the plugin is really outstanding.

    There’s just one consideration for you: In order to have your database cleaned up, you will have to submit far more than 500 queries the first month. Perhaps you can arrange to pay for a month?

    Here’s my suggestion to reduce database queries after that. (It worked for me.) Buddypress allows for the customization of User Profiles. Add a couple of questions that require a certain amount of intelligence to answer and make them required. That means the form will not be submitted either to WordPress or to WangGuard if the required fields are not filled out. It’s not fool-proof, but it decreased queries on my very busy site to just a few a day.

    Incidentally, I added a question, “How do you plan to participate?” Among the choices offered the user are these:
    “I want to increase my online presence.” and
    “I want to sell my stuff.”

    We don’t need anyone not bright enough to figure out that these replies do not make the user desirable. Now all I need is a script to automatically kick out users who choose these replies. 😉 (As it is, they can be manually deleted if other users report them.)

    I don’t know what happens to a group when all the users are unsubscribed, so this may not be precisely what you are looking for. But WangGuard will make your site secure against almost all sploggers. (One registrant passed all tests on our site, and we had to delete manually, but that person must have registered manually too.)

    Good luck!

    Inge (http://ssnet.org)

    fpats
    Participant

    Thank you very much, that’s restored the front end profiles again.
    I’ve added your original code and removed the link to the dashboard too.

    Will i be ok leaving that commmented out or will have an effect on something else?
    Sorry for all the questions and thanks again for your help.

    If you’re available for hire i’ll be looking for someone to check over the site for us very soon to make sure it’s all as it should be.

    #166399
    4ella
    Participant

    No problem, forget my questions, @mercime ‘s suggestion to take a look at Buddydev’s plugin was right, BuddyBlog works perfect with latest versions, thanks

    #166318
    Hugo Ashmore
    Participant

    You’re going to need to get some basic skills especially in the PHP area if working with WP/BP as ther is a need quite often for running up functions – in terms of files to hold that WP provides only one really in themes functions.php, BP provides bp-custom.php that can initiate functions for BP regardless of theme in use.

    For the nav question do a quick search for ‘wp nav menu’ you’ll find previous threads, and also make use of the codex to see if any questions are covered there.

    #166125

    In reply to: Pending Notifications

    b a
    Participant

    Please try to supply answers to the following questions.

    1. Which version of WordPress are you running?
    Lastest (stable)
    2. Did you install WordPress as a directory or subdomain install?
    Directory
    3. If a directory install, is it in root or in a subdirectory?
    Root
    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    Yes
    6. Which version of BP are you running?
    Lastest (stable)
    7. Did you upgraded from a previous version of BP? If so, from which version?
    No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes, many plugins and all of them BP related, since I don’t have any error/problem with my current installation, I won’t insert here this big list. Need to mantion BP Like/Dislike though
    9. Are you using the standard BuddyPress themes or customized themes?
    Standart
    10. Have you modified the core files in any way?
    Yes, In many way 😀
    11. Do you have any custom functions in bp-custom.php?
    No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    Lastest, I downloaded it from WP Plugins
    13. Please provide a list of any errors in your server’s log files.
    Strange but no errors (with Debug turned off)
    14. Which company provides your hosting?
    Local installation
    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Linux Ubuntu, apache 2.2 php5

    #166041
    minigamers
    Participant

    Hello.
    I’ve installed buddypress and the only error given was that related to bb-config.php location, but i cancelled bp-forums because i don’t need it.
    My problem is that i can’t create groups.
    I have the groups section, i’ve even installed groups pages plugin and still can’t do it.
    On my profile page it showes me group section also but still can’t create groups.
    I have other questions related to buddypress but i realy need to get somewhere with this one first.

Viewing 25 results - 801 through 825 (of 2,230 total)
Skip to toolbar