Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 7,401 through 7,425 (of 32,519 total)
  • Author
    Search Results
  • #168731
    xponera
    Participant

    Hi, this was a good lead. My host had another recepie for .htaccess

    RewriteEngine On
    RewriteCond %{REQUEST_URI} ^/
    RewriteRule .* - [CO=wordpress_test_cookie:WP+Cookie+check:%{HTTP_HOST}:1440:/]

    It worked at once.

    Thx

    #168729
    nickharambee
    Participant

    Hello,

    I have experienced an issue importing posts from a BuddyPress group forum. Originally I lost the link to all topics when I manually deleted some spam users directly in the tables wp_users and wp_bp_groups_members. In the group forum it simply stated “Sorry, there were no forum topics found.” So I thought I would upgrade to bbpress using the instructions here: https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/

    I followed all instructions up to the import process and then the import just got stuck – i.e. nothing was imported.

    Then I noticed no forums are now listed under Forums.

    So I created a new forum, which looks different to the previous forum (presumably because I am now using bbpress and not the old Buddypress group forum – how to tell?). I can link this forum to my one Buddypress group, but now none of the old topics show – they are all still in the WordPress database, but I need to know how to get them into the new forum that I have created, or import them some other way.

    I would be grateful for any advice.

    Thanks,

    Nick

    #168718
    erich199
    Participant

    In loop-fourms.php file add your custom “Add Topic” button:

    <a href="/new-topic/?ForumId=<?php echo bbp_get_forum_id()?>">New Topic</a>

    Add this code to a custom .php file or directly to your theme function.php file:

    //BBpress New Topic Button // 
    add_shortcode('wpmu_bbp_topic', 'wpmu_bbp_create_new_topic', 10);
    function wpmu_bbp_create_new_topic(){
    	
    	if ( isset($_GET['ForumId']) ){
    		
    		return do_shortcode("[bbp-topic-form forum_id=".$_GET['ForumId']."]");
    		
    	}else{
    		
    		return do_shortcode("[bbp-topic-form]");
    		
    	}
    }
    //End BBpress New Topic Button //

    Make sure you’ve created a custom page titled “new topic” with a friendly url of “new-topic”

    Place the new shortcode we registered into this page:

    [wpmu_bbp_topic]

    This will automatically display contact create form of the selected forum if ID exists in the URL otherwise fall back to default shortcode.

    You can see it in action on my site:
    http://artofwargaming.net/forums/

    Hope this helps anyone who was looking to create a “new topic” button.

    I can’t take credit for this, this was all thanks to the help of the guys over at WPMUDEV – Sajid, Anang, and Tyler.

    #168708
    Pascal Casier
    Moderator

    Hi,

    Most probably a security issue or a redirect to your login page that does not work. If you have any security plugins (like Theme my login) or captcha (like in Jetpack), try to deactivate. Somebody found this: https://bbpress.org/forums/topic/users-unable-to-register-and-login/

    Just be careful : Editing .htaccess can block your complete site. Make sure you have a contact point with your provider and you know what you are doing

    Defaults for the .htaccess can be found here: https://codex.wordpress.org/htaccess

    Let me know if it helped,
    Pascal.

    Robkk
    Moderator

    1.

    Instead of using the shortcodes, download this loop-forums.php file and place it in your child theme in a folder called bbpress.

    https://github.com/robkk/bbPress-Hierarchical-Forum-and-Category-Layout

    2.

    I think this would show up if you use the file above. It might not have nice color coordinated categories though.

    3.

    Download this bbpress.php and put it in the root of your theme to have full width forums.

    https://gist.github.com/robkk/f51753f1c7a5641796d8

    zapsplated
    Participant

    Hello. I want to disable the edit profile link on my forum using bbpress, which I have found the following code to add to functions.php. It works, except for next to the username and profile pictures there is a comma, and it looks messy… anyone with php knowledge know why this code is producing a comma next to the username and profile pic?

    Thanks

    <?php
    add_filter( ‘bbp_get_author_link’, ‘remove_author_links’, 10, 2);
    add_filter( ‘bbp_get_reply_author_link’, ‘remove_author_links’, 10, 2);
    add_filter( ‘bbp_get_topic_author_link’, ‘remove_author_links’, 10, 2);
    function remove_author_links($author_link, $args) {
    $author_link = preg_replace(array(‘{<a[^>]*>}’,'{}’), array(“,”), $author_link);
    return $author_link;
    }
    ?>

    #168700
    mvaneijgen
    Participant

    I use the following code on a webshop to display all tags being used on the website in the custom post type product

    <?php
      $terms = get_terms( 'product_tag' );
    
      if ( ! empty( $terms ) && ! is_wp_error( $terms ) ){
        foreach ( $terms as $term ) {
          print '<option data-filter="tag-'.$term->slug.'"value="tag-'.$term->slug.'">'.$term->name.'</option>';
        }
      } ?>

    How do I find the equivalent for bbPress to `product_tag

    #168684
    Robkk
    Moderator

    Link to your site as @casiepa suggested, so we can check on it and make sure.

    You can try some troubleshooting to see if this only occurs in your current theme. You can try the other additional solutions to troubleshoot too.

    Troubleshooting

    #168681
    Robkk
    Moderator

    There is an issue with the .hentry class that bbPress is inheriting for its posts. This is a common theme conflict.

    #bbpress-forums .bbp-body .hentry {
        margin: 0;
    }
    #168677
    Pascal Casier
    Moderator

    Some themes are not handling well the replies. Could you try to add this somewhere as extra css:

    #bbpress-forums .reply {
        font-size: inherit;
        padding: inherit;
        position: relative;
        right: inherit;
        top: inherit;
    }

    Pascal.

    #168667
    Robkk
    Moderator

    It is a common theme issue related to styling wordpress comments.

    Your theme has this CSS to style the wordpress comments. Thing is bbPress has an entire class for each reply which is .reply and it affected any link in a bbPress reply.

    .reply a {
        font-weight: bold;
        float: left;
        padding: 0;
        font-size: 12px;
    }
    #168664
    Robkk
    Moderator

    Add this custom css anywhere you can add custom css like in your child themes style.css stylesheet or in a separate plugin.

    #bbpress-forums .reply a {
        float: none;
    }
    #168661
    Robkk
    Moderator

    I don’t think there is a free version of this plugin.

    There isn’t even a free extension for users to use to make it work with bbPress from what I can see.

    I would like to know how to remove the link to main Forum page that appear in the course unit when I embed the topic ( [bbp-single-forum id=$forum_id]) . for instance, Which file and where is it located, and what I have to change?

    bbPress uses custom post types which are similar to the WordPress posts, it just outputs different templates for the display of the forum posts.

    Deleting these posts, would make the shortcode not owrk.

    What you would need to do is conditionally allow only users of a certain course to be able to see a certain forums or topics from bbPress’s pages not just use a shortcode to place a forum on a course page.

    I have found that some user recommend some additional membership/restrict content plugins to make it work for bbPress forums this way.

    It might be best to contact the wpcourseware plugins support to know what is best to hook up bbPress with that plugin.

    #168659
    Andreas Andersen
    Participant

    But my link is not ending with a “/”. And it is not only when using the shortcode [url] but also when using wordpress toolbar for inserting the link.

    #168658
    Robkk
    Moderator

    @balmfoc48

    As the user above states some hosts have a limit of emails that are able to be sent out.

    Install this plugin to fix possibly part of the issue. The code used in the plugin will probably be used in a future version of bbPress.

    https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/

    You may need to also look into asking your server support to increase the email limit if your emails sent grow significantly or use a service like sendgrid or mandrill.

    #168656
    Robkk
    Moderator

    I forgot about this plugin which will essentially allow certain shortcodes like the caption shortcode.

    Just add caption to the input box for the allowed shortcodes in the plugins settings page.

    https://wordpress.org/support/plugin/bbpress2-shortcode-whitelist

    #168653
    Robkk
    Moderator

    @numan_shaikh

    Place your custom role code in a gist file at gist.github.com and post the link to it here.

    #168651
    Robkk
    Moderator

    @arcillaguzman

    Try some troubleshooting to see if this happens only in a certain theme or if any active plugins are conflicting with bbPress posts.

    Troubleshooting

    #168647
    Robkk
    Moderator

    This might related to the issue in this trac ticket since you said bbcode.

    The plugin author of the plugin you are probably using created the ticket.

    https://bbpress.trac.wordpress.org/ticket/2889

    #168646
    Andreas Andersen
    Participant

    When I insert a link in bbpress it does not show correct on my page. All links will be stacked on the left site of the message. Here is a picture of the HTML code that is generated and how it is showed.

    Link not showing correct

    The problem is only in bbpress, not when inserting links in WordPress in general. It is the same no matter i I insert the link using bbcode or using the WordPress toolbar.

    What can be the problem here? Is there some CSS that controls this in bbpress?

    #168644
    Pascal Casier
    Moderator

    Hi Rhonda,
    Is it a public site ? If so, could you post the link ?
    Did you create a dedicated WordPress page with a [shortcode] or you just want the use the built-in page by adding /forums after your domain ?
    Pascal.

    #168638
    TKServer
    Participant

    I’ve been working for weeks (on my off time) on a threaded view of bbpress posts and replies. Here’s the beta:

    Ute Fan Board

    A different look more similar to an old school list forum style. Lots of work to do but here’s what it does so far:

    1. Different format, more list/threaded. Recent topics show with the topic replies below
    2. Works on a page outside of bbpress, but hooks some bbpress functions.
    3. Posts new messages and replies, with metadata.
    4. Allows user to expand/shrink content area of each post/reply
    5. Posts/replies show as modal popup window instead of at the bottom of the forum.
    6. WordPress visual editor enabled (some bugs)
    7. Pagination

    Current bugs and pending additions:

    • Edit post/reply
    • Posts made from forum-threads do not show up in buddyPress “recent activities”
    • Visual editor add link does not work.
    • Twitter share button not setup yet
    • Facebook share button not setup yet

    It’s pretty hacky and I’m sure the code is not all that great, but it “seems” to work. I’ll be working on my bugs and new features soon.

    fjalom
    Participant

    I want to create a forum in a page where have restricted access (like a course unit from a course which is sold by woocommerce) and I am using bbpress shortcode for embed the forum in that course unit.

    The problem is that when I make it, link to a page where all forum are appears( like http://www.mydomain/forum). How to configure to remove this link for appearing when I use bbpress shortocode for embed forum? In this way avoid other user to know this link and access without pay the course

    thank you all

    #168624
    Robkk
    Moderator

    Participants cannot use shortcodes by default in bbPress.

    You will have to use a filter to allow the shortcodes.

    I will post a code snippet and possibly link to a guide when I am off mobile.

    Also weird picture to use for your second example haha

    #168622
    o.m.j
    Participant

    I found this filter somewhere in the forums, but it still leaves the yellow box…just removes the text…

    function change_translate_text( $translated_text ) {
    	if ( $translated_text == 'Your account has the ability to post unrestricted HTML content.' ) {
    	$translated_text = '';
    	}
    	if ( $translated_text == 'Oh bother! No topics were found here!' ) {
    	$translated_text = '';
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'change_translate_text', 20 );

    using firebug, I found the code for the yellow box, then I added this code to my CSS, but will it cause other issues?

    thx

    .bbp-template-notice {
    	display: none;
    }
Viewing 25 results - 7,401 through 7,425 (of 32,519 total)
Skip to toolbar