Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,076 through 20,100 (of 22,687 total)
  • Author
    Search Results
  • #61037

    In reply to: Widget logic 1.2

    jivany
    Participant

    Did you try widget logic? https://wordpress.org/extend/plugins/widget-logic/

    Crafting the correct logic might be the tricky part but the plugin is fantastic for controlling when to display (or not display) any widget.

    #61025

    In reply to: Advertisement

    Xevo
    Participant

    That’s why you could try one of the wordpress plugins, some of them make it really easy to add all kinds of advertisements to your wordpress set-up. The only problems will be; version of wordpress (buddypress 1.1.3 only works on 2.8.x), buddypress itself and theming.

    Just need to do some trial and error with some of the plugins.

    Try this: https://wordpress.org/extend/plugins/advertising-manager/

    #61023

    In reply to: Advertisement

    vincole
    Participant

    cant do coding thats why i need a manager for it, like google ad manager, just need to know if its possible to use with wordpress and will it intergrate

    #61021

    In reply to: Advertisement

    Xevo
    Participant

    No plugins for buddypress specifically yet, though you can try one of the wordpress advert plugins. Or don’t use a plugin at all and just code it directly into your buddypress template.

    #61011
    Bowe
    Participant

    nice introduction from a new member ;-)

    https://wordpress.org/extend/plugins/bp-community-blogs/

    that should do the trick.

    #60993

    @arturo

    Make a note of multi-language on http://bpdevel.wordpress.com/ and we can talk about it during this coming weeks’ dev chat. It’s something I’d like to see also, even if it’s just something as simple as selecting your language in the settings screen. I’ve had a much more complex version of this running locally for a while now, so I’ll probably simplify it and patch it for Andy to look at soon.

    #60978

    In reply to: Facebuddy theme

    Paul Wong-Gibbs
    Keymaster

    You will not get support for issues or bugs when running BuddyPress 1.0; there have also been a few security fixes. You have been warned.

    With regards to the theme, if you are unable to purchase a theme or a designer, then the only way is to learn HTML, CSS and WordPress theming.

    Paul Wong-Gibbs
    Keymaster

    WPMU doesn’t support www prefixes which is why I suspect this was done the way it is. i.e. https://trac.mu.wordpress.org/ticket/1105

    #60967
    abc30
    Participant

    hello. I had same problem too.but i found a solution.

    this is the easiest and the most simple way to solve the problem.and it works perfectly.

    because this plugin is using gmail SMTP server.

    https://wordpress.org/extend/plugins/cimy-swift-smtp/

    downlod this plugin and upload in “/wp-content/plugins/”.

    and activate the plugin.

    this link below is way of setting.

    http://www.marcocimmino.net/wp-content/uploads/cimy_swift_smtp_122.png

    #60961
    jivany
    Participant

    Would the widget logic plugin work for you?

    https://wordpress.org/extend/plugins/widget-logic/

    I’m not really following what you’re trying to do but I know the widget logic plugin is fantastic for controlling when widgets get displayed.

    #60960
    danbpfr
    Participant

    @ derek, i have also bp events and group blog installed.

    My update from 2.8.6 to 2.9.1 was ok. No problem at all with my 14 other plugins except bp-ajax-chat (because of a js version error from the chat plugin)

    Did you updated manually as sayed by donncha here ?

    http://ocaoimh.ie/wordpress-mu-291/

    #60943

    In reply to: WordPress Mu Plugins

    @mercime
    Participant

    So far, so good for me in BP 1.2 trunk and WPMU 2.9.1

    On the other hand, what MU plugins did you want to install?

    #60937
    Boone Gorges
    Keymaster

    If I understand your question correctly, you’ll want to think of it as a single widget that appears differently for different members.

    Use http://wpengineer.com/wordpress-built-a-widget/ to build a new widget. In function widget(), figure out which user is logged as follows:

    global $bp;

    if ( $bp->loggedin_user->id == 1 ) {
    /* Display the stuff you want user 1 to see */
    } else if ( $bp->loggedin_user->id == 2 ) {
    /* Stuff you want user 2 to see */
    } /* etc */

    #60924
    joshj16
    Participant

    I did. The forums didn’t show up completely and there is a bug when posting in a group forum. How did you roll back to the previous version? Did you have to completely re-install wordpress?

    #60919
    peterverkooijen
    Participant

    Please concentrate on writing BP plugins that connect with more mature open source gallery scripts like Zenphoto, Coppermine or the NextGen WP plugin, instead of starting yet another ambitious project from scratch.

    I use Zenphoto with the ZenPhotoPress plugin. I would love to have a ZenPhotoBP plugin, but I’d never use any of these new BP-only plugins and if Andy & co built a gallery into the core, I’d have to strip it out again.

    This Kaltura plugin may cover your needs if you need more BP integration – semi-commercial third party product.

    #60915
    Paul Wong-Gibbs
    Keymaster

    The avatar is BuddyPress feature and the wp-admin dashboard is a WordPress feature. There’s surely a way to code this up, but it’s not implemented out of the box.

    #60896
    dennissmolek
    Participant

    @Mike,

    I havent registered at buddydev but from some of the things I read I think he and I are going about things differently.

    First, I am needing this plugin for a site that I need, with that there are things that Brajesh wont be releasing on the first edition. And then it goes 3-6 months on that revision..

    I will be using Rackspace’s Cloud files, so I need a solution to use ANY file host be it local or remote, so I am working around that issue as a primary.

    Second is I will be needing tagging pretty much off the bat. One post said this was for later..

    My plan for tagging will actually allow any user/group/etc to to be tagged to any type of content provided it has a ID. Not just photos.

    Plus I am generating a “site ID” so a group and a user cant both have the same ID. Right now there can be user 33, Group 33, and Blog 33.. All unrelated.. this is a pain as every plugin or content would need a “entity type” for each tag, or a separate field for each type. With a siteID and a corresponding table its held in one place and accessed on the fly..

    I am also using the core 2.9 image editing, as well as a free java app to edit files in the client side(see facebook’s java app)

    I am not trying to compete (well directly) with Brajesh, his plugin looks great but there is some functionality that I need and would rather let other folks have the option to use it as well.

    Most of the code is actually already written itno WordPress 2.9’s media tools.

    For example, all of the image editing/uploading/unzipping is already core. The biggest thing is taking the content mapping OUT of a hidden blog post(right now all media is stored as a blog post within a users main blog, including avatars) and allow users who DO NOT have blogs to be able to use WordPress’s media tools..

    My current plans are:

    Created SiteID system(already done)

    add new tables to handle images

    give all users/groups a “home” album and then a “profile picture” album

    Modify how avatars are uploaded/added to the database

    modify/duplicate the media-upload to change the filepath and way files are uploaded to fit my needs

    I also plan to release what Ive done in smaller stages(for free). If I hit a worth wile release I may charge like $5 for it and maybe some type of support system, I dunno.. I may just give it away and begin work on other projects. ( once this is done I dont see many “new” features… Facebook has been the same for 5 years)

    Not to say I wont add new features, or continue support, just that I cant imagine more at this time..

    ok Im rambling..

    #60894
    bbrian017
    Participant

    I’m currently running You are using WordPress MU 2.9.1. I had an update after I added that information.,

    Sorry about that and thanks for the suggestion.

    #60890

    In reply to: My Student Portal

    r-a-y
    Keymaster

    You need to upgrade to WPMU 2.9.1

    https://mu.wordpress.org/download

    Release and upgrade info can be found here:

    http://ocaoimh.ie/wordpress-mu-291/

    #60889
    Roland Fauster
    Participant

    It all finally works now – THANK YOU VERY MUCH.

    I ended up using a completly random HASH for the UserName since I was not feeling safe using your JavaScript.

    This feature should be put in one of the future Releases of BuddyPress since indeed the concept of using Usernames to Login is old and with Features like Gravatar Support, the site itself should use email as the main auth form.

    Just for completion so somebody might want to do the same thing:

    I modified the register.php in registration subfolder like this

    .

    .

    .

    <!– Fool Registration that the Username is a Random Generated HASH –>

    <input type=”hidden” name=”signup_username” id=”signup_username” value=”<?php echo sha1( uniqid( mt_rand(), true ) . time() ) ?>” />

    <label for=”signup_email”><?php _e( ‘Email Address’, ‘buddypress’ ) ?> <?php _e( ‘(required)’, ‘buddypress’ ) ?></label>

    <?php do_action( ‘bp_signup_email_errors’ ) ?>

    <input type=”text” name=”signup_email” id=”signup_email” value=”<?php bp_signup_email_value() ?>” />

    .

    .

    .

    and used Beau Leben’s WP Email Plugin

    #60878
    peterverkooijen
    Participant

    You don’t have to convince me why it makes sense to use email address instead of username. This post was the start of a long a painful process for me. Trust me, that plugin does what you need and then all you need to do is restructure the form and pick a fix for the user URL etc.

    #60868
    bbrian017
    Participant

    I’m using the plugin that is found by “adding new plugins” in wordpress.

    #60865
    Nick Watson
    Participant

    Thanks a lot Mike!

    That works perfectly, although it doesn’t allow complete customisation of specific titles, it allows you to change it so that your pages have the title

    I found :

    https://wordpress.org/extend/plugins/seo-title-tag/

    once I knew, from your reply, what to search for, however it looks like this is only a wordpress feature because it didn’t work for me.

    I’ll dig in the code of the “All in One SEO Pack” and see if I can specify exactly where the page titles are defined.

    However, it’s doing exactly what I want right now.

    Thanks a lot!

    #60847

    In reply to: Group Twitter Plugin

    peterverkooijen
    Participant

    The plugin page says:

    Compatible up to: WordPress MU 2.8.6 / BuddyPress 1.1.2

    So it doesn’t work with 1.1.3? Or 1.2? Or WPMU 2.9.1?

    Will the plugin be updated or was it more a one-time demo project?

    Roger Coathup
    Participant

    Guten Tag Thomas,

    Thanks for the really thorough description of the project, and great to see you (alongside our Hello Eco Living site) in WPMU.org’s list:

    10 of the Latest and Greatest Inspirational BuddyPress sites

    @Xevo: your hint on login is handy to know!

    Cheers,

    Roger

Viewing 25 results - 20,076 through 20,100 (of 22,687 total)
Skip to toolbar