Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 21,326 through 21,350 (of 32,522 total)
  • Author
    Search Results
  • #88242
    zaerl
    Participant

    If it’s a fresh install do this:

    1) Unzip the bbPress zip file

    2) Change the newly created folder name from “bbpress” to “community”

    3) Browse to /community and install bbPress

    Keep in mind that if you have already installed bbPress on /bbpress you can’t simply rename the folder. If you want to rename it follow these steps:

    1) Go to bb-admin/options-general.php and change the bbPress URL to the new one

    2) If you have custom permalinks open the .htaccess file (on the forum root folder) and change the RewriteBase directive to RewriteBase /community/

    3) Rename the folder

    #68598
    KateS30
    Member

    thank you clockworker also thanks to suzkaw (Eric)

    :)

    #34238
    gerikg
    Member

    What is the proper way to write this:

    <?php require( '<?php include('site.html'); ?>/abc.html' ); ?>

    #88227

    In reply to: show user avatar

    Arturo
    Participant

    you rocks Rick :)

    this is the solution:

    <?php echo bb_get_avatar(bb_get_current_user_info(‘ID’), 40); ?>

    #88226

    In reply to: show user avatar

    Rich Pedley
    Member

    I’m coming to grips with bbPress.. slowly.

    Is the $user->ID actually availabel for use at that point or do you need to do a

    bb_get_current_user_info('ID'); ?

    #88224

    In reply to: show user avatar

    Rich Pedley
    Member

    what value are you using for $default? have you tried just using:

    <?php echo bb_get_avatar($user->ID, 40); ?>

    #87961

    In reply to: Welcome Back _ck_

    Elias
    Member

    Wow. This is a reason to log in again here (after being totally fed up by being censored and having to read on the fine bbPress as a plugin for the bloaty WP) and to say: Hello _ck_! ;-)

    #87960

    In reply to: Welcome Back _ck_

    wiseacre
    Member

    Welcome back, girl. :)

    #88192
    MayurSomani
    Member

    ok managed to use js to highlight the code. Thanks for help everyone.

    #68597
    clocky
    Participant

    @KateS30 http://bbshowcase.org/forums/view/available-themes

    WP Mimic 0.02 download link for you! enjoy and have fun! ;)

    #88191
    MayurSomani
    Member

    ok I managed to activate the plugin,

    https://bbpress.org/plugins/topic/bbpresssyntax-hiliter/

    by changing my_plugins to bb_plugins and the folder name to bbpress_syntax_hilite.

    I checked and js and styles are being loaded in header.

    Still, the code is not highlighted :(

    #88190
    gerikg
    Member
    #84342
    gerikg
    Member

    I added a specific page number and nothing.

    Then I visited the specific page then it started generating the code to the uploads folder.

    In the admin section and your screen-shot (http://pixopoint.com/uploads/theme_integrator_adminpage1-480×668.png) notice it doesn’t have “.html” after.

    <?php require( '/homepages/0/xxx/htdocs/xxx/wordpress/wp-content/uploads/pixopoint-theme-integrator/chunk1' ); ?>I added html and it’s working so far.

    I’m still going…

    #88189
    MayurSomani
    Member

    Hi _ck_

    Thanks for quick reply. Can you please tell me about the other ways?

    This is because the plugin above is not working.

    What I need is that someone wraps the code in code tags or pre tags (but not both) and it gets highlighted. I need to highlight java code.

    I can edit any existing plugin to suit my requirements, I just need a hint to start.

    Looking forward to your reply.

    Thanks

    #88188
    _ck_
    Participant

    This has been done a few different ways for bbpress over the years, this plugin is the easiest to find but there are other ways:

    https://bbpress.org/plugins/topic/bbpresssyntax-hiliter/

    #34225
    MayurSomani
    Member

    Is there any plugin that can help me highlight source code on bbpress?

    Any other ideas are also welcome.

    Thanks for reading.

    _ck_
    Participant

    Thanks for the feedback.

    Good to hear they fixed it in 1.0 – it’s actually easy to fix by hacking the core, only two characters need to be changed that way!

    ( >0 instead of =1 )

    #88009

    In reply to: Linking to WordPress

    xarzu
    Participant

    I went the PHP route.

    At the top of register.php I put this code:

    <?php

    header( ‘Location: http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php?action=register&#8217; ) ;

    and it works.

    #88008

    In reply to: Linking to WordPress

    xarzu
    Participant

    While I try several combinations of this I thought I would throw this out for consideration.

    PHP is not like HTML. PHP generates HTML or browser code on the server and spits it out onto the browser on the client side. I am just thinking now that maybe you cannot use this method of redirection because the functionality is overwritten. I am just asking. Has anyone tried this redirection method with PHP before?

    As I type this, I am deleting the browser histrory/memory to see if that helps because so far this method does not redirect anything.

    #87958

    In reply to: Welcome Back _ck_

    Welcome back _ck_!

    You’ve truly been missed :)

    #88007

    In reply to: Linking to WordPress

    zaerl
    Participant

    Try:

    RewriteRule ^.*/bb-login.php$ http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php [R=301,L]

    or:

    Redirect 301 /bb-login.php http://www.arguemax.com/wordpress-2.9.2/wordpress/wp-login.php

    #88174

    In reply to: Modlook tag

    _ck_
    Participant

    Yes, I wrote the “Skip Akismet” plugin last year to do that.

    https://bbpress.org/plugins/topic/skip-akismet/

    It’s cross compatible with bbPress and WordPress, however they refused to accept it into the WordPress plugin repository and told me to submit it to the core (which I didn’t bother if they are going to be like that).

    Later I discovered the akismet plugin itself already has a “trusted user” filter via bb_is_trusted so my method is overly complicated, but my plugin could in theory be modified to trust users who have X number of posts or pass a certain minimum membership age.

    This method however would be much cleaner:

    add_filter( 'bb_is_trusted_user','more_trusted',10,2);
    function more_trusted($trusted,$user_id) {
    // bb_get_user here and determine if trusted, possibly cache result
    return $trusted; // boolean true/false
    }

    Feel free to develop that, let me know if you need help.

    #88006

    In reply to: Linking to WordPress

    xarzu
    Participant

    oh.

    That is pretty clever. I like that. I think I will use this technique. Now I just need to refresh my memory on how to code .htaccess

    I have created the file, .htaccess and I included the lines

    And I gave it a shot, but it did not work. Is there something I need to do such as make the file a certain type or read/write privledge?

    #88172

    In reply to: Modlook tag

    thanks :)

    #88183

    In reply to: Facebook Integration

    you asking for help or notifying that you have done it.

    If the latter one, then I would like to know more on how you did it :)

Viewing 25 results - 21,326 through 21,350 (of 32,522 total)
Skip to toolbar