Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 38,376 through 38,400 (of 68,915 total)
  • Author
    Search Results
  • Joseph G.
    Participant

    updated**: it’s Traject’s theme addon-functions.php. Maybe the author must be notified.

    Joseph G.
    Participant

    This is Traject’s theme functions.php. It’s not working on my part either and even with the crop image. sigh ***

    #115599
    @mercime
    Participant

    == i go to one of my buddypress sites ==

    BP version? Did you install the site in question before or after your server crash? If you deactivate BuddyPress as well, do you still have a blank page? How are your other BP sites working out?

    #115598
    Tina
    Participant

    the site that i am working on will be a directory of parent-owned at-home businesses…i am interested in users being able to have profiles with personal info about themselves, and socialize with each other through that…and then post their businesses (connected with their profile…similar to the recipes being connected to the profiles of the tastykitchen.com users) to a central directory which is fully browsable and searchable.

    things i love at tastykitchen.com that i want to use similarly on my site:

    * slideshow w/post pics and profile pics together (is this an existing or did they create this? anyone know?)
    * featured member
    * recipes button on bar w/categories list on hover…instead of a directory of recipes…i would like users to be able to add their business to a directory…so where tastykitchen.com would be listing recipes, i want to list the businesses of users
    * spotlighted recipes in the sidebar (i want to spotlight user’s businesses)…
    * popular recipes: i’d want “popular businesses”…i imagine that “popularity” is determined by how many views the recipe has had? and lists those with the most? is this part of buddypress or a hack?
    * recent recipes: i would want this to be newly added businesses
    * meet the member
    * the community feature…i would want something similar, to be able to browse user profiles…featured users and popular users and newest members, just like at tastykitchen.com when you click on the “community” button on the menu bar.

    Joseph G.
    Participant

    woot.

    #115596
    pcwriter
    Participant

    @pinhit

    Dirty hands are fun :-)

    Didn’t you already set member profiles to show only to logged-in users? The whole profile section (including the header) is being hidden whereas only the profile activity streams should be hidden. Check members/single/home.php for the code you added earlier, and comment it out or remove it temporarily to see if the display looks better.

    #115593
    pcwriter
    Participant

    @cfcunofficial

    You can achieve that with a membership plugin. A quick search of the WordPress repository will turn up several: https://wordpress.org/extend/plugins/search.php?q=membership

    My personal favorite is s2member… it does everything, and then some! :-) :https://wordpress.org/extend/plugins/s2member/

    #115592
    pcwriter
    Participant

    @pinhit

    You really are struggling with this one, aren’t you? One of the important things to look out for is being sure your “if” statements are properly nested.

    To mimic the functionality of the site you linked to above, open activity/activity-loop.php and paste the first part of the conditional (the if, message & else) immediately AFTER the following line:

    Close the conditional (the endif part) immediately BEFORE the following line:

    This will display your not-logged-in message to visitors everywhere the activity stream is displayed: in the main stream, as well as in profiles and groups.

    dude
    Member

    i had tons of trouble with this.

    Don’t know if you tried these methods but they worked for me..

    I used two plugins:

    Mail From and WP-Mail-SMTP

    with mail from I had to create a myname@mydomain in the email section of cpanel because my site was stuck in default ‘noreply@mydomain.com’

    It kinda splits your email send outs as: username @example.com
    I chose: eMail Address admin@mydomain.co.uk as the Current address WordPress is sending mail from

    With the other plugin I noticed one major edit solved the whole issue for me in terms of my site sending out the registry email verifications.

    First I chose to send out the emails with my newly created email address (made in cpanel)
    then I checked the: Send all WordPress emails via SMTP box
    then I chose: SMTP Host = localhost
    then this was the was crunch that seemed to make it work..I changed the default SMPT port from 25 to 26 and it worked !
    I also chose: Authentication No: Do not use SMTP authentication.
    sent a ‘test’ email out to a test account on my site and all was ok.

    I don’t know if this will work for you..but all I can say is it worked for me so no harm in trying.

    This issue took me 3 weeks to solve !!

    #115587

    In reply to: one name only

    I took a different approach:

    1)Buddypress general settings- rename the “Full Name Filed” to nothing… clear it out and save. This will remove the label from the reg page.
    2) Hide the full name field on the registration page with css.
    3) Add JS to mirror typed characters from username field into full name field
    requires jquery 1.4.2
    `

    #field_1 {visibility:hidden;}

    function sync()
    {
    var n1 = document.getElementById(‘signup_username’);
    var n2 = document.getElementById(‘field_1’);
    n2.value = n1.value;
    }

    `

    Call it appropriately:

    `<input type="text" name="signup_username" onkeyup="sync()" id="signup_username" value="” />
    `

    Seems to be working pretty good so far.

    ARHistoryHub
    Participant

    I’m actually joshDjenks on Twitter – no account set up yet for the Hub. I’m not terribly active either.

    Kudos on the BP Labs plugin btw! Quick admin got me thinking about other ways to streamline navigation and reduce page calls. The biggest time saver in my mind would be adding ajax to the item nav/subnav in profiles. I tinkered with it last night – still some css clean up to do but it works just fine so far. http://www.arhistoryhub.com/members/joshjenkins

    #115577
    Hugo Ashmore
    Participant

    @anesthetist As you’ll note this thread is marked as ‘Resolved’ this means that in all likely hood people are not going to respond to it.

    It is general practice not to tag onto posts but to start a new one for your issue,, explain exactly what you have done, stages reached, the files manually edited as is necessary etc.

    .htaccess lives in the root web directory of your domain.

    Paul Wong-Gibbs
    Keymaster

    I’ve only had a quick glance, and it seems pretty good. Are you or ArHistoryHub on Twitter?

    #115572
    Hugo Ashmore
    Participant

    On a cursory glance, yes you could work BP into your WP site, BP is simply a plugin for WP that extends WP to include social media aspects such as user profiles, site wide activity streams, user groups. You may want to install plugins such as BP Album+ to handle media , cubepoints for BP, or perhaps Achievements.

    You’re best off setting up a test install and working BP into your theme using the template pack plugin to help integrate BP files into your child theme – a guide on this is found in the BP codex, then run through the various features of your existing site and see whether they function as is as WP aspects or whether you need to use more specific BP plugins that are BP aware, theres a good list of available plugins under the ‘Extend’ tab

    #115571

    In reply to: one name only

    neontrauma
    Member

    Hi,

    thanks a lot; now it works!
    I got rid of that second name by editing that field in the database (making it no longer required).

    Now capital letters are possible, too: I had to change line 278 of the bp-core-signup.php from preg_match( “/[a-z0-9]+/”, $user_name, $maybe ); to preg_match( “/[a-zA-Z0-9]+/”, $user_name, $maybe );

    If someone is interested in the details: I just wrote a tutorial on this topic (it’s in German, but you’ll see the code): http://neontrauma.de/wordpress/buddypress-mit-nur-einem-usernamen-samt-grossbuchstaben.php

    neontrauma

    #115569
    fran02
    Member

    Any ideas, community?!

    Hugo Ashmore
    Participant

    :) couple of old classic links there


    @andrewbuzz
    the table aspect for layout has been mentioned, but I really need to just labour a point, tables for layout are absolutely not the way to markup pages, it’s taken a few years to get everyone on board with this but nowadays you wil no one creating layouts this way. I suspect that you have ‘designed’ your layout in PS? and then have used a tool such as DW? to construct a layout.

    I would urge you to stop and reconsider before you go too much further, table layouts are highly inflexible, next to impossible to re-factor (one of the main points with CSS-P ) not search engine friendly and a whole heap of other reasons.

    Are you preparing this layout for a client or is this an existing layout the client has come to you with?

    @mercime
    Participant

    Just surprised that you’re using tables for your layout except the BuddyPress area. Moving on, it’s all then a matter of adding styles to your BuddyPress components – floating images and lists.
    http://www.alistapart.com/articles/taminglists/
    http://css.maxdesign.com.au/listamatic/

    #115565
    dude
    Member

    I am ‘getting stuck in’, you’ll notice in my posts I’ve at least tried to have a go myself !

    theres so many files, and so many are similar in name but unless I ask someone who has experience with these things I could end up ruining my site.

    If you take a look at this link: http://swapbbm.com/ you’ll see ‘exactly’ what it is I’m trying to achieve and that is to display a similar notice in the activity stream: ‘please login or register to view the bb pins’ .

    so this would be done in the ‘activity’ files you previously mentioned right ?

    ** update **

    I tried on about 4 attempts to create the wrapper on that page and 2 out of 4 attempts in various different places made this come up on my site:-

    Parse error: syntax error, unexpected T_ELSE in /home2/pinhitco/public_html/londonbbmpinswapco/wp-content/plugins/buddypress/bp-themes/bp-default/activity/activity-loop.php on line 37

    I tried

    pcwriter
    Participant

    @hnla

    Those are valid points. I also tend to open off-site links in new tabs (especially when researching, scrounging or learning new code bits :-) ), so I can jump between sites without losing track of previously visited stuff. But, as you say, members of older generations (like my step-mother), or those not-too-tech-savvy (like my employer) can get confused when windows open automatically and overlap each other.

    It’s also true that this should be left to the user to decide. I agree, if links are set to open in new windows/tabs, this MUST be indicated to the user with a text message or icon.

    #115562
    ewebber
    Participant

    I know this is an old thread, but I’ve been using this plugin http://buddydev.com/buddypress/allow-your-users-to-change-their-username-on-your-buddypress-based-site/ – of course the old activity items won’t update

    #115561

    In reply to: FACEBOOK CONNECT

    ewebber
    Participant

    I use this plugin http://buddydev.com/buddypress/allow-your-users-to-change-their-username-on-your-buddypress-based-site/ and point people to it after then connect with WP-FB AutoConnect

    #115560

    In reply to: one name only

    ewebber
    Participant

    Try using this plugin https://buddypress.org/community/groups/buddypress-usernames-only/ which displays the username rather than the display name, this helps with using “@” replies and mentions.
    I use this and adapted my profile pages to look like this: http://www.yeahhackney.com/members/ewebber/
    You will still need a real name as well as a username

    #115559
    Hugo Ashmore
    Participant

    Closing thread then.

    #115557

    In reply to: FACEBOOK CONNECT

    4ella
    Participant
Viewing 25 results - 38,376 through 38,400 (of 68,915 total)
Skip to toolbar