Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 28,851 through 28,875 (of 32,491 total)
  • Author
    Search Results
  • #61190

    In reply to: Plugin: Gravatar

    suzkaw
    Member

    I wish I would have seen this earlier. :) I just hacked in gravatar support by using the wordpress plugin. Since I didn’t see any listed in the extensions section I went ahead and applied to have mine added. I will go ahead and delete mine since their is really no point in having two.

    If you have any use for the code I used let me know I can send it on.

    #2541
    Null
    Member

    Hi,

    I’m trying to add a new custom page to my forum. It’s very simple, this is what I have so far:

    – 1 custom page called test.php

    – the page includes the forum header and footer

    – The content (middle) part is pulled from the db aswell

    All works fine except hyperlinks! Links like http://www.test.com will NOT appear as a hyperlink, but just as plain text. How to fix this? I want this to behave just like this textfield I am typing in right now (auto hyperlink converting).

    bbcodes like bold do work.

    _Null

    livibetter
    Member

    This plugin can validate more deeper. Not only the HTML tag’s attributes, but also the contents of attributes. You can set your own regular expression for attributes. For example, you want limit users to post Flash videos only from YouTube or Google, then you can restrain the src attribute.

    Sample posts: This post shows you an embedded YouTube video and this has a image floating at right side.

    Visit Plugin page or directly download HTMLTagAttributesValidator.php.

    Any comments on this plugin are very welcome.

    #61239
    livibetter
    Member

    I only tested one case, the dollar sign ‘$’ on my testing forum with commenting out the entire function bb_user_sanitize except last line. I can register with ‘$’ in username, post with that account and the username is showed correctly.

    #61237
    livibetter
    Member

    add a filter for bb_user_sanitize to allow those characters you need (choose carefully!). Check line 114 in formatting-functions.php for the parameters which you can use in your filter.

    I personally don’t agree to allow users having fancy or funny usernames. You may encounter more problems that you have never thought.

    #61232
    livibetter
    Member
    <?php
    /*
    Plugin Name: NoNewsPostsForMembers
    Plugin URI: https://bbpress.org/forums/topic/no-new-posts-for-members
    Description: No New posts for members
    */

    function NoNewsPostsForMembers($roles) {
    $roles['member']['capabilities']['write_posts'] = false;
    return $roles;
    }

    add_filter('get_roles', 'NoNewsPostsForMembers');
    ?>

    Put it in my-plugins with any filename.php you like. Activate it. Then this should work.

    #2537
    bluegeek
    Member

    Hello!

    I want to restrict new posts in bbpress only to moderators and admins. What is the best way to do it?

    I’ve found a very simple way editing capabilities.php but I would like to avoid editing the source code.

    'member' => array(
    'name' => __('Member'),
    'capabilities' => array(
    (...)
    'write_posts' => false,

    Thanks.

    #58177

    In reply to: bbSync

    zenonx
    Member

    So there should be special user that would “post” all such comments.

    Anyway, I can’t use this plugin because as soon as first comment appears, I’m not an admin anymore :(

    #60921
    sethi2000
    Member

    I am still getting error after making all the recommended changes

    Warning: mysqli_get_server_info() expects parameter 1 to be mysqli, boolean given in /home/.mascot/digitalguruz/sheetudeep.com/bbpress/bb-includes/db-mysqli.php on line 80
    Cannot select DB.

    #61217
    livibetter
    Member

    I made some changes to have paginated search results on relevant post. However, I am not sure is this what you need. You need to modify two files: search.php in root of bbPress and search.php of your template files.

    Replace if block start at line 9 in search.php of root of bbPress with:

    if ( $q = stripslashes( $q ) ) {
    add_filter( 'bb_recent_search_fields', create_function( '$f', 'return $f . ", MAX(post_time) AS post_time";' ) );
    add_filter( 'bb_recent_search_group_by', create_function( '', 'return "t.topic_id";' ) );
    $bb_query_form->BB_Query_Form( 'post', array(), array( 'per_page' => 5, 'post_status' => 0, 'topic_status' => 0, 'post_text' => $q, 'forum_id', 'tag', 'topic_author', 'post_author' ), 'bb_recent_search' );
    $recent = $bb_query_form->results;

    $bb_query_form->BB_Query_Form( 'topic', array( 'search' => $q ), array( 'post_status' => 0, 'topic_status' => 0, 'search', 'forum_id', 'tag', 'topic_author', 'post_author', 'count' => 'found_rows' ), 'bb_relevant_search' );
    $relevant = $bb_query_form->results;
    global $relevant_round_rows;
    $relevant_found_rows = $bb_query_form->found_rows;
    $q = $bb_query_form->get( 'search' );
    }

    I added a query parameter 'count'=>'found_rows' to second $bb_query_form for retrieving total post count. And I added global $relevant_found_rows to pass to template search.php (you can use bb_load_template to do same thing).

    Insert the following code just before second <?php endif; ?> from bottom in template search.php

    <div class="nav">
    <?php
    $uri = $_SERVER['REQUEST_URI'];
    if (false !== $pos = strpos($uri, '?')) {
    $uri = substr($uri, 0, $pos) . '?q=' . urlencode($q) . '%_%';

    if (!isset($page))
    $page = 1;

    global $relevant_found_rows;
    echo paginate_links(array('base' => $uri, 'format' => '&page=%#%', 'total'=>ceil($relevant_found_rows/$bb->page_topics), 'current'=>$page));
    }
    ?>
    </div>

    Should look like:

    <?php if ( $relevant ) : ?>
    <h2><?php _e('Relevant posts')?></h2>
    <ol class="results">
    <?php foreach ( $relevant as $bb_post ) : ?>
    <li><h4><a href="<?php post_link(); ?>"><?php topic_title($bb_post->topic_id); ?></a></h4>
    <?php echo bb_show_context($q, $bb_post->post_text); ?>

    <small><?php _e('Posted') ?> <?php bb_post_time( __('F j, Y, h:i A') ); ?></small>

    </li>
    <?php endforeach; ?>
    </ol>
    [insert the code above here]
    <?php endif; ?>

    You can find paginate_links in bb-includes/wp-functions.php.

    #61216
    chrishajer
    Participant

    I was not happy with bbPress search functionality a long time ago, now I just live with it. The results were always weird looking to me.

    Anyway, now I just use Google to search my site if I want to find anything. Something like:

    site:mysite.com term1 term2 at google.com does the trick. Of course, the content needs to be indexed at Google for that to work. An alternative I heard about was Google Custom Search Engine:

    http://www.google.com/coop/cse/

    I have no idea how that works but it’s an option.

    I think doing what you propose with the search results would require a lot of work (having 3 sets of search results complicates it in my mind), but maybe one of the plugin writers will show an easy way to do what you propose. Maybe you could perform all three searches and aggregate the results, then paginate them. That would be easier than breaking them into title matches, recent posts and relevant posts. That begs for having advanced search options anyway. Like, why can’t you search for a user’s name? I thought you used to be able to, but searching my forum now for a known user name doesn’t return anything like “User Name matches”: I thought it used to.

    Looking at how a user profile works is interesting. If you click on a user’s name to get to profile.php?id=the_user_id, you’ll see a paginated list of all posts made by that user ordered by the last time they replied (so, that user’s posts in the order that they made them, most recent first) and a list of threads started, I think. Maybe a plugin could be written to replace the search queries with something like what profile.php does, except instead of selecting all posts and threads for a user (which are returned in $posts and $threads) maybe you could do a similar query with your search term, in all the fields you want to check, then return that? Hmmmm…

    I think search is a weak point for lots of blogging platforms and forum software, and I think getting it right is important, so it’s worth looking into.

    Good luck.

    (sorry: edited version substantially)

    #61203
    simon551
    Member

    not sure if I understand that. I forgot to put the backticks around my links code which I’m sure didn’t help. the code you provided is already contained in the header.php file in templates. The link as is is to mysite/forum

    but I’d like to make one that goes to mysite. Or even better, the end link would be like this:

    <a href="http://mysite/">My Site </a> -- <a href="http://mysite/forum"> Discussion Forum</a>

    #2532
    krussell
    Member

    I’m looking for advice on how to modify the search functionality to paginate the results that are returned; i.e. the default functionality returns N matches in each of the following categories: thread title, recent posts and relevant posts, but I would like to allow a user to scroll through repeated pages of search results.

    I’ve had a look at search.php and this is structured around returning a fixed number of results for each query, which effectively hides anything that doesn’t come up in the first N results of the search. The concept of listing the results of 3 different queries in one results page also seems to be incompatible with providing a pagination mechanism (which list do you paginate?). I feel that the default method of handling search results is a bit limited and confusing for users familiar with a typical Google-style search that returns one simple list in multiple pages.

    I have had a look at the code, but I’m no PHP guru; is there any way of getting the sort of results I would like without fundamentally rewriting the search mechanism?

    p.s. not being overly critical here – I think bbPress is a great piece of work!

    #61202
    Trent Adams
    Member

    It would be easier to do the following if you want to change your title back in config.php and then download your header.php from your template folder and do something like this:

    <h1><a href="<?php bb_option('uri'); ?>"><?php bb_option('name'); ?></a></h1>

    Then save the file and upload to /my-templates/ so if you make a mistake, you can delete it and bbPress will use the original!

    Trent

    #61183
    intellivision
    Participant

    Fixed. It was the path to the .js file that got changed with the template change. Check this in your source code, and if the path isn’t correct the buttons won’t show.

    #61200
    chrishajer
    Participant

    Never mind :)

    #61199
    livibetter
    Member

    I see. Then that would be

    require_once '../wp-blog-header.php';

    #53604
    livibetter
    Member

    Hi,

    Here is a quick php for it(Use this method at your own risk), you need pretty permalink to use it.

    Save the following code in bbPress root folder as page.php

    <?php
    require_once('./bb-load.php');
    if (preg_match('/.*/page/(.*)/', $_SERVER['REQUEST_URI'], $matches)) {
    $file = bb_slug_sanitize($matches[1]) . '.php';
    if (file_exists(bb_get_active_theme_folder() . "/static/$file")) {
    bb_load_template("static/" . $file);
    exit(0);
    }
    }
    wp_redirect(bb_get_option('uri'));
    ?>

    Put your static pages in a new static folder under your template folder, they should looks like

    <?php bb_get_header(); ?>
    The static content here.
    <?php bb_get_footer(); ?>

    Then you can access a static file. For example, access test.php(bb-templates/yourtemplate/static/test.php) at http://yoursite.com/bbpress/page/test

    Remember: Use this method at your own risk

    #61197
    livibetter
    Member

    majea,

    You used require_once in a wrong way. If you installed WordPress in /path/to/wordpress and bbPress in /path/to/bbpress, then you should use

    require_once '../wordpress/wp-blog-header.php'.

    You normally use require/include for local .php.

    PS. I don’t use WordPress and bbPress together.

    #60752
    grosbouff
    Participant

    I thinking to start developping a plugin.

    I’m not a real coder but i’ll try.

    Anyway, I think the problem is that bbpress uses names and not levels (like wordpress) for roles, so it will be hard to do, no ?

    If you have ideas, if you want to help me, please feed this threat !

    #61186

    In reply to: Plugin: Gravatar

    livibetter
    Member

    Aha… I just realized that I didn’t know users can change their registered email. (I use a Key Master to edit normal user’s profile…)

    I should remove this Gravatar Email field to make code simpler and add another field Use Gravatar?. Maybe add some other features as well.

    I am also waiting Gravatar to allow larger avatar. Once it allow, I will put a new version out.

    #58170

    In reply to: bbSync

    vitovarducci
    Member

    Awesome. OK, so I removed the entry from the database and I was able to login like normal.

    Then I went back and created a new post again to test if it would create a new topic in bbpress. No new topic. And it wouldn’t let me login to the backend again.

    So I went back and removed the capabilites entry from the database.

    I can create topics no problem in bbpress. Just doesn’t create new topics when I write posts.

    #58169

    In reply to: bbSync

    fel64
    Member

    Mmmm. Bum.

    Open phpmyadmin, browse wp_usermeta, look for a very recent record for your user_id, where meta_key = capabilities and meta_value looks something like a:1:{s:6:"member";b:1;}. Then delete that and try again.

    #2523

    Topic: Plugin: Gravatar

    in forum Plugins
    livibetter
    Member

    I wrote a simple plugin for Gravatar. I am planning to put files on Extend, but I am still waiting. You can download it from Google Code for now, please visit this plugin’s homepage. You can find a download link and know how to modify your theme in the page.

    It is relatively simple:

    • Gravatar Email field – This plugin doesn’t use user’s registered email.
    • Email Verification – Users need to own the Gravatar Emails which they input.
    • Support Default Image
    • Size customized (1..80px)

    I hope I can hear your thoughts about this plugin.

    #61181

    In reply to: Error while posting

    chrishajer
    Participant

    What version of bbPress are you using and what type of host system is it on? It looks like the single quote in Mail's throwing for a loop, but I haven’t seen that happen in any recent version of bbPress.

Viewing 25 results - 28,851 through 28,875 (of 32,491 total)
Skip to toolbar