Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 29,801 through 29,825 (of 32,491 total)
  • Author
    Search Results
  • #58880

    Ok so it won’t type out the code the way I want to here. I did the backsticks thing… But I know someone out there will be able to help me out anyway :)

    #58848
    Trent Adams
    Member

    It is defined in style.css through the following:

    /* Profile Page
    =================================== */

    #profile-menu {
    list-style: none;
    position: absolute;
    right: 0;
    }

    #profile-menu li {
    font-size: 1.1em;
    background-color: #eee;
    padding: 4px 7px;
    display: inline;
    border-top: 3px double #9e9e9e;
    position: relative;
    top: -10px;
    }

    #profile-menu li.current {
    background-color: #ddd;
    border-top: 1px solid #9e9e9e;
    }

    My guess would be that you have to change the position from absolute to a margin call, but maybe someone else can give you some more hints. I am a trial and error CSS changing kind of guy….. ;)

    Trent

    #2063

    I’m calling the wp-headers in forum as advised in seamless integration thread. I need to add a link to the forum profile in the header as users get confused when they only see the admin tab for wordpress. I have the loginanywhere script, and need a link to the users profile edit somewhere in this code:

    `echo “<div class=’greeting’>nHej, “; echo $user_identity; echo “! Inställningar | “;

    echo “Logga utn</div>n”;`

    My forum is here: http://www.doublepeace.se/forum/

    #2062
    _ck_
    Participant

    I’ve got sloppy members not closing their tags and the markup runs through the rest of the page. Doesn’t WP already do auto close on tags? Did bbpress not pick up that part of the code?

    #58870
    M
    Member

    Found the problem, it is indeed a plugin issue (Allow Images), but deactivating the plugin had no effect for some reason and I only saw it when I worked on my test forum and did a fresh install of the plugin. The plugin still works to display images, you just can’t display code.

    Will pop over and give the plugin author a heads up.

    M
    Member

    After trying to add code between backticks, all I’m left with is something like this:

    `

    m

    `

    Instead of:

    <img src="http://www.yourimghosthere.com/yourimage.gif" />

    Deactivating plugins didn’t fix it, and nothing else has changed other than the upgrade. Is anyone else running into this?

    Edit: okay, at least now I know it works on the bbPress forums. I’ve no clue where to look to fix this, can anyone toss out an idea or two?

    ‘code’ works, so long as I don’t include the brackets around the code I’m trying to show.

    #2055
    _ck_
    Participant

    You may notice that the table row highlighting doesn’t work in IE (at least in IE 6.0 which many people use)

    I found this easy, drop-in solution to use IE’s HTC support

    http://www.xs4all.nl/~peterned/csshover.html

    save this file into your template folder

    http://www.xs4all.nl/~peterned/htc/csshover.htc

    then add this to your stylesheet

    body {behavior:url("/path-to-your-template/csshover.htc");}

    optionally but recommended, you might also want to add this to your .htaccess in apache since it probably won’t serve the right mime type for HTC by default which breaks XP sp2

    AddType text/x-component .htc

    Now :hover can work on almost anything in IE just like real CSS browsers.

    #58853
    _ck_
    Participant

    Ah I’ve now learned this is from the moderation plugin which apparently is moderating ALL posts even though it’s set not to :(

    #58080

    In reply to: bbSync

    starrett
    Member

    fel, everything seems to be working great except that when I use <?php bbrepliestext(); ?> I get this error message: “Fatal error: Call to undefined function: get_topic() in /path_to/wp/wp-content/plugins/bbsync/bbsync.php on line 495”

    Any suggestions?

    retrospec
    Member

    Hello,

    After installing the software successfully, all database tables were created ok but when I clicked on the link to login it repeatedly told me the forum software wasn’t installed. On checking I noticed two bizarre things:

    1. Although the placeholder topic had been created and other tables populated, the forum table had no entries, it was empty, i.e. it had not created the first forum detailed in the installation to match the topic that was there. Creating a temporary entry with the id of the successfully created made the forum work, but then…

    2. When I logged in as the user I created during the installation there was no admin option so I check the user meta table and it was down as ‘member’ and not ‘key master’.

    I am using the latest bbPress (downloaded this morning), running php 5.2.3 and mysql 5.0.41. Both are near enough out of the box installations and working fully (the only change to mysql was to set password in legacy mode).

    Please help as I can’t do anything!

    btw, one other minor question completely unrelated. Why when I look at people’s code listed in forums or hyperlinks, is it chopping off the entry at the end of the line and not wrapping? I’m using firefox, haven’t checked against IE.

    #49620

    In reply to: Emoticons For bbPress?

    _ck_
    Participant

    I’ve now made a smilie plugin here:

    https://bbpress.org/plugins/topic/bb-smilies

    By the way, WordPress’s default smilie detection code and therefore the code converted here in the earlier post are very flawed when it comes to whitespace issues.

    I created a patch awhile back that made it work 99% of the time regardless of spaces before, after or at the end/beginning of a sentence.

    add this function:

    function prepSmilies($string) {return "/(s|^)".quotemeta(trim($string))."(s|$)/";}

    then add this near the start of function convert_smilies:

    $prep_search = array_map('prepSmilies', $wp_smiliessearch);

    then change the $contenst=str_replace line near the end of function covert_smilies:

    $content = preg_replace($prep_search, $wp_smiliesreplace, $content);

    Now if only it was this easy to tweak wp/bb’s search function to be so much more intelligent.

    #2011
    chaoticmess
    Member

    I edited the Karma Fruit theme for wordpress a bit to match the Bbpress theme. They dont look totally alike. There are some slight differences but I think when you look at it you think

    of the Bbpress theme. I loved the Bbpress theme so much I wanted my WordPress to look the same :) . If you want the file changes let me know. Its just a few lines of css to make the difference in the original look for Karma Fruit.

    http://chaoticmess.sittingonair.com/ < — Karma Fruit Theme

    http://chaoticmess.sittingonair.com/forum/ <—- Bbpress Green Theme

    MJ

    #57686

    In reply to: Tags not separating

    thierryyyyyyy
    Participant

    I also have a idea why *every* user put tags space separated.

    I my theme, there is a sentence just before the tag text field that tells users to put spaces …:

    <label for="tags-input"><?php printf(__('Enter a few words (called <a href="%s">tags</a>) separated by spaces to help someone find your topic:'), get_tag_page_link()) ?>

    And I think that in the original kakumei…

    and my translation (in french) also ask user for space separated tags.

    to, you can have a “social” bug-fix of this problem : change the cited line in your theme (file = post-form.php). That “social engineering” !

    #56706

    In reply to: Plugin: Avatar Upload

    beaver6813
    Member

    Hey there, i’ve just installed Avatar Upload and it works brilliantly i must say! However identicon for bb-press as posted by louisedade (created by fel) gives me an unexpected error when i try to activate, running this outside of the plugin centre or whatever you want to call it, it gives:

    Fatal error: Call to undefined function: add_action() in /home/bblocked/public_html/www/forums/my-plugins/identicon.php on line 286

    Inside the plugin centre it just says fatal error :-P

    I have identicon installed on my wordpress blog and bbpress retrieves all functions from wordpress etc etc intergrated bla bla bla :-P Any ideas?

    EDIT: When editing out add_action at the bottom it doesn’t produce any errors… so i don’t know what bbpress’s problem is :-/ anyway of getting it to give more info? “Fatal Error” doesn’t explain much lol

    #58807

    In reply to: Paypal Donate Plugin?

    Trent Adams
    Member

    No plugins made yet, but it would depend on what the paypal code has in it to tell whether it would be stripped out or not. As well, since each user has their own paypal code (generated by paypal), it would seem impossible for a plugin to keep track of it.

    Best bet would be to try and paste the paypal donate code in a post and see if it works. IF not, we might be able to get a plugin to allow it.

    Trent

    #58838
    Trent Adams
    Member

    There is a plugin here called ‘bbPress Post’ that integrates your wordpress blog comments into your bbPress forum as topics for posts. Fel64 also ‘redid’ this plugin and has it so the posts are created in the bbPress forum from the wordpress blog and all comments are in the forum, but also show up in the wordpress post as comments as well.

    Other software blog programs, I haven’t heard of any. Moving over to WordPress is a good option in my mind if you haven’t looked at it already since bbPress and WP are made and developed by many of the same people ;)

    Trent

    #2049
    serimu
    Member

    I have bbpress(0.8.2) integration with wordpress(2.2.1).

    I did not have any forum management before I add a forum to my previous wordpress website. Number of users are increasing daily. So as I did not have any experience with management of a forum, I have some problems.

    In the beginning I installed to standard version of bbpress. After one month of forum experience, I want to add moderation plugin. Because my users are not experienced forum users. I have a range from middle school students to company owners or retired workers.

    Some of the users sends strange messages, which I dont want to see on my forum.

    Some of them do not allow forum rules. And some of them dont know how to use a forum. Namely when they have a new question, they write “I know it is not related to the subject …”.

    I think what I need it to make the all messages for new users, moderated. Or all messages are moderated. I dont know why but the moderation plugin do not work with latest version of bbpress. So I have to uninstall the plugin and make messages un-moderated.

    I will also try “move it” plugin, for unrelated messages to subject of message.

    But what is the best management style for such a community. I think bbpress.org do not need moderation of messages, because at least its community know how to use a forum.

    Is it better, not to waste my time to manage the forum. Namely no moderation to messages or just live what ever people writes to the forum. As I said before this is my first forum, and I also dont want people to use msn-type language usage. Am I fascist :) ?

    #58716
    Simon99
    Member

    Aha, glad I spent an extra couple of minutes searching, as I was about to ask this same question. bbpress looks great btw, I really like the slimline approach. :)

    #58783
    Trent Adams
    Member

    It was just a conditional that you put around the plugin call in your template that was giving me issues. I removed the conditional call and it worked 100% ;)

    Trent

    #58782
    drmike
    Member

    So should we hold off on this one then or what?

    or are you just causing problems again, Trent? ;)

    #51128

    In reply to: drupal integration

    drmike
    Member

    I thought you guys were? ;)

    #58715

    under_title looks like a pretty lame hook; I doubt you can trust it’s existence in every theme and it may get removed entirely in some later version of bbPress.

    If you need to add content to a topic page there, I’d just edit your custom theme.

    #58829

    In reply to: Edit topic subject

    creatiu
    Member

    Sorry I saw that is very simple… you can delete this topic if you want :-)

    #57786
    Nola1974
    Participant

    Am I the only one that notices that that link goes to a blogger blog? :)

Viewing 25 results - 29,801 through 29,825 (of 32,491 total)
Skip to toolbar