Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 18,801 through 18,825 (of 22,683 total)
  • Author
    Search Results
  • #72590
    Felipe Navarro V.
    Participant

    The plugin bp-member-filter[1] works for me.

    You need to use :

    <?php if ( bp_has_members_filter( 'search_terms=metal&per_page=10' ) ) : ?>

    [1] https://wordpress.org/extend/plugins/bp-member-filter

    #72589
    Felipe Navarro V.
    Participant

    The plugin bp-member-filter[1] works for me.

    You need to use :

    <?php if ( bp_has_members_filter( 'search_terms=metal&per_page=10' ) ) : ?>

    [1] https://wordpress.org/extend/plugins/bp-member-filter

    #72548
    songv
    Participant

    Hey Aran, I could not get this to work at all with just regular WP, but after deleting and installing WordPress MU in its place, I was able to get BuddyPress to work with no problems. Very strange…because I was able to install BuddyPress with just a regular install of WordPress 3 days ago on another site.

    #72522
    Diesel Laws
    Participant

    The avatar folders are there and the main picture I upload is being saved in there, but it is not creating different sizes. On the page itself it is showing at this point SCREENSHOT- http://freelancerunplugged.com/files/crop-problems.jpg

    So for some reason, the whole cropping function is not even working. And I have tried it by disabling all the plugins except for buddypress and it still does the same thing.

    This morning I Automatically upgraded to the latest wordpress and latest Buddypress using the auto update buttons. I don’t really want to re-upload the whole thing again due to the time it takes and also (as it was just upgraded this morning) I do not believe it will change the current outcome. Unless you disagree then I will do it all again.

    The main blog folder (which is number 2) is now 777 and re-uploading a new picture did the same thing. Picture shows up in the FTP area, but no crops and the page shows the SCREENSHOT again – http://freelancerunplugged.com/files/crop-problems.jpg

    Apart from the glitch with the avatar not showing up to crop, I feel this is an issue that a lot of other people are facing but instead of fixing it they delete/ reinstall everything. And Im not really able to do that as the website has a few hundred poeple on it.

    #72520
    danbpfr
    Participant

    I found this mail sended in 2007 on wp-hackers, while searching for error message stuff at plugin activation

    It seems to be be already the same situation in 2010… so devs, you know…

    wp-hackers] Plugins : return proper error on activation faliure

    Omry Yadan omry at yadan.net

    Fri May 18 07:35:15 GMT 2007

    * Previous message: [wp-hackers] List digest with unprotected emails

    * Next message: [wp-hackers] Re: WordPress 3

    * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

    Some complex plugins may fail during activation (creating database

    tables or what not).

    currently there is no way for plugins to return an error signal + error

    message in such cases: only thing they can do is to print the error.

    this is problematic as the error does not fit well into the wordpress

    admin page, and can also cause problems if for some reason the someone

    tries to set an http header after the plugin was activated.

    I suggest that we allow plugin to return error message back to wordpress

    on activation.

    The visibility of the Admin nav-item is a side effect of “Site Wide: true” but it isn’t the correct way to fix this.

    The “Site Wide” meta value doesn’t have anything to do with users, roles, or capabilities. It’s only there to tell WordPress that plugin can act as the umbrella that covers all blogs/sites in a network.

    The offending plugins are simply just not using the correct methods to add their navigation to the Admin area.

    WordPress has many wrappers to help make this easy for plugin authors:

    add_management_page
    add_options_page
    add_theme_page
    add_users_page
    add_dashboard_page
    add_posts_page
    add_media_page
    add_links_page
    add_pages_page
    add_comments_page

    All of the above functions are passed an $access_level variable, that can be set to a “current_user_can” value to limit its access.

    I’d drop a message to the authors of the plugins that are showing their settings to unauthorized users. That isn’t just inconvenient/embarrassing/confusing, it’s a security risk.

    #72506
    cupedoll
    Participant

    Got pretty much the same issue here. Latest WordPress (non-MU) and BuddyPress installed via BuddyPress Template Pack Plugin.

    With nothing disabled in BP general settings, everything enabled in component setup.

    There is no “create group” in the “groups” tab. Only “My Groups” and “Invites”. Clicking the “groups” tab goes to http://www.ultimatecultureclash.com/members/cupedoll/groups/ which seems fine.

    But I want forums. And it seems forums are a property of groups. So I need groups. How to create groups?

    (After much confusion) I enter MANUALLY: http://ultimatecultureclash.com/groups/create/step/group-details/

    This goes to /groups/create/step/group-details/images/images/bg_body.gif which looks good. The heading says “Create a Group” and there’s input fields for “Group Name” and “Group Description”.

    But entering group name, group description and pressing “Create Group and Continue —->” button only reloads blog homepage and creates nothing.

    I’ve read somewhere that this might be theme-related? I run Atahualpa, pretty extensively customized. Yet the BuddyPress Template Pack Plugin was supposed to integrate everything painlessly (for ignorant non-coders like me). And the weird thing is how smoothly it seemed to have done the job. Until it came to creating groups.

    #72471
    jivany
    Participant

    Did you try is_home() instead?

    https://codex.wordpress.org/Conditional_Tags

    The above link suggests that it should be is_front_page() but given how bp-default is playing around with that setting in the backened, you might need to check is_home()

    #72468
    snark
    Participant

    Thanks @3sixty — after much head-wringing and a little tweak, I got your code to work perfectly:

    <?php if (get_usernumposts( bp_current_user_id() ) > 0) echo " | Blog posts: " . get_usernumposts( bp_current_user_id() ); ?>

    In the process I learned that “get_usernumposts()” has been deprecated in WordPress 3.0, so when that comes out I assume I’ll have to change this to work with the replacement function, “count_user_posts()”

    #72456
    stwc
    Participant

    @Modemlooper – as stwc posted above, he wanted a front page other than c) A WordPress Page

    Actually, not really — I just want to show one of the other default BP site sections — forums or blogs or members. But if this is a general solution that also includes that ability to do that, even better.

    #72449
    stwc
    Participant

    There are WP plugins that will auto-create a WordPress post from each item in an RSS feed as it happens (well, cron schedule notwithstanding, I guess, or something like that). I kind of hate Facebook, so I’m not sure, but are there RSS streams generated by the appropriate activity there?

    Or, come to think of it, if there were an RSS stream from Facebook, you could just use Andy’s External Group Blogs plugin and pull the RSS items into an activity stream for a group, as well.

    #72427
    Anointed
    Participant

    Thank you for the info.

    In our case, yes we would want all the updates from facebook to post to the blog.

    We have a number of missionaries around the world who post to facebook. I was thinking of creating a subdomain blog for each missionary. That way when they post to facebook it would automatically show up on their blog.

    Now a normal person would say, ‘why not just post the blog article and have it pushed to facebook’?

    Well, say I have 20 church websites that all support the same missionary. Instead of him having to post to all 20 church blogs, he could post to facebook, and I could have all 20 blogs auto updated for him.

    Obviously this is a very specific example, but it would work the same for many concepts.

    anyhow, I had not even thought of a wordpress app for facebook. I’ll go dig around and find me one.

    thanks again

    #72425
    techguy
    Participant

    I’ve never seen one (although there might be), but the challenge I have is understanding what from Facebook you’d want to create the post on the blog. Would you want someone’s wall post to be added to the blog? That doesn’t make much since to me. Would you want a Facebook Note to be added to your blog?

    The other option is to add the WordPress app (and there are probably a number of these out there) to your Facebook account. I think a Facebook WordPress app would be able to post to your blog and to Facebook at the same time. At least I think there are 2 way Facebook apps like this.

    #72390
    eazee
    Participant

    hi im using WordPress MU 2.9.2 ,with buddypress, i believe i have to edit something in bp-core-signup.php

    #72388
    r-a-y
    Keymaster

    For the first part, what version of WordPress are you using?

    Secondly, you can edit the sign up text by using a language file:

    https://codex.buddypress.org/how-to-guides/customizing-labels-messages-and-urls/

    Or by creating a child theme and modifying the registration templates.

    tim-watt
    Member

    OK – I’m new here, and everything’s quite standard….

    1. Which version of WP/MU are you running? – WordPress MU 2.9.2.

    2. Did you install WP/MU as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? ? Don’t follow? Please explain… (blogs are in format *.domain.com/blogs/)

    4. Did you upgraded from a previous version of WP/MU? If so, from which version? NA

    5. Was WP/MU functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? Version 1.2.3

    7. Did you upgraded from a previous version of BP? If so, from which version? NA

    8. Do you have any plugins other than BuddyPress installed and activated? Contact Form 7 & WordPress Hashcash

    9. Are you using the standard BuddyPress themes or customized themes? The standard Demo theme

    10. Have you modified the core files in any way? No

    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? No

    13. Please provide a list of any errors in your server’s log files. NA

    14. Which company provides your hosting? wpwebhost.com/

    @mercime
    Participant

    @jivany – yup :-)

    @Modemlooper – as stwc posted above, he wanted a front page other than c) A WordPress Page

    Should one want to continue in that vein (via Settings > Reading > static home page), instead of creating the special template file home.php, he can:

    1. Create a Page template, e.g. page-home.php and paste 2.a. or 2.b. within and upload to server.

    2. Create a page called Home using the page template and publish.

    3. Go to Settings > Reading > Static home page and choose Home.

    4. Delete the link (forums or blogs or groups) from header.php navigation div to avoid duplication

    Scotm
    Participant
    #72345
    Karin Johansson
    Participant

    Have a look at wp polls instead, in my opinion a very nice and customizable poll system. It includes a widget.

    https://wordpress.org/extend/plugins/wp-polls/

    Edit: I just found that automatic install of the plugin does not seem to work. However install and using it right out of the box works fine for me when uploaded by FTP, in WPMU 2.9.2 with BP default theme. There are also some theme related issues: https://wordpress.org/support/topic/358769

    #72344

    In reply to: Skeleton Plugin

    Xevo
    Participant

    This is build basic in wordpress, just add a page in the backend of wordpress and it’ll show up in your menu bar.

    rsqst
    Participant

    Thanks for your help @r-a-y

    It’s for the next version of this website: http://www.artmonastery.org

    It’s for a network of artists. Each blog will be a specific art project, and each subscriber/author will be an artist participating in that art project. Many artists will be participating in many different art projects, and I’d like their bio information to be publicly displayed on each blog/project.

    The blogs will be the public “portal” for each of the art projects, which we will us to promote the projects. The groups that are associated with each blog (with the group blog plugin) will be the internal communication tool for the artists.

    I’d like all the subscribers/authors/etc (aka artists) for a given blog (aka art project) to be listed at the top of the blog’s index.php page, with a few fields from the xprofile (bio, specialty, etc.). Ideally, I’d get them to echoed in a way that was easy to feed into a snazzy jquery slider gizmo.

    artists.

    I’m trying to build a resource for these artists that is really 1 database with many faces, and given that I love wordpress, buddypress seemed like the best way to do that. It’s just stretching my abilities, at the moment ;)

    #72329
    raynerlim36
    Participant

    @mrvon

    Uninstall your copy of WordPress and install a new copy of WordPress MU (Multi-User).

    WordPress MU allows each member to have his own blog. You need to set up blog domains first, though. For more instructions on setting up multiple blogs, read the WordPress MU readme.

    BuddyPress will automatically set this up for you if it detects that you have WordPress MU installed.

    #72320
    @mercime
    Participant

    Akismet, WP-SpamFree Anti-Spam, WP Hashcash, search for other anti-spam threads in thisforum

    Bowe
    Participant

    Check this out:

    https://wordpress.org/extend/plugins/bp-profile-widget-for-blogs/

    That does what you want, but you can take a look at the code to modify it for your specific needs..

    herzseben
    Member

    This actually sounds like it might be the root cause of my own issue.

    After installing BuddyPress, I am getting the following error in my Dashboard under WordPress Development Blog, Incoming Links, and Plugins

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/herzsage/public_html/wp-includes/class-simplepie.php on line 14271

    I’m not sure how it’s eating over 30MB to begin with, but the symptoms are there (no BBpress tables or files, Page Not Found error midway through group creation after installing BBpress, etc) and my Dashboard is clearly telling me I’m having memory issues.

    However, I never had this problem when integrating the three before. I’m even running BuddyPress off a single-blog WordPress installation because I have no use for Mu – how is it eating so much memory, and what did you set your memory limit at to resolve the issue?

Viewing 25 results - 18,801 through 18,825 (of 22,683 total)
Skip to toolbar