Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'codes'

Viewing 25 results - 1,576 through 1,600 (of 1,693 total)
  • Author
    Search Results
  • #89341
    _ck_
    Participant

    If you want the code tag to keep working but disable backticks, you’ll have to make a filter that encodes them into a html entity (`) before it gets to bbpress’s filters.

    #34318
    CEThom
    Member

    I’m new to bbpress, having previously only used phpbb where all the codes are present as follows:

    Italics:

    Bold:

    So on and so forth. But these codes aren’t working for me on bbpress.

    What are the codes for formatting text on bbpress, ie. bold, italics, underline, centralising, changing the size, etc?

    Or is there a plugin I can get so the text bar appears at the top of the page like it does on a phpbb forum?

    #88834

    Hi Kevin, the problem is my header and footer are running a lot of custom codes for grabbing my subscribers and twitter counters for example. This information is grabbed from WordPress plugins that connect on Feedburner and Twitter API’s. I have also the problem that the blog uses a 960 grid system for the layout. I’m really unsure how to move the header and footer to my bbpress folder without crashing everything :(

    #88648

    Morning Dudes,

    duplication of ID for a start…

    Maybe you could have said that instead of just typing” seriously? “.

    The container having an ID is fine, but inside I’d suggest using classes.

    Why? It’ll be unique on the page therefore an ID is by far the better options (quicker use of CSS selectors, much easier for the DOM, and also allows better integration with any JavaScript or Client side CSS changes).

    But if all that is in that div is that ul, then the div may not be needed.

    Container DIVs (at one level of geneology) are very very useful.

    It allows quicker/better DOM iteration, and allows for much more flexible theming especially if dealing with floats, placements (relative/absolute), and really helps with backwards compatibility. I’m all for minimalist design and code, and I know that there is a cry to avoid “divitus” these days, but really having 1 wrapper div to allow you play with margin/padding/width combination really shouldn’t be frowned upon. Especially in software that hardcodes so much into it’s core, and really doesn’t like outputitng IDs or Classes.

    Mzimmers, I’d still suggest putting the DIV in your theme instead of the ‘core’, just because I do believe that we’ll be upgrading to a new release relatively soon (i.e. within 2010).

    #34269
    sheryll
    Member

    Is there a way to define an “if” statement for the topics page. Here is what I am trying to do. I want the topic info/meta to be displayed on the sidebar. The sidebar codes are in the footer.php file which means that it will be displayed site-wide.

    There is this line if (bb_get_forum_is_category()) : for categories, so I’m wondering if I can do something similar like “if this is a topics page, display so and so.” and if not it will be hidden.

    #34262

    Topic: Avatar size

    in forum Themes
    Kasparas
    Participant

    How to resize avatar in topic view, i didnt find any size codes in style.css.

    I want my forum look more like bbpress.org :)

    #88017
    Kasparas
    Participant
    cnc
    Member

    Recently I got this mesg who drives me crazy..

    Warning: Visiting this site may harm your computer!

    I don’t know what happened to my blog and forums.. I think all was secure and safe in my site.. I have talked to my hosting company they clean it.. but the problem is still there..

    http://www.car-n-car.com (wordpress)

    http://www.car-n-car.com/forums (bbpress)

    It’s really disturbing me… how can I fix it?

    is there any wordpress or bbpress authenticated plugin who defend my site from suspicious codes, and hackers attacks..

    please guide me to remove this bloody mesg…. otherwise my site will useless :(

    help me again…

    Regards,

    cNc

    #88232

    In reply to: How do you write this?

    gerikg
    Member

    I’m trying to see if I can create a theme via pixopoint that works for everyone. It requires you to put

    <?php require( 'xxxx/1.html' ); ?>, <?php require( 'xxxx/2.html' ); ?>, <?php require( 'xxxx/3.html' ); ?>, etc. in different locations of the bbPress theme.

    The xxxx changes with every server. Instead of finding and replacing all instances of the codes. I wanted to create another file that you can put in the path and it will fill all the xxxx.

    Does that make sense?

    #86846
    rabbitdk
    Member

    Not sure that does exactly what I want, btw I am no good with codes, but that is explained pretty detailed so I could probably try it out (however, I just messed up my bbPress install while messing with permalinks :D)

    I want the full forum post to be published as a blog entry, by the click of a button, to promote the posts as you said :D

    #33930
    psycheangels
    Member
    function get_post_img(){
    global $bbdb;
    $topic_id_ft = get_topic_id(); //topic id for getting text of first post of the topic
    $first_post = (int) $bbdb->get_var("SELECT post_id FROM $bbdb->posts WHERE topic_id = $topic_id_ft ORDER BY post_id ASC LIMIT 1");
    $content = substr(strip_tags(strip_shortcodes(get_post_text($first_post))),0);
    preg_match('/[img](.*?)[/img]/i', $content, $matches);
    $src = $matches[1];
    echo $src;
    }

    modified from here http://bbpress.org/forums/topic/show-a-snippet-of-the-post-under-the-topic-title#post-39260

    #84567

    In reply to: bbPress mobile version

    chandersbs
    Member

    Still looking forward to the codes……

    #84556

    In reply to: bbPress mobile version

    chandersbs
    Member

    @BerryReview I’d love to use that plugin if available, I don’t mind editing the codes at all.

    I tested your page with this website http://iphonetester.com/ and it’s looking good.

    Good work, man!

    #85527
    deadlyhifi
    Participant

    Presumably if I changed (or removed) the spelling of the codes in the names (not that I will), it would break and any info people had put in previously would be lost.

    Only if you changed the name of the value. i.e.

    'first_name' => array(0, __('What do they call you?')),

    should be fine, as long as the first_name stays intact.

    And I’ve increased the number parameter at the end of your add_action(‘extra_profile_info’, ‘add_descriptions’,15); – even I could work out that was important.

    That number is the priority that the function should get in relation to everything else that’s loading on the page. Read about that here: https://codex.wordpress.org/Function_Reference/add_action

    My code, btw, was at point got from this forum somewhere, so I can’t take credit for it. But it shows that anything in the functions.bb-pluggable.php file is easily replaced or manipulated.

    #85526

    That’s great! That’s brilliant Tom, thanks very much. I was obviously missing a few commands there!

    Thanks both of you, you just made a lot of integral practitioners very happy with their new found ability to register what they’re doing with their practice for mind, body, spirit and shadow on their new forum. Here’s the handiwork in action: http://wholelifewholeworld.com/forums/profile/james-blacker

    Presumably if I changed (or removed) the spelling of the codes in the names (not that I will), it would break and any info people had put in previously would be lost.

    And I’ve increased the number parameter at the end of your add_action(‘extra_profile_info’, ‘add_descriptions’,15); – even I could work out that was important.

    Tom, if you’re on a roll, do you have an insight for the one I posted on why linking poster names to their Profile doesn’t support usernames with spaces? Presumably you’ve linked Posts to people’s Profiles on your forum having done the extra work to modify your own profile pages?: https://bbpress.org/forums/topic/are-usernames-with-spaces-sensible

    Thanks again, both, greatly appreciated.

    Cheers, James.

    PS. Paul, no relation to my colleague, Gary Hawke, presumably? http://integral-uk-symposium.wholelifewholeworld.com/meet-the-people/gary-hawke/

    #33254
    gerikg
    Member

    I don’t know if anyone cares but I’ll just put it out there:

    Every Theme you download from bbpressthemes.net (I can guarantee you the original authors didn’t do it) the headed.php has advertising codes….

    <script language="javascript">
    document.write('<style> #a1dd122 { margin: -40000px; position: absolute; text-align:right; } </style>');
    </script><a href="somewebsite" id="a1dd122">blah</a>

    Is this considered okay???

    #85298

    In reply to: Really basic stuff

    why not start paid support? that can be useful for the funds and at the same time noobs will get proper support without having to work on the codes which they would never understand…

    #85011
    Marius-
    Member

    That entire code` should I find those #codes in the stylesheet and plase the // infront of?

    Are you saying that I dont need to delete anything from the php files if I use this code. I just let everything be, and place that in the CSS?

    I tried putting it in Firebug, and nothing happened.

    #85008
    Marius-
    Member

    To be more specific. I use Kakumei theme, so what files include tag codes?

    I know post-form.php, front-page.php probably has them. But which others?

    Is it safe for me to just delete those lines from these files? Or should I do something else?

    #84892
    paulhawke
    Member

    My experience of the WordPress codebase extends to version 2.9.1, I cannot speak to what is going on with version 3.0. Matt said something about bbPress being hosted on a page using a WP short-code at one point. As far as I know, there is no facility for page slugs to handle wildcards (from what I have seen). If you wanted to host bbPress as a plugin using a short-code on a WordPress page, it’s my guess that you would need to have different short-codes for the front page, topics page, views page, single topic, etc. Either that, or you recode the entire bbPress GUI to be Ajax based and run on a single page in-place. Somehow you need to extend the WordPress roles to encompass the bbPress side of the house.

    When you go down this road you eventually get to the point of Drupal – amazingly vague and configurable database, slow because it’s got to be all-things-to-all-people and … well … yeah. I would rather not see either WordPress or bbPress end up there.

    It it’s favour we can strip out a large portion of the codebase that deals with preferences, users, filters, plugins, themes, sidebar widgets and so on. We gain a lot from the main WordPress codebase but its worrying the “bloat” that comes with that approach.

    #84477
    onthebeach96
    Member

    Spammers suck, they are impossible to stop it seems. Recaptcha seems good but people don’t like typing codes just to post their forum posts. It’s sort of a crap shoot.

    @grassrootspa I read that Akismet may not work perfectly as a plugin, so I don’t know what to do.

    #84269
    Dailytalker
    Member

    Did you follow the steps decribed in this topic?

    Did you install the plugin?

    Did you change the permalinks to “name” before activating the plugin?

    Did you change the codes in your htaccess?

    Did you write as rewrite base /?

    Thats what I have in the htaccess of my wp-frontpage:

    RewriteBase /

    So it really must work. I am pretty sure.

    #83736
    chrishajer
    Participant

    To space them out, could you do something like this?

    #tag-page a {
    margin-right: 10px;
    }

    I think I would add an additional div to your template so that this #tag-page a doesn’t affect all the links on the page. Just wrap the section you want this to work on in something like <div id="tag-heat-map">.

    If you want to do use a bullet instead after each link, you could do this also, but I am not certain what browsers actually support text generated by the :after pseudo-element (I think it’s CSS 2.1):

    #tag-page a:after {
    content: "%5C2007%5C00B7%5C2007";
    }

    The 2007 is a digit space, and the 00B7 is a middot. Maybe something like that? Not even related to bbPress really.

    EDIT: above, those %5C are supposed to be backslashes but I can’t keep them from being translated or decoded or whatever. Should be character encoding from here:

    http://www.w3.org/TR/2000/WD-MathML2-20000211/bycodes.html

    #81781
    Dailytalker
    Member

    Kevin, you can check yourself:

    Old forum:

    http://www.dailytalk.ch/forums/index.php

    (I had pretty urls before but I removed them when I moved this forum into another folder.)

    New forum:

    http://www.dailytalk.ch/forum/

    The old forum had a tinymce-editor with a lot of cool features…drop-down menu for font-size, drop-down menu for different font-style, drop-down menu for different font-color, you could put some letters up (for example “CO2” you could write with the 2 higher than the other letters and also deeper etc.) movies, pictures, links, quotes with name of the original author, message function to reporte abusive messages to the moderators, you could temporary ban members, you could move posts from one topic to another in a very easy and very nice way, sophisticated privat messaging, high security level no spam, you could in an easy way change the login requirements, sophisticated admin-section, admins could see the IP-Number of the visitors, very easy mod (=plugins) upload through integrated ftp-upload, ssi-functions and so on….

    The change to bbpress was not an easy decision for me. In my opinion bbpress is still an adventure. Many bbpress-projects are on release candidate level. I used SMF for 3 years and was happy. The problem is that I also have blogs on wordpress and wordpress mu. I had some problems with integration of SMF into wordpress. There are certainly some very old bridges but the different codings didn’t make it easy to me. I integrated SMF with SSI-Functions to wordpress…but I think that because of the similiar coding bbpress is much easier to integrate into wordpress. Thats why I finally decided to give bbpress a chance. I’m somebody who likes to try out new or other things. ;-)

    @hpguru, what you say is not true at all!!! I never ever had problems with spam when I used SMF!!! SMF offers different register opportunities. They have in the admin-section a so called registration management which offers four different options for registration:

    1) Registration Disabled:

    Disables the registration process, which means that no new members can register to join your forum.

    2) Immediate Registration

    New members can login and post immediately after registering on your forum.

    3) Member Activation

    When this option is enabled any members registering to the forum will have a activation link emailed to them which they must click before they can become full members

    4) Member Approval

    This option will make it so all new members registering to your forum will need to be approved by the admin before they become members.

    Further they have captcha-codes which need to be entered in a registration field. (You can even change the level of those codes. They have different difficulty-levels).

    New updates are shown in the admin section…is very simliar to wordpress and you can easy update with integrated ftp-upload.

    #82912
    stulynn
    Member

    Now I’m in a pickle. I cannot visibly see an admin screen for bbpress and therefore I can’t login to try to make changes. I did add this path in bb-config

    $bb->uri = ‘http://your-domain-name.com/forum-path/&#8217;;

    (after key codes) and it’s done nothing. My folder in file manager has been changed from bbpress to forum. I tried to change it back but because I can’t get into bbpress admin I can’t change the admin link. Right now I’d be happy to go back to bbpress and not forum and believe you me when I say I’ll become backup queen.

    Can anyone please help?!!

Viewing 25 results - 1,576 through 1,600 (of 1,693 total)
Skip to toolbar