Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 27,451 through 27,475 (of 32,458 total)
  • Author
    Search Results
  • #65474

    In reply to: Work in progress

    geekgirl89
    Member

    I’m currently trying to get the database extended (have never coded in my life). And yes, people will be able to reply, just haven’t added the code yet. To be honest, I’m just mixing all sorts of code together to see what I get. I went through a lot of trail and error and this was my result. I think I’m going to have to get a couple of people to hep me in this project.

    #3530

    Topic: Adding [code]

    in forum Plugins
    rivermaya
    Member

    Hi,

    why if I use the

    Code:

    it didn’t show the real code that I want to show to members ? like hyperlink codes or br

    it always converted to html ..

    how to fix it or what plugins I must install ?

    I already installed bbcode Lite n Buttons Toolbar

    #65490
    Steve12
    Member

    There are some simple ways to add a sidebar .It can be done without using any code and there is a superb tutorial in this link http://www.bingness.com/10/useful-products-for-online-business/customizing-any-wordpress-theme-for-free/ which is really useful.

    customize wordpress theme

    #3510
    bboysmaster
    Member

    My forum is using gmail for email setting. However my user can’t received email when registering using hotmail or yahoo but they received it using gmail. Does it has something to do with the email coding that caused the email to be block? If it is, i really hope you guys fixed it for the next version :).

    #65476

    In reply to: Digg Integration

    Sam Bauers
    Participant

    I don’t think there is a reliable equivalent which will work everywhere.

    If you are just looking for the current topic’s link then try topic_link() with no arguments.

    #65482

    In reply to: intended URL

    chrishajer
    Participant

    What domain is it at, and what directory did you put it in?

    If your site is example.com and you made a directory called bbpress, then the intended URL is probably:

    http://www.example.com/bbpress/

    I thought the installer guessed and prefilled that anyway?

    #65098

    In reply to: Kineda.com

    kineda
    Member

    Thanks necati. Glad you like it. :)

    I actually only run 1 adsense unit (and even that’s not directly through Google. It’s through a special deal I have with Glam Media).

    The 3 graphical banners you see are not provided by Google.

    #3520

    Topic: Digg Integration

    in forum Themes

    in wordpress to integrate digg in a posts automatically I use code like this digg_url = '<?php the_permalink() ?>'; This does not work (obviously) in in bbpress, so can anyone tell me what the equivalent of the permanlink is?

    #65471
    baanhinghoy
    Member

    Is there any script that automatically show the attached image file as the image on the post instead of file?

    I hope I’m not bothering you guys.

    Thank you :)

    #65469
    baanhinghoy
    Member

    Thank you very much. I aware of what you are trying to say, but what I meant was after users attached the image file, I’d like the file to be automatically (from my server) shown as an image on the post. Is there any way around it?

    I hope you guys could help me out.

    Thank you for your help :)

    #65468
    chrishajer
    Participant

    The allow images plugin is the one you need (the attachments one just allows attachments to posts).

    Did you activate it?

    People will need to have the image posted somewhere before they can insert it into their post. It can be a flickr URL, Photobucket, ImageShack, Picasa, whatever, so long as the image is publicly available on the Internet. Once the image is accessible on the Internet, they just need to insert the HTML to embed the image. the img tag will look like this:

    <img src="http://www.flickr.com/whatever.jpg" />

    If you post a URL to your forum, someone can try it to see what’s happening.

    #65459

    I always do. :)

    However, I could see that there were no errors that should be causing this, so left those things until later. But since you won’t help me until it “validates” – it now does.

    And the original problems are still there, plus now the log-in info is halfway down the page and behind the forum summary area.

    http://www.undercoverlawyer.com/forum/

    Can someone now please look and see what the real problem is? I’m sure it’s my fault. But I’ve just been looking at it too long to find it.

    Thanks.

    -Sherry

    #64679
    mciarlo
    Member

    Are you sure? I don’t mind recreating databases, but if it can be avoided, it would certainly make me happy =).

    #65439
    chrishajer
    Participant

    I think that is a case of mixing an array ($title[]) with a string ($title). Somewhere, $title is being used as a string, and this piece of code wants to use it as the array $title[].

    Glad you got it working. Hack away.

    #65332
    Detective
    Member

    Currently the search results don’t work. To fix them, please add the following line in the function gs_search_result_loop:

    function gs_search_results_loop($results) {
    global $bb_post; // <-- add this line

    #65437
    chrishajer
    Participant

    I don’t think you can do a case without a switch first. Something like this:

    <?php
    /*
    Plugin Name: Title Modifier
    Author: Matt George
    */
    add_filter('bb_title', 'titlemodify');

    function titlemodify( $title ) {
    //your code that does something to $title;

    switch ( bb_get_location() ) {
    case 'topic-page':
    $title[] = get_topic_title();
    break;
    }
    return $title;
    }
    ?>

    #65436
    photolord
    Member

    Do you know what I did wrong? When I try to activate the plugin I get:

    Plugin could not be activated; it produced a Fatal Error.

    I want to get rid of the site title that comes after the topic title on topic pages. That way I’ll only have the <title>Topic Title</title> in the browser. I need some expert coder help. :o) This is what I have that did not work:

    <?php

    /*

    Plugin Name: Title Modifier

    Author: Matt George

    */

    add_filter(‘bb_title’, ‘titlemodify’);

    function titlemodify( $title ) {

    //your code that does something to $title;

    case ‘topic-page’:

    $title[] = get_topic_title();

    return $title;

    }

    ?>

    #3506
    aiitee
    Member

    hey,

    i was thinking about a plug with that hides, cloak, the links to those visitors who are not registered or logged in the website. Its a great idea i think for those who need to get emails or more registered people.

    the script needs to detect the <a href=""… etc etc code to “cloak” the links

    whatcha say?

    #60292

    In reply to: Akismet key id

    chrishajer
    Participant

    WordPress.com says this about the keys:

    “Please use your own API Key and don’t ever share your API it is like a password for you =)

    I don’t know about advantages or disadvantages for using the same key. I used to use the same key for all sites, but now I get a new key for each site (which is a big pain). I haven’t noticed a performance difference one way or the other.

    #65435
    chrishajer
    Participant

    This is an old post, but the concept still applies:

    https://bbpress.org/forums/topic/title-tags#post-9045

    bb_title is the function you need to override with a plugin, such as this one. To see what bb_title and bb_get_title do, take a look at bb-includes/template-functions.php starting around line 305 (in version 0.9.0.2).

    #3501

    Topic: Retro Garden Forum

    in forum Showcase
    Rhys Wynne
    Participant

    Hi everybody :)

    I have created a new forum for my site, Retro Garden.

    Retro Garden Forum

    Integration is almost seamless in FF, and pretty close in IE, so let me know what you think! And any suggestions to improve it.

    #65421

    In reply to: Two small questions

    Rhys Wynne
    Participant

    Figured it out by looking at the documentation. Silly me :(

    https://bbpress.org/documentation/themes/

    #3498

    Topic: Two small questions

    in forum Themes
    #64819
    psychoo
    Member

    Pokerlover:

    Slug means URL, but I’m not sure :).

    You have to change the settings/premalinks option to day and name. After that you can change the “Slug” in the Page management to whatever URL you want, for example http://www.site.com/bbpress/.

    After that your page links to bbpress, OK. But how you make it recognized as a “current page item” when you’re in the forums?

    #65422
    chrishajer
    Participant

    I doubt it has anything to do with subversion.

    What revision did you check out? I think the trunk release is probably broken (I could be wrong, but I still wouldn’t use it in production) so I would check out tags/0.9.0.2/instead of trunk:

    svn co http://svn.automattic.com/bbpress/tags/0.9.0.2/

Viewing 25 results - 27,451 through 27,475 (of 32,458 total)
Skip to toolbar