Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,276 through 19,300 (of 69,104 total)
  • Author
    Search Results
  • #170901
    Xevo
    Participant

    Personally I would recommend a host close to where your community is located. This helps a lot with speed already. Since most of the “recommended” hosts are located in US, which will make your site load slow if your for example located in Europe.

    #170881
    smartino53
    Participant

    to the group,

    I am running WordPress 3.6 and BuddyPress 1.8.1 and have the exact same problem as above. When I fill out the Registration Form and his submit, it just blanks out my “Confirm Password” field and re-displays the form with the original data that I entered. I have tried changing the Twenty Twelve or bp-default themes, but no luck. Any thoughts?

    thank you!

    #170877
    leegillett
    Participant

    Hi Guys – had the same problem but simply used a WordPress user approval plug in which worked fine with BuddyPress. I used: https://wordpress.org/plugins/new-user-approve/

    #170876
    GearMX
    Participant

    Update: When logged in, I am replicating the problem due to the toolbar appearing in the header. The solution above works when a user isn’t logged in. Furthermore, “responsive mode” doesn’t have these issues.

    #170875
    GearMX
    Participant

    I was having the exact same problem (BuddyPress 1.8.1 & WordPress 3.6). I found a solution: I turned off “Show the Toolbar for logged out users” under the Buddypress settings. It seems that the image mapping for menus may get misaligned when that setting is activated (or possibly some other conflict)

    All of my menus work again on the iPad & iPhone ๐Ÿ™‚ It should work for you too.

    #170855
    Technoshaman
    Participant

    I’m working with Gabor and have a complementary question.

    In Using bbPress 2.2+ with BuddyPress I read in the “Migrate BP Discussion Forums to bbPress” section that bbPress has a bunch of cool features that BP Discussion Forums doesnโ€™t. Isn’t one of those features that a BP group using bbPress can have multiple forums?

    #170854
    hughshields
    Participant

    After doing some research I have found that the avatar upload step was showing up in my child theme but it has been discontinued due to security risks with uploading images to the server for non-registered users. I cut this block of code out of the register.php file per the directions in this codex page:

    https://codex.buddypress.org/developer/releases/developer-and-designer-information/

    Topic closed

    #170852
    danbp
    Participant

    Hi @number_6,

    Members can post from front-end: http://buddydev.com/plugins/bp-simple-front-end-post/

    Maping post types, markers, etc
    Study this plugin or his pro version (very expensive $15 !)
    https://wordpress.org/plugins/wp-google-maps/

    How to list your members posts (aka reviews) on their profile ? Read carefully here:
    https://buddypress.org/support/topic/resolved-show-posts-written-by-user-on-profile/

    Maybe this will help you !

    ps: cool radio !

    #170850
    hughshields
    Participant

    A few things to add to the situation.
    I have looked in the register.php file which I can modify in my child theme folder (Registration/register.php). The code to upload an avatar during the registration process exist at the end of the register.php file. The upload step however only displays when I have my suffusion theme active. It does not show up in the default twentytwelve or twentythrirteen themes or the buddypressdefault theme.
    The final step of the registration process says “Your Current Avatar” and gives the option to choose a file and upload the image. When I select a file and click the Upload Image button the cropping tool should display but it doesn’t. Instead I get directed back to an empty registration page.
    Please let me know if anyone has a fix for this. I would really like to use the avatar upload in registration and I think others want this option as well.

    #170849
    Ben Hansen
    Participant

    not really any different from any other plugin, install, activate, the instructions on the repo page are a little dated, there is no wizard anymore.

    #170837
    danbp
    Participant

    You have nothing to add to bp-custom.php
    If you’re on a local install, verify that the gettext php module is activated.
    If you are on a network install, you have to set your language in WP’s settings
    The translation file path is wp-content/languages/buddypress-sv_SE.mo

    #170832
    kamal.r.php
    Participant

    @modemlooper: yes I got this.
    Thanks

    #170831
    modemlooper
    Moderator

    if you dont have header-buddypress.php file then it falls back to the default header.php

    #170818
    xiot
    Participant

    @hnla

    Hi Hugo, thanks for the advice!

    I tested it out, but still no luck with that. I contacted the Theme creator of the template i’m using, but when i change the post title to not act as a link. The Buddypress Profile Title is still a Link.

    It doesn’t act 100% like a common post title. Within the title it is a normal link. So it catches the CSS for a link, while a normal Post title uses its own styles.

    I checked my code when whatching the site and it shows me the divs it it creating.

    <div id="page-0" class="post-0 bp_members type-bp_members status-publish hentry">
    				
    				<h2 class="page-title"><a href="http://mysite.com/member/admin/">Admin</a></h2>
    

    and so on.

    I can’t find out what I have to change that it’s not a a link anymore.

    Any advice?

    Thanks so far, i really appreciate your help Hugo.

    #170814
    kimz
    Participant

    I’ll check bp_get_current_signup_step(),

    and putting the code on the registration page seems to be a simple and good idea,

    #170813
    Squirrel
    Participant

    Hi

    Thanks @modemlooper I managed to figure it out after trying a few things and your conditional helped me deduce it.

    if ( bp_is_current_component(‘activity’) && !bp_is_user_activity() ) {

    worked for me.
    (redirect if on main activity page but not own activity)

    #170810
    Xevo
    Participant

    Just put the actual code on the registration page?
    You can edit register.php in the theme.

    You could also take a look at bp_get_current_signup_step(), if you want to make it an actual step in the registration process.

    #170809
    kimz
    Participant

    I did something similar,

    I created a db table with the members’ names and numbers,

    and a php form with to field to check the input data with the db table,
    if it’s correct the user is redirected to the registration page,

    but I was lookin for something to integrate between this page and the registration page, like a way to encrypt the link or deal with it as a registration step, you know what I mean? ๐Ÿ™‚

    #170807
    Xevo
    Participant

    Maybe you could add a form that shows when a users tries accessing the register page that would require them to enter a security code first before seeing the actual register page.

    Something like

    if(!is_user_logged_in()) {
       if(!$_POST["access"]) {
         -show access form-
       } else {
         -show register page-
       }
    } else {
      -redirect user since he's already logged in-
    }

    (Just a raw sketch)

    #170805
    kimz
    Participant

    Thanks for your contribution @Xevo

    all users are already redirected to the login page if not logged in,

    but I want to allow only the users with the correct name and membership number to access the registration page

    #170804
    Xevo
    Participant

    Just redirect any url towards the register/login page if the user isn’t logged in?

    #170798
    Xevo
    Participant

    Because the forums inside buddypress only work for buddypress groups. If you want a global forum, you will have to install bbPress as well.

    #170794
    becskr
    Participant

    Jetpack->WordPress.com Stats->Configure->Put a chart showing 48 hours of views in the admin bar.

    Then go to Settings->General and see what New User Default Role is set as.
    Anyone other than subscriber will see the stats. You will have to go back and change the subscriber settings for anyone that registers.

    #170793
    kamal.r.php
    Participant

    @roger: I have installed buddypress plugin in my wp site but there is not any header-buddypress.php file exists.

    still header is displaying. which file is used to display header.?

    #170786
    kamal.r.php
    Participant

    Hi I have installed buddypress 1.8.1 but I am not getting forum menu in site.

    how to activate forum in 1.8.1

Viewing 25 results - 19,276 through 19,300 (of 69,104 total)
Skip to toolbar