Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 2,201 through 2,225 (of 2,990 total)
  • Author
    Search Results
  • catwebweaver
    Member

    Hello-

    At this website: http://MRSA30day.com

    we are having problems with the log-in URL link in the BP navbar re-directing to the root. This self-hosted WordPress install is in a sub-folder: /newMRSA30day/ and the login needs to be directed accordingly. Which template do I edit to make this change?

    Also, I cannot find the default page template file in the buddypress fun folder, even though I know it exists. What is the title?

    3rd – how do we remove the comments from the default home page template?

    4th – we want members to be able to write their own blogs. Is this possible with the self-hosted version or do we have to use WPMU?

    Thank you,
    Web Weaver

    edelwater
    Participant

    A lot has already been written about URL/URI design, the new WordPress 3.0 enhance support for Custom Posts and Custom Taxonomies so I leave it to the reader to “Google-Upon” it to find out out more about it.

    The new WordPress additions bring WordPress a step closer to a real CMS system. A step closer since it will bring many new WordPress applications enabled by these new options but it also makes it apparent that it is really in the core a system for building weblogs.

    In CMS systems very roughly spoken we have something called nodes which is a very generic “thing” often tied to a unique URL. So /animal/goat is the node about a goat.

    To be honest I’m currently totally LOST with regards to the architecture behind WordPress with these new custom posts and taxonomies enhancements.

    I just take a little outtake on what’s now present:

    So… the core thing I don’t understand:

    – why is there the difference made in all these types of content while they could have just become the same thing.

    In the example above you can decide to make a custom taxonomy for movies e.g. if you write 100 posts about startrek1 an 100 posts about startrek 2 you could make a term “movie” and a taxonomy “startrek1” and “startrek2” to label your posts with. When you then type /movie/startrek1 you get all posts about startrek1. Sadly when you type /movie you do not get all posts where you used a taxonomy related to that term.

    In the example above you can also decide to make a custom post type “movie” you can then write a custom post of type movie called “startrek 1” and the benefit is that with /movie/startrek1 you have unique url to your startrek1 postingS(!) and with /movie you get all your movie posts. Nice for url hacking.

    In the example above you can also decide to make a custom field “movie” to tie to your e.g. blogpostings. So you write a post about startrek1 and then fill you custom field “movie” with “startrek1”. In this case you do not get any url support…

    Is there any difference here what you try to achieve from the point of the social graph/urls? Nope.

    Reading through the forums you can now e.g. also see questions about comments. When you tie in buddypress you even could say that /movie/startrek1 could involve your forum or group you wanted on that page.

    In short: both in the database storage and is the url representation of “objects” and/or “taxonomies” and/or “whatever” I don’t understand which way all of this is heading.

    Because in my viewpoint all of this is much simpler when I look at it from the viewpoint of a url (and url hacking). An endpoint of a url is simply a node, whatever on that node is. It “represents” something that could just as well be the “term”.

    I think that (custom) fields, (custom) posts, (custom) taxonomies are all of the same. If I would be a facebook person I would say that /movie/startrek1 is an endpoint for everything around that movie. What I would want is say /contact/edward.de.leau is the node for “me”. and /contact/edward.de.leau/addresses shows then all my addresses. While /address/mystreet_63_amsterdam shows my address and /address/mystreet_63_amsterdam/contacts shows all persons living on that address.

    I would expect not only url handling doing this (so everything is clickable) but also the database structure underneath e.g.:

    Taxonomies versus Custom Post Types example 1

    Suppose you have –whatever- relational database (just pick one) and you want to represent the records as custom-post-types of type

    . No problem. Just loop through the list of tables and add them as custom post types (register_post_type(‘
    ’,$args);). The fields of the records then become custom fields which you attach to this custom post type via e.g. a nice meta box on the right hand side.

    So /wp_term_relationships/record_1 would display the contents of that first record another one would be /wp_posts/recorcd_23

    The problem is now how you are going to represent the relations between the tables (hence relational database). What you want to indicate is e.g. that with 1 record within a table there are 3 related records in another table e.g. wp_term_relationship –> wp_posts. A nice thing is that /wp_term_relationships shows all records of that table.

    Laying the relation now is more difficult since you can not lay relations out of the box. You have two choices here. Since we have two relations outgoing out of the custom posts types either via custom fields or via a custom taxonomy.

    1. via custom fields you would have to code a custom field that does a query on all custom post types of a certain record and then pick the ones that are related. In the gui you then would have to make them links to the correct custom post type object of the related item.

    2. via a custom taxonomy you could create a custom taxonomy per record e.g. wp_term_relationship_record_1 and then “tag” the records that are related with this custom taxonomy.

    In terms of work it is the same: you have to go to the specific record and then click either the custom field relations or click the custom taxonomy entries.

    The advantage of the taxonomy direction is that it becomes a hyperlink and brings you to a record 1 page where it shows all related records. Unfortunately this is not the custom post record 1 page, so you have to code something for every entry to show to custom post on top (or something likewise).

    The advantage of the custom fields is that the items will be more or less more easier to select via your own written selection system. The disadvantage is that they will not be clickable in the gui. So you will have to write that link to the custom post type object yourself AND you will have to add a loop on there yourself showing all related records.

    So in this example:

    /wp_posts/ : shows all records out of the box IF using custom fields otherwise shows nothing if using taxonomy
    /wp_posts/record23 : shows the record23 posting but the related records you will have to add yourself (when using custom fields) or visa versa: shows all related records but not the custom post object of record 23 itself (when using custom taxonomy).

    I don’t know yet which is the easiest way.

    One in-the-middle-solution could be to also “tag” the initial record with the custom taxonomy of the relation and then define that one to be “sticky” so that it appears on top and when coding against it so you know which one is the “from” and which ones are the “to”.

    #11989
    gunota
    Member

    Hi,

    I have a couple of questions regarding Buddypress:

    1. Is there an exixting plugin or method that will allow members of a BP site to include their own existing domain in their profile?

    2. If a member already has an existing blog, can they rss feed their blog posts from their own existing blogs (outside BP) into a BP site without having to create another blog in BP? If possible, how can it be done?

    Thanks for reading and the help.

    #80013
    rossagrant
    Participant

    Hahaha, sorry to ask so many questions, I’m getting in a muddle but after playing with @mentions I think I get it now.

    I get an email if someone mentions me in their update, I also get an email if someone replies to one of my updates.

    I DON”T get an email though if someone simply @mentions me in a forum post. I can view that in my @mentions but there is no notification.
    Is that right and if so can we have a way of receiving a notification if someone mentions us in a forum post.

    Also I only get emails, it doesn’t appear in the notifications in the toolbar. Is that how it should work also.
    Thanks so much
    Ross :)

    #79700
    byandreas
    Participant

    Sorry, but… Could you explain that so a newbie could get it too? :) Where, What and How are questions that often pop into my head reading the forums…

    #79564
    Kalman Labovitz
    Participant

    UPDATE:

    I found an answer to my second questions. There is a plugin that allows you to set runs for each profile field, https://buddypress.org/community/groups/bp-profile-privacy/home/.

    Still looking for a solution to my first question. Any help would be greatly appreciated.

    Kalman

    #79553

    In reply to: Quick questions

    Nathan Gelston
    Participant

    i ended up getting it to work, using the following code: http://pastebin.com/HjnNNZwV

    #79547

    In reply to: Quick questions

    Nathan Gelston
    Participant

    so, i’m trying to create an additional nav option and so far i’m not having much luck. i want it to direct to the user’s profile (the same way that clicking on their name once logged in does) and am not having any luck.

    this is my current code: http://pastebin.com/x9mTNYA8

    i’ve tried quite a few different bits of code in the second php echo, with no luck… could anybody help me out with what the correct code would be?

    any idea why this won’t work?: http://pastebin.com/ehLS0CyN

    #79545

    In reply to: Quick questions

    Nathan Gelston
    Participant

    and once again… i was able to change the titles of nav options by editing bp-themes/bp-default/header.php in the appropriate locations. thanks anyway everybody!

    #79543

    In reply to: Quick questions

    Nathan Gelston
    Participant

    i really need to look into things a bit further before i post here ._.

    i managed to remove “all members” from activity by removing line 22 of bp-themes/bp-default/activity/index.php (http://pastebin.com/E8yQh0CW)

    now just to figure out the activity tab on the main nav…

    #79537

    In reply to: Quick questions

    Nathan Gelston
    Participant

    sorry to keep reviving this thread, just some more stuff i need help with;

    i’d like to remove the “all members” link from activity, so users can only view their friends’ activities and not the activities of the entire site.
    i’d also like to rename the ‘activity’ tab on the main nav to ‘home’ and change the ‘home’ tab to ‘news’.

    #79531

    In reply to: Quick questions

    Nathan Gelston
    Participant

    thanks heaps pcwriter, that’s exactly what i was after!

    #79446

    In reply to: Quick questions

    pcwriter
    Participant

    @Nathan

    To redirect users to their profile when logging in: https://wordpress.org/extend/plugins/bp-redirect-to-profile/

    #11836
    Arpit
    Participant

    Hi all,

    I’m very new to wordpress and buddypress. I have some questions regarding customizing the Group.

    1. Is it possible to change the name from group to something else for example say “project”
    2. Is is possible that i can create to different group for example say “project1” and “project2”
    3. Is is possible to create a image gallery for the group.
    4. Is it possible to add extra text fields and upload fields for example i have a group called project and for that project i want to add “description” “comments” “File upload (i.e .doc, .PDF, PPT) field”

    please help me in this

    #79427

    In reply to: Quick questions

    Nathan Gelston
    Participant

    thanks heaps. can’t believe the “base” name was such an easy fix – here i was logging into phpmyadmin and manually editing mysql databases when it was right under my nose!

    as far as the activity stream goes, i still want the latest blog posts to be the homepage, but when a user logs in, i want it to take them to their own activity stream – the same as clicking on ‘activity’ would do once they’re logged in.

    will look into the options for locking people out, thanks once again!

    #11833
    eyaldrori
    Participant

    I was trying to use the SEO for buddypress plugin by sven lehnert.
    There is an old version and a newer one, but I encountered problems with both.
    two questions –
    1. when I used the new version clicking on the “Save changes” button didnt do anything.
    2. I tried the older version – I couldnt get the plugins page to work.

    Any Insight on that?

    #79424

    In reply to: Quick questions

    pcwriter
    Participant

    @Nathan

    To change the base profile field group name, go to your WP Dashboard. Under BuddyPress > General settings, you’ll see the first entry allows you to change this.

    To set the Activity Stream as your home page, go to your WP Dashboard again. Scroll down to the bottom and, under Settings > Reading, you’ll see the first entry allows you to choose what to display on the front page. Click “A Static Page”, then from the dropdown, select “Activity Stream”. Note that you’ll have to create a page for your Posts Page.

    To “lock people out” of certain content areas, you could customize your child-theme templates to display what you want to logged-in/non-logged-in users like here: http://pastebin.com/KFeEAh1Z. Or you could try the s2member plugin: http://www.primothemes.com/post/s2member-membership-plugin-with-paypal/

    Hope this helps! :-)

    #79422

    In reply to: Quick questions

    Nathan Gelston
    Participant

    After editing profile-loop.php i also managed to make it display the heading for all profile field groups, including the default.

    #79421

    In reply to: Quick questions

    Nathan Gelston
    Participant

    And after much stuffing around, I finally managed to go and manually change the MySQL entry of “Base” to “Basic Info”. Still not sure how to make the title of it display on the profile page though.

    #79420

    In reply to: Quick questions

    Nathan Gelston
    Participant

    So, I found “Custom Profile Filters for BuddyPress” which enables me to disable links in profiles – still need some help on the other questions though!

    #11829
    Nathan Gelston
    Participant

    Hi all, just a few simple quick questions;

    By default, the default profile field group is titled “Base” – is there any way I could change this (e.g. to Basic Info), and also is there any way I could make it display on a user’s public profile the same as created profile field groups do?

    Is there an easy way to stop BuddyPress creating links out of every profile field item? (e.g. I created a profile field relating to somebody’s interests – fill it out and then view the profile, and every item is a link)

    How would I go about setting it up so that once a user logs in, the default page they see would be the “Activity” tab, NOT the “Home” tab?

    Is it possible to lock people out of members, activity etc. until they log in? Just for privacy’s sake etc.

    Whew. I think that’s all of them now – hopefully somebody can help me out! Cheers in advance.

    r-a-y
    Keymaster

    You probably already tried this tutorial:
    http://www.michiknows.com/2007/02/12/who-else-wants-to-hide-their-wordpress-admin-folder/

    The other technique is hacking WP core files:
    http://www.socialblogr.com/2009/09/how-to-change-folder-name-on-wordpress.html

    You could also try applying a filter to “admin_url”, but when I tried this awhile back, it didn’t work:
    http://stackoverflow.com/questions/2584706/wordpress-where-the-admin-url-is-set

    I should note that I’ve never done this and strongly advise you not to as well.

    —

    WP should have a defined WP_ADMIN_URL variable similar to WP_PLUGIN_URL and WP_CONTENT_URL, but it doesn’t.

    #78779
    techguy
    Participant

    I’m not sure why bp_get_group_id() wasn’t working in the above function, but this works instead: $bp->groups->current_group->id

    That still leaves these questions:
    1. Is there a simpler way to add an external link to the Group Subnav menu than the code above?
    2. Can you pass variables into the “screen_function” that the nav calls?

    #78749

    In reply to: Disappearing sidebar

    Daniel Eriksson
    Participant

    Thank you r-a-y. I have some other questions too, so I’ll just post them here:

    • I’d like to move the login to my admin bar, I have come about halfway. Which part of the (Default?) css is it that I should
    alter to make it fit into the admin bar?

    • I wanna make a frontpage displaying the latest posts in a specific category with Css-styled RSS output, how do I go about that?

    • There seems to be a very bad update frequency for the notifications in the admin bar. For example: If I get a new notif saying
    “You have a new message from…” that notif stays like that for some time if nothing new happens, it doesn’t go away even if I read
    the mess. So basically I’d like to change the alert-time for notification.

    #78694
    Anointed
    Participant

    I couldn’t be more excited about the merge of mu into 3.0. Finally I can come out of the closet I’ve been hiding in for so long.

    On most forums, as soon as I mention that I run mu, I get the proverbial, ‘not supported’, argument, whether it’s a theme or plugin purchase, or even a simple question. I suppose in the long run I should be grateful for the treatment I received most places as it really has taught me to be more self-sufficient. I actually spend more time now learning how to code then all other activities combined. As frustrating as it’s been, I have to say it’s been more than worth it. It’s almost a joke going back a year or two and reading the questions I had on other forums. And to think.. at the time I was running hundreds of client websites. Little did I know just how little I actually knew. It’s also important to mention that the absolute best wp coders that I have met all either run mu, or are intimately familiar with it. Many of those people are here on this site. Their level of expertise is head and shoulders above the normal wp user.

    @johnjamesjacoby has it absolutely correct. The more time you spend on the theme of the site, and especially the back-end administration portion, the more the site really starts to shine. I’d say that I spend an equal part on modifying the looks and functionality of the backend as I do the theme. Basically every time one of my customers asks me how to do something that I believe they should be able to figure out on their own, I go back and try to find ways of making it more intuitive for them.

    Most of my clients don’t even know they are running wp/bp. They simply wanted internal group communication systems, and it just turns out that bp fits the bill almost perfectly. What better system could there be than a system where I can give a client who has multiple locations a series of sites all connected together, cohesive, and simple to use. Gone are the days of having to stitch together or bridge multiple systems. I’m so glad that I will never have to write or pay for another bridge script again, only to have one of the products die a slow death on the vine. I really believe wordpress and possibly buddypress are here for the long haul.

    It’s also important to mirror what JJJ said about site size vs. features. I have some very small client sites, where it would make no sense to turn on most features. Doing that would only confuse the users and make it look awfully lonely. Then again I have sites with thousands of users. Turning on most of the features for them would make perfect sense, as everyone finds their own little area of the site that they enjoy. Bp makes this very easy.

    @shnooka30 I’m actually one of those people who couldn’t be more excited about the plugins to give sub-blogs their own bp installs. To me, that is the biggest current downfall of bp, other than privacy and spam which are being addressed.

    The entire reason I went to wpmu in the first place was that it was horribly inefficient to run hundreds of separate installs. I spent way to much time having to update sites one at a time. Wpmu, literally saved me hundreds of hours a year in updating time alone. It’s only because of the plugin not being available yet that I don’t offer bp to many of my client sites. When the plugin is ready, then I hope to jump in with both feet. At least the wait has given me the time to get a real understanding of the bp code base before adding it to the mix.

    Bottom line is those who run undermanned or lousy setups of bp on shared hosting, which is the majority of users, will die off very quickly. Everyone else who does it right will appear so different in both appearance and service, that the public won’t even put the two together.

Viewing 25 results - 2,201 through 2,225 (of 2,990 total)
Skip to toolbar