Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 15,701 through 15,725 (of 22,658 total)
  • Author
    Search Results
  • intimez
    Participant

    Correction: not cubepoints. I looked at clean log and it’s showing up again.

    @r-a-y I’ve reported it so gurus can have a peek. Thank you for confirming on your install.

    surprised not many others are reporting same issue.

    #105148
    modemlooper
    Moderator

    If it’s a WordPress issue you need to post in https://wordpress.org/support

    This site is specific to BuddyPress issues.

    #105134
    pcwriter
    Participant

    @PiManIII

    I think your last question is moot. Developers will very often create plugins and offer them free under GPL license. Just take a look at the WP plugin repo where you’ll find over 13,000 free plugins: https://wordpress.org/extend/plugins/

    But anytime you request something be created or custom-built, it’s best to offer some form of compensation; whether you want some coding done, or a deck built in your backyard :-)

    #105123
    Paul Wong-Gibbs
    Keymaster

    If you can access WordPress’ PHP environment, yes, of course. It’s a function call. If you can’t, you’ll probably have to create your own XMLRPC listener or via an AJAX _POST request and do it that way.

    #105101

    In reply to: Script for 2 posts

    modemlooper
    Moderator

    Not really a BuddyPress issue. You need to read up on the loop.

    https://codex.wordpress.org/The_Loop

    #105096
    modemlooper
    Moderator

    when you install BP it attaches to the first blog on MU. You can tell it to attach to other blogs. So you could create a community.url.com bog and put the social (BuddyPress) on that url. Some blogs do not want BP taking over but want to add on a social aspect to WordPress.

    #105084
    Boone Gorges
    Keymaster

    It’s possible that bp_init is fired too early in the process for it to be detected with functions.php, which is only loaded with your theme (relatively late). Try hooking to something like ‘wp’ instead. You should be able to detect whether BP is activated by doing something like
    `if ( !function_exists( ‘bp_loaded’ ) )
    return;`

    In any case, you should be enqueuing scripts on the init action, which is unrelated to bp_init: https://codex.wordpress.org/Function_Reference/wp_enqueue_script

    #105071
    Xevo
    Participant

    This looks like just a WordPress site without any BuddyPress in it?

    Or is this just spam?

    #105068

    @ risi hi, this plugin has not been updated since 2009, and we dont know whats going on with Giovanni who owns the plugin as all effort to contact hin proved abortive. i have used the plugin before but i got error relating to Zend so i removed it which is what i will Advice u to do for now. i think some guru will look into it may be they can write something similar. but you can also use Invite anyone plugin, which is what am currently using but u have to input email manually. here is the link

    https://wordpress.org/extend/plugins/invite-anyone/

    regards

    #105067
    Hugo Ashmore
    Participant

    Start a new thread please and supply details about your setup.

    #105042
    Grow Stories
    Member

    Thanks for the info. I have made it that far and have installed the forum but it is giving me a plain white page. How do I activate the forums?

    #105041
    Hugo Ashmore
    Participant

    @grow-stories this is an 8 month old thread you have dragged back up. please, in future, if you have an issue you require help with you must start a new post/thread and describe the problem in detail along with any applicable info such as version numbers , custom themes, plugins in use.

    You activate the plugin in the usual place for plugins, you visit the BP menu section and configure any options you want such as forum install, extended profiles etc, then visit the theme section and activate the bp-default theme or suitable BP compatible theme you might have.

    #105040
    Grow Stories
    Member

    So I have a WordPress self hosted site and installed the BuddyPress plugin but I do not see where I can access the plugin to utilize it. Any help?

    #105026

    In reply to: hiding dashboard

    David Carson
    Participant

    Look for the `bp_adminbar_thisblog_menu` function in `bp-core/bp-core-adminbar.php`. It’s around line 151 (BP Version 1.2.7).

    There is an `if` statement with `current_user_can( ‘edit_posts’ )`. Replace `edit_posts` with whatever role you want to check it for. https://codex.wordpress.org/Roles_and_Capabilities

    And you might already know this, but you should try to make your changes to the function using `bp-custom.php`. https://codex.buddypress.org/extending-buddypress/bp-custom-php/

    #105017
    modemlooper
    Moderator

    @boonebgorges BuddiPhone is actually a BP component plugin. It creates a slug /mobile. I would love to use REST and make it native, then I could use the hardware – image uploads – contact lists etc. I messed with this plugin a bit https://wordpress.org/extend/plugins/json-api. BuddyPress json post / get would be killer.

    #105014
    Boone Gorges
    Keymaster

    Hey Carl – Here are a couple considerations.

    – WordPress (which BP runs on top of) already has support for XML-RPC. Here’s the spec: https://codex.wordpress.org/XML-RPC_wp Of course, the details of this spec are not much good for BuddyPress, since for the most part, BuddyPress data objects are different from WP data objects. But the gateways are already there for working with XML-RPC.

    – That said, the kind of system-to-system talking that would be appropriate for BP would be much better suited to the simplicity of a REST gateway (as opposed to the generally one-to-one, client-to-server relationship that WP’s XML-RPC support was built for – eg the use case of native Android apps communicating with a WP installation).

    – Neither WP nor BP has anything built in for REST support, so you’ll be starting with a clean slate (that is both good news and bad news!). There have been a few add-ons that might be good places to start. The one I’ve used in the past is called WP-RESTful https://wordpress.org/extend/plugins/wp-restful/. It’s a nice plugin, but it also has a huge amount of overhead, in particular with a full implementation of oAuth.

    – In the very simplest terms, the very easiest way to set up a REST endpoint in WP is to intercept a certain kind of URL query and interpret the POST data. Here is about the most stripped down API possible:
    `function bbg_api_listener() {
    global $wp;

    if ( $r = $wp->request ) {
    $ra = explode( ‘/’, $r );
    if ( $ra[0] == ‘restserver’ ) {
    // Do some stuff with the $_POST
    die();
    }
    }
    }
    add_action( ‘wp’, ‘bbg_api_listener’, 1 ); // Ensure that the request is parsed before any WP front-end stuff, but after the core of WP is loaded`

    In this case, I am assuming that requests will go to example.com/restserver. From there it’s a matter of unpacking the POST action, etc.

    – As for outgoing requests, WP has a pretty nice built-in HTTP library called WP_Http. Here is a nice tutorial: http://planetozh.com/blog/2009/08/how-to-make-http-requests-with-wordpress/ It’s a wrapper for cURL with some graceful fallbacks.

    – For something to go into the core of BuddyPress it needs to be really flexible, especially in terms of authorization (this is part of the problem with WP-RESTful and its reliance on oAuth). Keep that separation in mind when you’re crafting something.

    Can’t wait to see what you come up with. As you know, I’m really interested in this project and will be excited to play along.

    #105009

    In reply to: @ mention notification

    randomdude
    Member

    For extra information i’m using WordPress 3.0.5 and Buddypress 1.2.7

    Also noticed that there is a system for @mention notifications to be sent as an email. Is there a way to edit this to also show in the admin bar?

    #104997

    In reply to: Forum integration

    Xevo
    Participant

    Check out the bbpress wordpress plugin. ^^

    #104970
    Mike
    Participant

    I use Gravity Forms to do this, although you could also look into TDO mini forms (https://wordpress.org/extend/plugins/tdo-mini-forms/) if you’re not keen on spending any money. I will say this… the GA plugin is *the* best plugin I’ve ever splurged on, bar none.

    #104889

    In reply to: register page problem

    argusz
    Member

    Sorry for reply so late!!

    I can still see the problem at testbp.org! I use IE 6! Please consider if it is IE’s problem!? In my won test site,I use wordpress 3.0.4 and buddypress 1.2.7 and default buddypress theme 1.2.7 and don’t make any changes!

    In addition, as soon as I begin to input any letter in the activity post form or the rely post form, the right side of the square broken!

    I don’t know if it’s all because of IE’s problem.

    #104873

    In reply to: Blogger to Buddypress

    modemlooper
    Moderator

    If you are talking they post on blogger and same post shows on a WordPress then yes. There are numerous import plugins.

    #104863

    In reply to: word limits for posts

    @mercime
    Participant

    1. It should work as the posts are WP functions

    2. You would be adding the codes as seen here https://wordpress.org/extend/plugins/content-and-excerpt-word-limit/installation/ into your active theme. Find instances of the_excerpt and the_content in your active theme’s files and replace that with code given above after you’ve activated the plugin.
    https://codex.wordpress.org/Function_Reference/the_content
    https://codex.wordpress.org/Function_Reference/the_excerpt

    3. No, this would not work in BP activity wall.

    #104842
    Hugo Ashmore
    Participant

    Profanity filter? There was something but I think it was WP post specific but should be possible to achieve with a little work for BP aspects.

    There is this:
    https://wordpress.org/extend/plugins/webpurifytextreplace/
    But it is a paid for solution and although it states BP support it is a little outdated so would need checking with authors as to whether it would work with alter BP versions.

    #104833

    In reply to: word limits for posts

    @mercime
    Participant
    #104821
    TimCarey
    Participant

    This plug in doesn’t seem to be working. It looks like it was designed for the mu plug in. WordPress now includes MU in their latest version. Maybe that’s why it doesn’t work. It doesn’t work with buddy press anyway. When people go to be verified from an e-mailed link it goes to a login instead. And then that user isn’t a user at all. Any other ideas

Viewing 25 results - 15,701 through 15,725 (of 22,658 total)
Skip to toolbar