Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'can find the members page'

Viewing 25 results - 251 through 275 (of 399 total)
  • Author
    Search Results
  • #119081

    In reply to: Buddypress roles

    joevansteen
    Participant

    @larrysmith1000, @Arwym, @FitzUCF, @janismo, @hnla
    I don’t know if anyone is still looking at this, but I think it is a topic that is worth pursuing. What seems to be getting lost though is what it takes to do the job.

    A facility like Justin Tadlock’s members plugin is a big help. It provides a mechanism to define and edit roles and apply them to users. That covers a lot of territory. However, unless the content management part of the software looks for and enforces those roles, it is meaningless. Justin provides a facility to do that if what you are talking about posts/pages and potentially custom post types. That is fine for WP content or even things like BuddyPress Docs where Boone implemented it as a custom content type (although I haven’t look at the details of his implementation relative to permissions). However, BP adds additional content types. And it is not just FORUMS. Groups are a content type. Private messaging is a content type. etc.

    That is where the current_user_can() checks make sense. Users should have permission to perform actions. That doesn’t necessarily mean new roles, but it does mean distinct capabilities. Those capabilities can then be assigned to any role that makes sense. But the capability list needs to be published like it is for WP https://codex.wordpress.org/Roles_and_Capabilities

    The mechanism for assigning capabilities to roles and roles to users and doing the actual check is all WP. It’s already there. Justin provides UI to access it. What I am seeing missing in BP is published string literals that have meaning in terms of capability sets and I assume the current_user_can() checks that actually make it happen. (I looked for it on Google and this is where I was directed!)

    @DJPaul you talked here in terms of BP1.3, which is now 1.5 I believe. Did any of this actually make it into the code? If not, it sure would make sense to me to find it’s way on to a revised RoadMap.

    My 2 cents!

    #118479
    mmendezmi
    Member

    Thanks so much @mercime! Fix worked- pages are displaying in the correct area, but now the sidebar is displaying beneath the content ( http://www.rowvision.com/members/miguel/profile/ ). Can I get a little assistance with this too? I saw a thread earlier with the same prob and now can’t seem to find it.

    You presume correct, I have gone through the wordpress to buddypress codex page.

    Also can you explain explain a little more about changing the tags wrapped around page titles. Where should I look to see how my theme does the page title tags?

    Thanks again- MM

    enderandrew
    Member

    It doesn’t look like permalinks aren’t working correctly.

    http://d34thst4lker.com/register/ works
    http://d34thst4lker.com/members/ works
    http://d34thst4lker.com/members/d34thst4lker/ works

    But the link to your profile is http://d34thst4lker.com/d34thst4lker/

    d34thst4lker
    Member

    and an example of my problem is, “http://d34thst4lker.com/members/d34thst4lker/”
    If you were to go to that link you will see that it takes you to the page but on the top of the browser is says “Not Found”

    PS: this site is just a demo site for test purposes… But of course I would like to get this stuff working so I know how to implement it on real sites.
    Thanks again

    #117483
    Anointed
    Participant

    what the hell….. i click the ‘edit’ my reply button above and get a page not found..>?

    omg…. bp drives me absolutely nuts, this place is a wreck

    anyhow, i was more thinking a link like:
    https://buddypress.org/community/members/anointed/activity/

    should that not show me all of my activity on the network?

    enderandrew
    Member

    @d34thst4lker I suspect this is a permalink issue as aces said above. What urls are coming up for the BP pages currently?

    @mercime
    Participant

    @careercreatrix Before there was WP Multisite, there was WPMU(multi-user) a long story https://wordpress.org/news/2010/06/thelonious/

    == 1) Do i have to “create a group” in order for people to be able to join my discussion forum? I just want one plain old discussion board, with multiple topics. ==

    Yes, at this time you would have to create a group and be a member of that group in order to post forum topics. If you only want the forums without the social networking feature, bbPress the plugin is in beta3 https://bbpress.org/blog/

    == 2) It says you have to have registration enabled, so people can register. How do I make sure it’s enabled? ==

    Go to dashboard Settings menu > General > Membership – check “Anyone Can Register”

    == there isn’t a “Create a Group” tab when I click on “Groups” in the top bar, ==

    You will find the “Create a Group” link if you go to your site’s /groups/ directory, it was never included in BP Admin Bar. So if your WP is installed in domain root i.e. http://yoursite.com/, you go to http://yoursite.com/groups. Beside the page title, Groups Directory, you’ll find the link to create a group in the bp-default theme. Or, you can go directly to the URL
    http://yoursite.com/groups/create/step/group-details/ – replace yoursite.com with your domain name.

    #115686
    dalychris
    Member

    Thanks guys but this isn’t helping me unfortunately. I need to create a ‘Register Here’ Page and somehow link it, so it pulls up the signup form. I know registration is active on my site because you can access it using the thin back bar at the top of the page (plus I have 10 members who signed up this way) BUT I just want a registration page so its easier for people to find. Please can you take a look at my site to understand the prob…. http://www.eastendersspoilers.co.uk

    Thank you so much people : )

    #114730
    sidjags
    Member

    @DoctorDR looks like i’ve found the solution… and i hope everyone out there will find this helpful too.
    Problem Statement: I wanted to have a custom set of 10-15 avatars uploaded into a folder, and buddypress would have to pick from any one of these to assign to members(on random) everytime then login if they havent uploaded their pwn profile pic.
    Why: Lets say am on the members page, and everyone is displayed over there.. we can get different custom pics rather than just one custom pic.
    Solution:
    Step#1: Change the settings to “mystery man” in your buddypress backend.
    Step#2: Upload pics into a folder in your child theme (i uploaded them into wp-content/themes/default/images/avatars/ ).. my theme name is : default, and in it i made a folder for images, and once again another folder called avatars. now… within avatars i put in 10 pics named the following “1avatar.png”, “2avatar.png”, “3avatar.png”… and so on… till “9avatar.png”
    and lastly…
    Step #3: Paste the following code in your functions.php child theme (taken from a combination of other sources)

    `function myavatar_add_default_avatar( $url )
    {
    $length=1;
    $characters=’123456789′;
    $string=”;
    for ($p = 0; $p < $length; $p++) {
    $string .= $characters[mt_rand(0, strlen($characters))];
    }

    return get_stylesheet_directory_uri() .’/images/avatars/’.$string.’avatar.png’;
    }
    add_filter( ‘bp_core_mysteryman_src’, ‘myavatar_add_default_avatar’ );`

    and thats it… give it a shot… worked great for me! i hope this helps others too cause i saw a lot of people asking for this to no avail…

    gregfielding
    Participant

    Thanks for the find. I’m trying it out now, giving the site/activity/ page and site/members/ page priorities of 1 – we’ll see if the sitemap picks up any activity…

    Scotty501
    Member

    hye @hnla – thanks as always for posting – but I dont have this file as I am not using the default.

    Sorry I maybe a little slow – but how to find the members page – I dont have this listed under my theme in any of the directories – I must be missing a brain cell today – sorry if its obvious – but I can’t see it anywhere search through my FTP client.

    #113591
    4ella
    Participant

    @hnla , @dataprise1 Thanks guys for your kindly respond , I have many plugins which are running once a month (data importers , category importers , group joiners , privacy plugins , many plugins not important for running the live website at all , but making my life easier when I want to import something , protect something etc , ) I was thinking that if those plugins are not in use at the moment , at that page , they don’t create bigger page load and I don’t need to deactivate them or delete them.
    But I am laik , I have realized that I am possibly wrong because as @hnla recommended I have also installed HttpFox , it is showing me a lot of data , for sure some expert can see a problem , but to tell the truth I don’t understand this tool at all , I can’t understand which function-page is taking too much time, I see some facebook addresses – scripts delays (also 55sec.), really many gravatar callings , some google API scripts , Google Maps callings (even if that page doesn’t contain any Map on ) I am ready to give up all gravatars on my website , allowing only uploaded images , I have also deleted all gravatars=avatars from activity stream (in css display:hidden them – maybe there should be a problem ? I didn’t deleted the codes from templates , so it is calling css which returns display:hidden ), but :
    Can I ask if anybody of you can take a look at my website ( http://www.4ella.com) to see it with Httpfox or similar tool if there’s something very unusual , uncommon , notable ? Like this I would like to encourage anybody who would like to use this website for test purposes before I will launch it and put in live environment.
    Tonight I will try to deactivate all my plugins together , and will start to activate them one by one (before I made it on contrary , deactivating one by one , so there were always 59 other plugins running) , but when I make them running alone , how can I benchmark them ? HttpFox is showing me a lot of data , how much time for every page is a lot ? When controlling it with HttpFox I was trying to see difference between buddypress.org and my website and it was only showing me difference with some facebook pages (I am using premium facebook auto connect plugin ) . I was hoping that I will find here some tips from other users for some plugins which takes more time to load than other – for example:
    I can easily live without BP – achievements plugin , but I can’t imagine to give up bigger plugins like Buddypress Docs , Buddypress Review , Gallery and also some other smaller plugins , I was hoping to find some tool which will tell me that Buddypress BP- Achievements plugin together with other one takes too long .
    About the change shared hosting on Bluehost.com. Hosting change I want to be a last solution , because the website is not earning any money and I can’t allow any dedicated server yet (I will inform myself about VPS – somebody on this forum adviced this cheaper solution)
    Any help would be very appreciate Daniel

    #113435
    ppdesigns
    Member

    In answer to andrea all of these work…..which are the pages I created…which are on the far right of the menu bar

    http://massagebournemouth.com/wp/index.php/register/
    http://massagebournemouth.com/wp/index.php/members/
    http://massagebournemouth.com/wp/index.php/groups/
    http://massagebournemouth.com/wp/index.php/forums/
    http://massagebournemouth.com/wp/index.php/activity/

    and all the admin normal links work
    but its like mercime and hnla said….its the server :-( so hence the rest aren’t unless I can find how to alter the programming somewhere-LOL

    dix

    #112544
    berndw
    Participant

    Hi @ARHistoryHub, thanks for the reply. However I can’t find the plugin you mention. I searched the plugin directory for “Exclude Links from Navigation” or “Exclude from Navigation” but can’t find it. The only match that gets close is “Exclude Pages” but don’t seems to be what I need.
    I.e. I created two pages and they were automatically added to the subnav between the existing items. I’d like to move them to the front (after the ‘Home” menu item) and get rid of the last two items (Photo, Video). Maybe this screenshot will help explain me: http://www.wolsoft.com/contents/uploads/etc/wp-bp_subnav.png
    Thanks for the help.

    #112278
    aces
    Participant

    I don’t understand what you mean by ‘bunches’….

    If you look at the wp-config-sample.php it should have a text block at the beginning like the following (quoted from wp 3.1.2)
    `
    <?php
    /**
    * The base configurations of the WordPress.
    *
    * This file has the following configurations: MySQL settings, Table Prefix,
    * Secret Keys, WordPress Language, and ABSPATH. You can find more information
    * by visiting { @link https://codex.wordpress.org/Editing_wp-config.php Editing
    * wp-config.php} Codex page. You can get the MySQL settings from your web host.
    *
    * This file is used by the wp-config.php creation script during the
    * installation. You don’t have to use the web site, you can just copy this file
    * to “wp-config.php” and fill in the values.
    *
    * @package WordPress
    */
    `
    those /* and */signs mark the beginning and end of text blocks that should be ignored in a .php type file…. ( this also true for single lines beginning // )

    Make sure that is the case with your config file.

    To edit php files you should use a text editor such as notepad++ rather than a wordprocessor such as MS Word.

    #112180
    dains
    Participant

    This approach ought to work with members and groups too I think? My need is to show the “My” tabs as default in those sections. I understand the bp_ajax_querystring approach @boonebgorges put out, but can’t find any documentation on what to throw it (or even ON it – so many undocumented things in BP :( ).

    Can I assume that in that example, ‘friends’ is the slug for that tab? If so, check me on this – I can probably just change the example to detect which main page I’m loading and throw bp_ajax_querystring the slug for the tab to load, and I’ve got my default tabs?

    #110690
    mud1
    Participant

    Hi there,

    function getDisplayedUserEmail() {
    global $bp;
    global $wpdb;

    $id = $bp->displayed_user->id;
    $request = “SELECT * FROM $wpdb->users WHERE ID =” . $id . “”;
    $result = $wpdb->get_row($request, ARRAY_A);

    return $result;
    }

    Here is a possible solution. Just copy/paste into either function.php or bp-custom.php. I had to this through database query, because I could not find a bp-function for this, or none of them worked for me.
    I’m not a PHP coder so If you can simplify the code, or do it better, feel free to modify it.

    You have to call this function in ‘profile-loop.php’. You can find that in members/single/profile/ template folder.
    You can call it after the endwhile or whereever you want.

    #110383
    @mercime
    Participant

    @krikette Know that 99.9% of those who help out here are volunteers who share their knowledge and skills whenever they can. There’s no obligation for anyone here to answer any question, yet many have generously guided newbies to site launch. There might be those who are arrogant, yet you’ll also find those who are very helpful, so kindly refrain from painting everyone with the same brush. The traffic of helpful volunteers is less than the traffic of newbies or those seeking help, so you can see the imbalance. You have to be patient yet persistent :-)

    == but it is obvious that there is a major problem with buddypress SOMEWHERE and no one is doing a damn thing to figure it out. ==

    Unless you post what problem you’re having with your installation, no one can help you. I see that this is your fist post, and you are venting because … of unanswered questions by others before you? Many have successfully launched BuddyPress sites like those featured at http://www.bpinspire.com/ and your site could be featured there too if you think positively and learn what needs to be done to overcome the challenges that face you.

    Some tips:
    1. Read – https://codex.buddypress.org/getting-started/before-installing/
    BP Codex is your friend https://codex.buddypress.org/home/
    2. Use our site search or use Google search as the question could have already been answered in forums or in external sites.
    3. Bumping topics frequently is a no-no. You can bump your topic if unanswered after 24 hours.

    #110022
    Hugo Ashmore
    Participant

    @mercime Blame it on the backticks, bad workman blames… ;)

    Off to posts a forum alert “mercime is logged in , would all users kindly take caution when posting and if they can’t find their post later please search at random through the last 100 threads”

    #109469
    Nahum
    Participant

    @imjscn you’re absolutely right, “adding something like gravity forms” plugin will be needed for frontend posting by users. although it is a premium plugin, you can also find some free front-end posting plugins that may work. sorry i didn’t clarify that important detail. with frontend posting plugin all your registered members can make posts, er, questions. I’ve also connected achievements very nicely with the setup i mentioned and user stats of Q&A. I really think you could do it with MU install and a dedicated subblog to host yoru Q&A site, unless your main site is the Q&A site.

    With the setup i mentioned, you can easily set up a posting form for users to start questions “with there own permalinks” since they are “posts” afterall. Questions list page is just a reworked index.php.

    “user’s Q&A’s can be listed under user’s home page tab — this you can do with a plugin if your Q&A is on the main site. If on a subdomain then you can just use the author.php to list the user’s questions and answers (but answers it takes a little more tweaking)

    rating system, you can use any of the top post rating plugins available. GD star plugin does good job with both “posts” and “comments/answers” <– to show best answers.

    To do all you just mentioned, “registration” is going to need to be required in order to tie Question/post data to the User, with WP you can just set the comments as open to all and users will not need to be registered to answer. But IMHO I always just make everyone register quickly with just the email and name, that’s what they would be entering to comment on open commenting anyway, so why not register them as a user at that point.

    your thoughts are not un-realistic at all. it’s doable and been done!

    #109367
    James
    Participant

    @chouf1

    thanks for reply,
    even if I would find necessary octals for my language, it still would not solve my issue, since biggest problem is updates and, of course, I can not ask my users to use octals in their updates.

    at the moment they will have to refresh page after every update, maybe some other solutions?

    can plugin “RS activity refresh…” solve this issue?
    maybe I should completely switch off javascripts for updates?

    #108893
    imjscn
    Participant

    @tim , yes , if you don’t need to use original js/css, then, you don’t need to register them back
    `function my_jscss_remover() {
    wp_deregister_script( ‘the-handle-name’ );
    //and others;
    }
    add_action( ‘after_setup_theme’, ‘my_jscss_remover’ );`
    You can find the “the-handle-name” in the plugin’s files at the line when it load the js/css, it normally use wp_enqueue_script , or wp_enqueue_styles, to load js/css. Sometimes they can also use reqire function, but as long as you find the specific file.js , that’s the line.

    When you register your own js, the final parameter “true” means put it in footer. If your js require to run before the page finish loading, you don’t need this “true”.
    You can also add like this: if bp_is_page(‘xyz’), then, the js will be loaded only on the page you need.
    Please remember that, at this point, your js/css are not minified yet.

    #108887
    Nahum
    Participant

    @gunju2221 thanks for the response. I almost forgot I do have a plugin in place that is supposed to handle logout redirects, when the logout works I do get taken to the homepage. But like I said, sometimes it is the case where it still appears as though I’m logged in because I can see my avatar and username.

    I just wish I could find something that just logged in and logged out with ease!

    #108674

    In reply to: How do you do this ?

    danbpfr
    Participant

    @Boone Gorges That is what i done first ! But helas, it doesn’t work: i had a blank page.
    And that is why i asked here…. but if you can give me the command syntax for that function_exists for bp_dtheme_blog_comments (i didn’t find it in WP or BP), i would appreciate ! ;-)

    #108632
    Sparkey
    Participant

    Thank you guys so much for getting back to me. I really want to straighten out this page, our visitors are commenting all over the place or not at all.

    @Chouf1 Yes, that is line is what I am changing, but the output doesn’t change.


    @Virtuali
    Yes, that is the location that I have been working on, there was no comments.php in my child theme folder so I was editing the one in bp-default, when editing that didn’t change the output, I added a comments.php file to my child theme, still no change to the output. I tested the backend theme editor, when I added the comments.php to the child theme that is the one that it started editing, where before it had been edting the comments.php in the bp-default folder.

    Maybe there is some kind of cache system I can’t find, I know in Joomla when I get this frustrated, I remember the built in cache, I have cntl-f5ed it a couple times.?????

Viewing 25 results - 251 through 275 (of 399 total)
Skip to toolbar