Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'toolbar'

Viewing 25 results - 751 through 775 (of 803 total)
  • Author
    Search Results
  • The best thing is that I didn’t have to change the plugin at all!

    Install this as a Sitewide/Network plugin: http://wordpress.org/extend/plugins/comment-form-quicktags/

    Edit activity/post-form.php

    Look for

    <div id="whats-new-content">
    <div id="whats-new-textarea">

    Replace with

    <div id="quicktags"><script type="text/javascript">edToolbar();</script></div>
    <div id="whats-new-content">
    <div id="whats-new-textarea">

    Then add this to the bottom (below </form><!-- #whats-new-form -->):

    script type="text/javascript">var edCanvas = document.getElementById('whats-new');</script>

    That’s it. It works.

    Running: BuddyPress 1.2.3, WordPress 3.0, My theme plus the BuddyPress Template Pack.

    #73247
    stwc
    Participant

    I supplied code to get a toolbar working in forums here (https://buddypress.org/forums/topic/html-and-formatting-buttonbar-for-forums-posts-code-inside). It works flawlessly on my installs and is easily extensible.

    TinyMCE (thanks to Boone for working on it) is just too much of a pain in the butt, I’ve found.

    I use a combination of r-a-y’s oembed, my toolbar, and Boone’s update of _ck_’s attachments plugin, and they work together just fine.

    stwc
    Participant

    So TinyMCE is a bit of a pain in the butt and conflicts with stuff, and my users have been clamoring for a toolbar above textareas for quick formatting, so I came up with this, which works flawlessly so far.

    My skills are insufficient for packaging it up as a plugin, but anyone who is interested in doing so can go ahead, and credit me or not as you like.

    Here is a screenshot, and here’s how to get it working.

    You’ll need this javascript file, which is a slightly modified version of the original by Alex King.

    Here’s the CSS I used for it.

    Include those two files in your header.php for your child theme. I keep the javascript in /_inc/js and the css in /_inc/css, for what it’s worth.

    Now, for every place where you have a textarea for forum posting — in your childtheme/groups/single/forum/topic.php and /edit.php, childtheme/groups/single/forum.php, childtheme/forums/index.php and so on, you’ll need to add two lines.

    In some places, the id/name for the textarea is ‘topic_text’, in some places it’s ‘reply_text’. (There might be another, too, I can’t recall.)

    The two lines you’ll need to add are

    <div id="quicktags"><script type="text/javascript">edToolbar();</script></div>

    just before the textarea and

    <script type="text/javascript">var edCanvas = document.getElementById('topic_text');</script>

    just after </form>

    If the id/name of the textarea is ‘topic_text’ then use that in the second line, and if it’s ‘reply_text’ use that in the second line.

    So, for example, in childtheme/forums/index.php, the original code is

    <form action="" method="post" id="forum-topic-form" class="standard-form">

    <?php do_action( 'groups_forum_new_topic_before' ) ?>

    <a name="post-new"></a>
    <h5><?php _e( 'Post a New Topic:', 'buddypress' ) ?></h5>

    <label><?php _e( 'Title:', 'buddypress' ) ?></label>
    <input type="text" name="topic_title" id="topic_title" value="" />

    <label><?php _e( 'Content:', 'buddypress' ) ?></label>

    <textarea name="topic_text" id="topic_text"></textarea>

    <label><?php _e( 'Tags (comma separated):', 'buddypress' ) ?></label>
    <input type="text" name="topic_tags" id="topic_tags" value="" />

    <label><?php _e( 'Post In Group Forum:', 'buddypress' ) ?></label>
    <select id="topic_group_id" name="topic_group_id">
    <?php while ( bp_groups() ) : bp_the_group(); ?>
    <?php if ( 'public' == bp_get_group_status() ) : ?>
    <option value="<?php bp_group_id() ?>"><?php bp_group_name() ?></option>
    <?php endif; ?>
    <?php endwhile; ?>
    </select>

    <?php do_action( 'groups_forum_new_topic_after' ) ?>

    <div class="submit">
    <input type="submit" name="submit_topic" id="submit" value="<?php _e( 'Post Topic', 'buddypress' ) ?>" />
    <input type="button" name="submit_topic_cancel" id="submit_topic_cancel" value="<?php _e( 'Cancel', 'buddypress' ) ?>" />
    </div>

    <?php wp_nonce_field( 'bp_forums_new_topic' ) ?>

    </form>

    It becomes

    <form action="" method="post" id="forum-topic-form" class="standard-form">

    <?php do_action( 'groups_forum_new_topic_before' ) ?>

    <a name="post-new"></a>
    <h5><?php _e( 'Post a New Topic:', 'buddypress' ) ?></h5>

    <label><?php _e( 'Title:', 'buddypress' ) ?></label>
    <input type="text" name="topic_title" id="topic_title" value="" />

    <label><?php _e( 'Content:', 'buddypress' ) ?></label>

    <div id="quicktags"><script type="text/javascript">edToolbar();</script></div>

    <textarea name="topic_text" id="topic_text"></textarea>

    <label><?php _e( 'Tags (comma separated):', 'buddypress' ) ?></label>
    <input type="text" name="topic_tags" id="topic_tags" value="" />

    <label><?php _e( 'Post In Group Forum:', 'buddypress' ) ?></label>
    <select id="topic_group_id" name="topic_group_id">
    <?php while ( bp_groups() ) : bp_the_group(); ?>
    <?php if ( 'public' == bp_get_group_status() ) : ?>
    <option value="<?php bp_group_id() ?>"><?php bp_group_name() ?></option>
    <?php endif; ?>
    <?php endwhile; ?>
    </select>

    <?php do_action( 'groups_forum_new_topic_after' ) ?>

    <div class="submit">
    <input type="submit" name="submit_topic" id="submit" value="<?php _e( 'Post Topic', 'buddypress' ) ?>" />
    <input type="button" name="submit_topic_cancel" id="submit_topic_cancel" value="<?php _e( 'Cancel', 'buddypress' ) ?>" />
    </div>

    <?php wp_nonce_field( 'bp_forums_new_topic' ) ?>

    </form>
    <script type="text/javascript">var edCanvas = document.getElementById('topic_text');</script>

    Do this for anywhere there’s a forum posting textarea, and you’ll be good to go! You can modify the javascript quite easily to add things like spoiler divs or whatever.

    No warrantee is made here in terms of things blowing up — my coding abilities are not that many notches above cut and paste — but it works fine for me!

    Good luck, and like I said, if someone wants to make this into a plugin, please go ahead!

    #69597
    Maylene
    Participant

    Yes, I’ve renamed the admin user account so the name is not “Admin” at all. It just reroutes to the home page any time I try clicking on the name or go through the toolbar to get to the profile.

    If you wanted to take a look, the homepage is: http://www.secondliferp.com . I’m the only one who has posted on the site so far, so you’ll know which user name is mine.

    #69012
    r-a-y
    Keymaster

    You have to learn how to use a web developer toolbar.

    Using Firefox with the Firebug plugin can help find the specific CSS element. Once you’ve found the element, start applying some CSS rules in your child theme’s style.css.

    #68709
    Diesel Laws
    Participant

    I use the chat function from the WIBIYA TOOLBAR, works great and can have video conferencing too. It worked great (except for lag issues) with our CHAT YOUR FACE OFF EVENT – http://freelancerunplugged.com/blog/chat-your-face-off-review/

    melvenac
    Member

    Just installed (today) a fresh copy of wp 2.9.2 and bp 1.2.

    I’m having the same issue, for example the link http://clanrecruit.net/members//profile/edit/ will redirect me to http://clanrecruit.net any help with this issue?

    In fact almost all the links are not working under ‘my account’ for example http://clanrecruit.net/members//settings/general/ not working.

    Ok, I just copied the same like from http://testbp.org after creating a profile to test bp out. Here is the same link under my account toolbar http://testbp.org/members/melvenac/profile/edit/. If you will notice the is an extra ” / ” in my link that is not there at testbp.org. Could this be the problem?

    #67238
    kingfelix23
    Member

    I just managet to get one page to work, however that was a hardcoded link I did for http://mysite.org/wp/members/member/groups/create

    That page used my index.php in my groups theme folder.

    however if I use the toolbar it seem to use another index.php, I then tried to make a hardcoded activity page but that again doesn’t seem to use my file in the theme folder.

    Are there some settings someplace that says where the items in the toolbar gets and creates the url:s?

    cce
    Participant

    I’ve set up Buddypress 1.2.1 on WordPress MU 2.9.2. It is running on IIS6 with Mod_Rewrite Pro from Micronovae. PHP is 5.2.13 FastCGI 1.5 (also tested ISAPI version). WPMU has been running for more than a year.

    I’m getting 404 errors in certain places with IE. The easiest way to replicate the problem is by clicking the “Create a Group” button. That links to http://fqdn/groups/create, which is supposed to redirect to http://fqdn/groups/create/step/group-details. However, if IE’s “Show Friendly HTTP Error Messages” is turned on (which is the default), a 404 error message is displayed. If you turn it off, it works correctly. If you go straight to the /groups/create/step/group-details URL it also works. It also happens with Firefox if you have the Google Toolbar installed, which also intercepts error messages.

    Based on some Googling, there are other people with unexplained 404 errors, many running on IIS, and this might be the cause of their problems as well. I don’t know if this is specific to IIS, or if there is some other combination of settings that are causing it. I’ve talked to Micronovae and they say it isn’t related to URL rewriting.

    Does anyone have any ideas? Obviously, telling everyone to turn off “Friendly HTTP Error Messages” or disabling toolbars is not a good option.

    Thanks!

    #66735

    In reply to: Some CSS troubles

    r-a-y
    Keymaster

    Add these to your theme’s stylesheet.

    form.dir-form div.dir-search {margin:0 !important; width:auto !important;}

    I’d recommend using a web developer toolbar like Firebug for Firefox to debug these things.

    #66456
    r-a-y
    Keymaster

    @dwdutch

    Use a web developer toolbar.

    If you’re using Firefox, get Firebug.

    #66369
    kmpoaquests
    Member

    Is there any way to get a full version of the post area that the admins get with the tinymce toolbar (including any plugin icons that are added within the toolbar) as well as Custom fields and the ability to upload an image and insert into post , that would be crucial

    #66242
    edelwater
    Participant

    So… I had bowob on my site which I still think is the most fastest and the one users most like. Its also the simplest to install: just activate the plugin sitewide and presto. It was however also the most expensive it costs 40 dollar per 150.000 loads. I think they need to change their pricing schema because that is really a) expensive b) confusing. The cost was mainly why I looked for another solution.

    – arrowchat does not have a teamroom and no bp integration and as far as i can see its not out yet

    – wibiya provides a nice toolbar but the login is a hassle to login via e.g. facebook and another via twitter, i want to have the user account from my own site

    – i now have cometchat enabled but users find the “common chatroom” almost never. I currently have the problem that it keeps counting online users even when they are long gone

    I have not tried webbychat yet maybe thats an idea to test that one also concerning the load. Bowob took abou 50% of my server resources when people where chatting happily away and basically cometchat does the same.

    also notice that ALL of these even bowob which resides on another server take a huge load on your server. It pretty much does not matter which one you choose.

    #64975
    Diesel Laws
    Participant

    I did the same thing. It works now, but I have a notification that is ‘stuck’ on 1. How do you refresh those tables/drop bad ones in mysql?

    EDIT: All fixed now – it was a Javascript conflict with the Wibiya toolbar.

    #9089
    paulherz
    Participant

    My Problem: I did a fresh install of the most recent stable build of BuddyPress on my single-blog WordPress.org 2.9.2 installation, along with the theme compatibility assistant. Almost all links redirect back to the homepage (http://www.giftown.net/troop). One of the key facets of this is accessing user profiles, as I currently have all other BuddyPress components disabled. The BuddyPress toolbar leads me to http://giftown.net/troop/members/Paul%20Herz/profile/ for my profile, but I get redirected to the homepage. When I manually change that in my address bar to http://giftown.net/troop/members/paulh/profile/ (my username rather than my fullname) it works. Something is clearly wrong with my permalinks, but I know no way of resolving this.


    1. I’m running WordPress 2.9.2 (not MU)

    2. I installed WP as a directory.

    3. I installed WP in a subdirectory.

    4. I have not upgraded WordPress since I started using BuddyPress

    5. WordPress, before initializing BuddyPress, was fully functional.

    6. The most recent stable build, aka 1.2.

    7. I have not upgraded from an older BP version, as I have just started using it.

    8. In order to troubleshoot the issue, I attempted to disable all plugins. For all intensive purposes, no, I do not have any active plugins other than BuddyPress and the BuddyPress theme compatibility helper.

    9. I am using a custom theme, by myself, Trooper.

    10. I have in no way modified the core files. It is a fresh installation.

    11. To my knowledge, I have no custom functions running.

    12. I have a separate installation of bbPress that is integrated as of now with my WordPress installation. It is up-to-date.

    13. Relevant error logs, recorded by my server around the time of my BuddyPress installation and forward, reside here: http://pastebay.com/87041.

    14. afmu.com, Affordable Multimedia, is my host. They support the most recent editions of mySQL and PHP. Their servers are Apache running on Linux.

    #64184
    geoffm33
    Participant

    Also, the tweetstream settings page is returning a 404 server response though the page still loads for me in FF.

    See this screen capture

    This is causing an issue with one of my users, his ISP intercepts 404’s I think and is redirecting him to Yahoo (or it’s a yahoo toolbar thing).

    Edit: I also wanted to say thanks for developing this plugin!

    #63523
    Diesel Laws
    Participant

    I use the chat add on from Wibiya Toolbar (Tiny Chat) and we had a big event with over 30 people in the chat room at once(http://freelancerunplugged.com/blog/chat-your-face-off-review/)! it worked great but there is no friend feature. The good thing though is that it puts a little number in brackets next to the Join Chat button on the bottom toolbar so you know how many people are in the chat – but would love a buddypress chat option – it would surely kick Facebooks dodgy chat!

    donald26
    Participant

    I have re-arranged the navigation menus in the Header by editing the CSS. Problem im facing is that, the menu bar keeps shifting its location if the browser toolbar is added or removed.. how do i fix this and make the navigation bar fix at one place. I’m using BuddyPress 1.1.3 .

    Please help me on this

    #8672
    edgy360
    Participant

    Hi,

    A few months ago I moved my website from Google Sites to WordPress MU and then added BuddyPress.

    The problem that I am having is with the forums. They work fine in the plugin directory ( http://jojaynetwork.co.cc/wp-content/plugins/buddypress/bp-forums/bbpress/ ), login with the main site login works ok. Although when I visit the forums on the main site ( http://jojaynetwork.co.cc/forums/ ) it just shows one of the groups ended by and opening bracket and the global BuddyPress toolbar is replaced with a blank space.

    Any ideas on how I could fix this because we really need the forums working. I have tried uploading the BuddyPress plugin again and running the forums installer a number of times.

    Many thanks,

    edgy

    #62419

    In reply to: Color Codes

    catinw12
    Participant

    if you have adobe photoshop or adobe illustrator, those colors are defined in every spectrum you can imagine. just hit on the color swatch from the toolbar, not the admin bar, and pick a color and look for the code

    #8040
    1stAngel
    Participant

    WPMU 2.8.6

    BP 1.3.1

    Users cannot create a blog. Address on toolbar for create a blog is

    /members/USERNAME/blogs/create-a-blog

    Is this correct?

    #57920
    designodyssey
    Participant

    Thanks for sharing regarding RPXNOW. After a quick review, I think their model will probably keep them around, but I’m concerned about the limited functionality at the free level. Most of it requires $10/mo. or more https://rpxnow.com/get. Gigya’s model seems to allow them to provide a free service with much more customization and features. The fact they have many major partners also suggests staying power. http://www.gigya.com/public/Content/GS/Implementation.aspx. THey even have an interesting toolbar, but I probably won’t use it.

    Unless something changes, I’m leaning toward gigya. However, there are issues. Last I checked, they were just finishing the MU version of their plugin (even though some had gotten the .org version working). Also, the biggest complaint I saw was an inability to restrict people from creating multiple logins with each of their identities (e.g. Yahoo, Google). Also, getting users to fill out detailed profiles was more problematic. I would want to see these addressed (although I don’t see how the former could be addressed technologically).

    Regarding OpenID, as with the liquor store, allowing multiple forms of payment is a must. Cash only will restrict customers.

    #57714

    Hi Svenl77,

    You only need to install it from WPMU admin page. Click plugin > install plugin > insert keyword gigya > click gigya toolbar > install > done.

    I am hopeful this will help.

    Jazz regards.

    #7439
    Twittrblog
    Participant

    I’ve installed buddypress 1.1.2 and wpmu 2.8.5.2 and now anything javascript such as my adminbar menus and even some within another plugin do not open… the admin bar menus only go to level two… and anything deeper do not show… and in my plugin static-toolbar the social network links box does not open… I’ve attempted to one by one remove plugins and add them back I’ve even tried deactivating bp and reuploading it… then reactivating plugins (sitewide) as i needed them… and still the home page links dont open… if I am in the dashboard… my admin bar works flawless…. can someone help me?

    you can see my installation here: http://twittrblog.com

    #56010

    In reply to: My adminbar

    Twittrblog
    Participant

    update… it seems to have effected all the javascript pop”ups” like the menu it is also effecting the toolbar at the bottom…. ahhh… must be the bp upgrade?….unactivated unfiltered mu plugin and reactivated… and that didnt solve the problem…

Viewing 25 results - 751 through 775 (of 803 total)
Skip to toolbar