Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 16,376 through 16,400 (of 32,519 total)
  • Author
    Search Results
  • #112991

    Do you have a URL or example?

    Most people won’t know what you mean otherwise :)

    #113016

    In reply to: trunk

    Yeah, any new themes or plugins, definitely share with the bbPress community :)

    #113018

    In reply to: bodycolor Tinymce

    Do you have a screenshot? I just want to double check and see if we are on the same page :)

    #113024

    As OC2PS mentioned, that’s where you need to go to set up your avatar.

    It’s free and is used by MANY other websites across the internet – so no only are you setting up you avatar her, but potentially a lot of other websites :)

    #113025

    In reply to: Cool 2.1 features

    I’d say the whole new theming system (ability to register new themes via plugins etc), the new visual editor, and the new hooks available.

    It’s hard because there were a lot of great bug fixes in the new release :)

    #113031

    If it is strictly a BuddyPress install you should first try to ask on the BP forums as OC2PS said.

    If you are dealing with bbPress, just give us some more details and we will see what we can do :)

    #112896

    First, you need to reset your permalinks. To do this, just go to Setting->Permalinks. you dont need to do anything on the page – simply going to this page will do the job.

    Secondly, after you do this, go to YourDomain.com/forums and see if they appear.

    Hopefully step 3 is profit :)

    #112990

    It depends on what theme you are using.

    Theme’s typically call and register sidebar’s differently, which is why it is easier to fix this on a theme level and not a plugin.

    Find out how your theme is handling sidebars, write mini plugin or block in your functions.php that addresses the issue.

    We’ve been down this road already :P

    #113007

    No problem! That’s what we’re here for :P

    #112951

    I understand for simplicity’s same you want to keep forum users on the front end, but there is no reason from a technical aspect why they can’t access the backed to edit their user profiles.

    OC2PS – when are we going to start seeing some of these plugins you keep suggesting? :)

    #112998

    In reply to: Remove toast/notice

    SK
    Participant

    Jared, Thanks! I will check this solution out.

    Regarding configurations: I don’t know if 347374 is an actual number or if you use it just to make a point, which I do get. If bbPress included everything in configurations, then there will be way too many configurations, and would delay next releases a lot. That’s fair enough.

    But let’s look at it from the perspective of added value and break from forum convention.

    bbPress is billed as a lightweight forum. Hence, when it breaks from forum convention to make it lighter (have fewer functions), that is at least understandable. e.g.

    – No signatures in core (plugin exists)

    – No icons (e.g. http://www.phpbb.com/community/styles/prosilver/imageset/forum_read_subforum.gif ) by forums and posts showing useful information (ripe for plugin)

    – No emoticons in posts (ripe for plugin)

    – No attachments in posts (ripe for plugin)

    – No “topic started” date in list of topics (e.g. on forums page or topics archive page)

    – No “read count” for topics (ripe for plugin)

    – No forum specific search (plugin exists)

    – No post count for posters

    etc

    However, when bbPress breaks with forum convention to add something without evident added value, that is a bummer. e.g.

    – Freshness instead of Last post in list of topics (e.g. on forums page or topics archive page). I don’t understand the reasoning behind this. bbPress is making an additional calculation, bending over backwards, just to calculate how many seconds, minutes or days have passed since last post. Why? Why not simply display the date-time of last post like most major forum software do? I don’t see the reason and I don’t like it this way, but if it is like this then I assume that there are other bbPress users who do. Hence I say…perhaps this should be configurable.

    – The notification This forum contains 5 topics and 7 replies, and was last updated by some-author 5 days ago. Why? What is the thinking behind this? What purpose does this serve? I mean, on the same page, topics are listed, there is pagination (and total number of topics) above and below the list of topics, the user can see which post is on top and who last updated it, so why is this notification important to have? I don’t get it. But since it’s there, I assume somebody does, and hence I request that it be a configuration.

    – Similarly, I wonder if a lot is achieved performance-wise by not showing the name of OP in lists of topics, considering that date-time of original post is being retrieved anyway.

    – Formatting/styling of original post and replies is different by default on the topic page. From a user perspective, I don’t see why. You don’t have different styling for original post and replies on bbpress.org or wordpress.org What makes you think that everyone else would want it? Perhaps there is not much additional work is being put into it because replies have to be assigned a formatting anyway, and this way bbPress users know that this is possible. But if so, then even if styling of replies has to be defined separately, it should be same as that of original posts by default, and users should be able to see in documentation that it is possible for them to have different styling. If, on the other hand, you have discovered that a large number of bbPress users want to have different styling for original posts and replies, then I say make it configurable.

    – In freshness, the number of days/hours/minutes is linked. How does that make sense? (yes it takes to the last post, but linking hours is odd…phpBB’s approach where they have a tiny icon next to the date-time is better) If it does to a lot of bbPress users, I say make it configurable.

    (Through all this, remember: There aren’t that many bbPress-supporting themes, and most of bbPress users will end up using bbPress with their generic WordPress themes)

    Lots of people use WordPress despite the performance hit (as opposed to say, Drupal) because it is so easy to use and customize without having to do (or even know) any coding. All bbPress users are WordPress users and so there is a similar expectation from bbPress.

    I know it’s not fair to compare bbPress to WordPress, which has so many more developers and contributors, not to mention forum moderators.

    On the other hand, it is a fair expectation, for bbPress is billed as a forum software from the makers of WordPress. If Matt wants this to take on phpBB, vBulletin and SMF, he needs to put some resources behind it, instead of making JJJ toil alone.

    #112989
    SK
    Participant

    Thanks guys!

    @martin_style: Not quite sure what you mean by “once time load slow, but not loading multiple times”

    @jaredatch: How do I nuke the sidebar?

    I lied. I am not using

    .bbp-forum #primary {
    display: none;
    }

    I am using a plugin that replaces primary sidebar with a bbpress specific sidebar.

    But I have 2 sidebars, and I am hiding the 2nd sidebar with CSS

    .bbp-forum #secondary {
    display: none;
    }

    So this is the one that I need to remove.

    I am guessing that instead of fiddling with the Theme, it might be easier to patch the plugin. Here’s what it does at the moment:

    function vp_sidebars_widgets($data)
    {
    // if bbpress enabled and main sidebar requested
    if ($this->is_bbp && $this->is_main_sidebar)
    {
    // switch sidebar if bbrepss sidebar has some widgets in it
    if (!empty($data[$this->sidebar_id]))
    {
    if (isset($data['sidebar-1']))
    {
    // uses sidebar-1 as main sidebar in most themes
    // set forum sidebar as main sidebar
    $main_sidebar_key = 'sidebar-1';
    }
    else
    {
    // get first sidebar which should be main in most themes
    foreach ($data as $k => $v)
    {
    if (strpos($k,'inactive')===false)
    {
    $main_sidebar_key = $k;
    break;
    }
    }
    }

    // replace main sidebar with bbpress sidebar
    if (isset($main_sidebar_key))
    {
    $data[$main_sidebar_key] = $data[$this->sidebar_id];
    }
    }

    // reset main sidebar request
    $this->is_main_sidebar = false;
    }

    // return modified widgets array
    return $data;
    }

    #113014

    In reply to: trunk

    I don’t see the issue. The CSS is there.

    ul.bbp-has-subforums ul.bbp-forums-list

    You’re not going to be able to do what is on the ubi form without a custom theme, because of how it’s setup.

    #113005

    Install bbPress 2.0.2 (the plugin) – it will do all of this out of the box :)

    #112997

    In reply to: Remove toast/notice

    If you are using bbPress 2.1 by chance, you can drop this into your theme’s functions.php and it should do what you want.

    add_filter( 'bbp_get_single_forum_description', 'ja_return_blank' );
    add_filter( 'bbp_get_single_topic_description', 'ja_return_blank' );
    function ja_return_blank() {
    return '';
    }

    If we provided a configuration for every request received we would have 347374 configurations and be years from a future release.

    Instead bbPress is built extremely flexible so *you* can do these things as you see fit.

    #43977

    Topic: Modifying colors

    in forum Themes
    mizu no oto
    Member

    Greetings from Vancouver, B.C.

    I’ve installed the BBPress plugin and want to modify the ‘light blue’ and ‘yellow’ text block colors on the following page.

    http://participatorydemocracy.ca/forums/forum/test-forum

    I followed plugin >> bb press >> bbp-twentyten >> css >> bbpress-rtl and bbpress.css

    Using Firebug I located in the css where (I thought) I would modify the colors but when I looked in both bbpress-rtl and bbpress.css there was no matching code, at least that I could find.

    Same for . . .

    http://participatorydemocracy.ca/forums

    which I want to modify the header to match the rest of the website.

    Any suggestions would be grateful . . .

    #108247
    jmatthewgore
    Participant

    Ohhhhh… lol. I see what you mean :) Perhaps I’m not quite as awake this morning as I thought. Thanks again! I’ll check.

    – Matt

    #108246

    I just tell you to look at that menu on Notepad++. you should choose Unix format, then save the file and upload it again on the server. this should fix your problem in my opinion

    EOL is end of line. Different OS uses different codes for EOL, we have Windows format, Mac format and Unix format. often is possible that is you save the text file with windows format it will look nice under windows os but may appear as a single long line for linux.

    notepad++ can help with that and correct your problem. you introduced the problem as soon as you edited the file and saved it with windows EOL

    #108245
    jmatthewgore
    Participant

    Thanks again, rvencu :)

    I do have a Linux host… a CentOS based VPS (managed). Beyond that, I’m afraid that your suggestion is Greek to me. I don’t really know anything about editing the EOL Conversion (or what it is).

    However, I can safely say that I’ve experienced my fair share of php errors on this server, and previous ones have not been listed as “line 1”. Also, aside from this comment form showing up, my whole install of wordpress and buddypress/bbPress works just fine, so I’m not sure I understand why changing this line would be a particular problem anyway… maybe it’s just a syntax error?

    But are you saying that you don’t see any obvious problem with the code I pasted above?

    Many Thanks,

    Matthew

    #108242
    jmatthewgore
    Participant

    Just so we’re clear, this is what I’m doing in the page.php code. I change this:

    <?php

    suffusion_before_end_post();

    comments_template();

    ?>

    to this:

    <?php

    suffusion_before_end_post();

    if (!stristr($_SERVER,’/lm-forums/’)) { comments_template(); }

    ?>

    #108241

    actually you need to replace exactly the whole string (including semicolon) with the second one (no semicolon at the end)

    also make sure that you do not mix ” with ‘ anywhere

    it is not that complicated to fix it. if you can’t just paste the code here including the surrounding lines so I can see it.

    #43976
    SK
    Participant

    I find the bbp-template-notice

    This forum contains 5 topics and 7 replies, and was last updated by author 5 days ago.

    quite annoying.

    How do I remove such notices?

    #112959
    SK
    Participant

    #1 Would love to see that as well.

    #2 Loved these little things in phpBB and missing in bbpress

    #3 have you tried:

    https://wordpress.org/extend/plugins/bbp-signature/

    https://wordpress.org/extend/plugins/bbpress-bbcode/

    bbPress.org plugin repo is useless for bbPress plugin, but you could check out https://wordpress.org/extend/plugins/tags/bbpress

    These plugins are WP plugins for bbPress, and you can install from WP Admin just like normal WP plugins

    #43972
    SK
    Participant

    I’m technically illiterate so need some help understanding this.

    On the bbPress pages, I am using CSS to hide sidebar…something like

    .bbp-forum #primary {
    display: none;
    }

    My question is: Is the sidebar is still loaded (on server, in browser) and just not displayed, or do I by simply styling it out of view also save some time on page loading?

    #112968

    Thanks! Just what I was looking for :)

Viewing 25 results - 16,376 through 16,400 (of 32,519 total)
Skip to toolbar