Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 14,076 through 14,100 (of 26,880 total)
  • Author
    Search Results
  • #112892
    Dykarna
    Member
    #112684
    Garth Koyle
    Member

    We also found that the Custom Post Types Order plugin was causing problems.

    https://wordpress.org/support/topic/post-types-order-reversing-order-of-bbpress-posts

    #113271
    SK
    Participant

    Another thing…I looked at the code https://bbpress.svn.wordpress.org/branches/plugin/bbpress.php and it seems to seek bbpress-sv.mo not bbpress-plugin-sv.mo so you might try renaming the file again (sorry!)

    #44327

    I would like to change things like size and color for my forum titles, but I just cannot seem to figure out where in the CSS to change this. I have been looking in my WordPress style.css and in bbpress.css, but I cannot find it. I tried to add h1.entry-title { color: #900 } to bbpress.css, but nothing happened. I have found how to control this at the rest of the homepage, but not for the forum part…

    Here is the site: http://rodrigo-matos.com

    Could somebody please help me with this? I’m going crazy!

    #113266
    SK
    Participant

    Hmm..weird.

    Let’s try again from the top.

    Download the .mo file from https://translate.wordpress.org/projects/bbpress/plugin/sv/default and without making any changes, place it in http://vaxmora.se/wp-content/languages/bbpress/

    I know you have done it before, but have a go again and see if it makes any difference.

    #111691
    SK
    Participant

    Also, the name of your file should be of the format bbpress-de_DE.mo not simply de_DE.mo

    Actually that has changed now. If you download the file from https://translate.wordpress.org/projects/bbpress/plugin/ then it will have the correct name already, which would be in the format bbpress-plugin-de.mo

    #113234
    Torsten Landsiedel
    Participant
    SK
    Participant

    Could WP Super Cache tags do the job?

    https://wordpress.org/extend/plugins/wp-super-cache/faq/

    How do I make certain parts of the page stay dynamic?

    There are 2 ways of doing this. You can use Javascript to draw the part of the page you want to keep dynamic. That’s what Google Adsense and many widgets from external sites do. Or you can use a WP Super Cache tag to do the job but you can’t use mod_rewrite mode caching. You have to switch to PHP or legacy caching.

    There are a few ways to do this, you can have functions that stay dynamic or you can include other files on every page load. To execute PHP code on every page load you can use either the “dynamic-cached-content”, “mfunc”, or “mclude” tags. The “dynamic-cached-content” tag is easier to use but the other tags can still be used. Make sure you duplicate the PHP code when using these tags. The first code is executed when the page is cached, while the second chunk of code is executed when the cached page is served to the next visitor. To execute WordPress functions you must define $wp_super_cache_late_init in your config file.

    dynamic-cached-content example

    This code will include the file adverts.php and will execute the functions “print_sidebar_ad()” and “do_more_stuff()”. Make sure there’s no space before or after the PHP tags.

    <!--dynamic-cached-content--><?php
    include_once( ABSPATH . '/scripts/adverts.php' );
    print_sidebar_ad();
    do_more_stuff();
    ?><!--
    include_once( ABSPATH . '/scripts/adverts.php' );
    print_sidebar_ad();
    do_more_stuff();
    --><!--/dynamic-cached-content-->

    mfunc example

    To execute the function “function_name()”:

    <!--mfunc function_name( 'parameter', 'another_parameter' ) -->
    <?php function_name( 'parameter', 'another_parameter' ) ?>
    <!--/mfunc-->

    mclude example

    To include another file:

    <!--mclude file.php-->
    <?php include_once( ABSPATH . 'file.php' ); ?>
    <!--/mclude-->

    That will include file.php under the ABSPATH directory, which is the same as where your wp-config.php file is located.

    Example:

    <!--mfunc date( 'Y-m-d H:i:s' ) -->
    <?php date( 'Y-m-d H:i:s' ) ?>
    <!--/mfunc-->

    #113259
    SK
    Participant

    Yup. WPLANG parameter in your WordPress’s wp-config file, if you haven’t already set your WordPress to your target language

    #113233
    Torsten Landsiedel
    Participant

    Yes, I know. I wrote this is in my first post:

    I see this on http://de.forums.wordpress.com and I know this is not the latest version running there.

    Thank you for hoping with me … ;-)

    #113232
    POS2012
    Participant

    No problem :-)

    But again, YOUR question was regarding the http://de.forums.wordpress.com

    I am a fresh user of bbPress, but as far as I can see that forum us the “old” stand alone version of the bbPress. At least the code says so in the RSS generator:

    <!-- generator="bbPress/1.1-alpha-2539" -->`

    In that case I am not the one that can help. I don’t even know who is leading the bbPress project :-)

    Hope you get the help you need from others here!

    #44312
    bjj_pl
    Participant

    How to replace one string of text with another one?

    Example, change ” :heart: => spade ” in each and every topic and reply.

    Jennifer M. Dodd
    Moderator

    Those two themes are presented as examples of what can be done, comment-style and bbPress-style. You can copy the template files in /templates to your child WP theme and modify them there if you want to override them.

    You can use filters in your theme’s functions.php or a separate plugin with add_filter.

    The filters that are available to date are:

    $file = apply_filters( 'ucc_btr_template_redirect', $file );

    Used in template_redirect to figure out which template file to use; checks child theme, parent theme, and then defaults to plugin template files. Override if you want to specify single-topic.php or twentyeleven.php.

    $expires = apply_filters( 'ucc_btr_expires', 3600 );

    Sets the cache expires.

    return apply_filters( 'ucc_btr_reply_class', $classes, $class, $reply->ID, $topic->ID );

    Add classes to the reply container.

    return apply_filters( 'ucc_btr_in_reply_to_link', $before . $link . $after, $args, $reply, $topic );

    Creates the “Reply to this” link.

    return apply_filters( 'ucc_btr_cancel_in_reply_to_link', '<a rel="nofollow" id="cancel-in-reply-to-link" href="' . $link . '"' . $style . '>' . $text . '', $link, $text );

    Creates the “Click here to cancel reply” link.

    $include = apply_filters( 'ucc_btr_replies_template', STYLESHEETPATH . $file );

    Override the template to use for comment-styled replies (replies.php).

    #44271
    crankeith
    Member

    Greetings,

    I was wondering if there is a plugin or setting that allows you to convert RSS feed posts into Topics. I have another plugin that is a modal window that collects feedback and I would like each feedback post to be placed in a Forum as a topic. This is for the bbPress plugin for wordpress, not the standalone.

    Thanks,

    Andrew

    #113237

    In reply to: "Waiting" translations

    SK
    Participant
    #113117
    jmessick
    Participant

    I was experiencing a similar problem. Sometimes I couldn’t get the page to load at all. Other times the main page would load but other pages would not. I contacted tech support for my host (gator) and asked about increasing PHP memory. They actually came back with the answer that I was not using a theme which was 100% compatible with bbpress. Switching to “bbPress (Twenty Ten) 1.2 by WordPress and bbPress teams” seems to have taken care of the problem.

    I would suggest that if you are getting white screens on some or all of your webgsite after activating the bbpress plugin that the first think to do wo uld be to make sure you are using a bbpress compatible theme.

    #112724
    pagal
    Participant

    @Bluealek PM solution is already exist for bbPress plugin. Ben L. has converted bbPM standalone version to bbPress plugin’s version.

    Hope, that what you’re looking for!

    #44290
    tekky1234
    Member

    Hi,

    I have recently setup a bbpress on my wordpress website, and everything seems fine, but the Tags are somehow not working. The problem is when I create a Tag from the front of the website (while creating a new thread) I then cannot see it in the panel administrator. Also, when I create the tag in the panel administrator I then cannot see the tag in the widget in the front end of the website. Do you have any idea what could be causing the problem?

    Thanks for any advice!

    #44289
    bjj_pl
    Participant

    Hi,

    I’ve got some difficulties with shorcodes in my bbpress installation for wordpress. I have to use special shortcodes for card symbols (spade, diamond, etc.). Example, I use special format for posts, that changes :spade: into <img src=”dsewfwe” />. It works for posts and comments, but it doesn’t work for topics and replies :(

    Any advice how to automatically replace a string with a different one?

    http://forumpokerowe.com/temat/emotikony-2/

    Please help

    #44288
    nosdk
    Member

    I’ve just upgraded to wordpress 3.3.2.

    And after this upgrade my bbpress forum dosen’t work(?) – or dosen’t show.

    http://www.neworleanssaints.dk/Forums/debat/saints/ – is the correct parth… but it sends me to: http://www.neworleanssaints.dk/2011/08/19/saints/ …don’t know why.

    I’ve checked the menu and forum (bbpress) and its all set up correct. But still i doesn’t se my forum. Any ideas?

    RideCBR.com
    Member

    I’m running WordPress, buddypress, and the bbpress forum plugin here: http://www.ridecbr.com

    How can I add breadcrumbs (links showing where you are, and how to get back to the previous page, or the main forums) as well as a title for each forum topic.

    When you click into a topic, shouldn’t it show you a breadcrumb list, as well as the topic title?

    Please help!! I’ve posted 2-3 times with no responses in the past.

    Thanks for your help in advance.

    #109351
    Jaja..
    Member

    Yeah you can do a lot.

    Use the WP Template Name function.

    https://codex.wordpress.org/Pages#Page_Templates

    Create your own template files and build your own (bbPres) code inside them or leave them very default and use the Short Tags you’re using with ID’s right now.

    If you can select the bbPress templates when adding a new page you can also make your own page templates.

    Just select new page and pick a template from the right-side (template)

    #44278
    SK
    Participant

    At http://translate.wordpress.org/projects/bbpress/plugin there are plenty of items listed as “Waiting”

    e.g. Polish, Romanian, French and Czech have 0% translation completed, but almost 100% strings in “waiting”.

    So how do we move strings from “waiting” to “translated”?

    #44272
    Torsten Landsiedel
    Participant

    The topic title in bbpress rss feeds is “(author) on (title)” which is really bad, because I can’t sort on title anymore. This is sort by author, because the author is the first string in the title.

    And it is redundant, because there is a author field which I can see in my feed reader.

    Maybe you can change this to “(title) – (author)” (or similar) …

    I see this on http://de.forums.wordpress.com and I know this is not the latest version running there. So if this is changed in the latest version, just tell me!

    Thanks in Advance!

    Kind regards

    Torsten / zodiac1978

    (Moderator German support forums WP.com)

    #113186

    In reply to: How to step up BBpress

    Jaja..
    Member

    @Jaredatch,

    What’s the best and worst difference between the two, Vanilla VS bbPress.

    I have been testing and building bbPress a few times locally but it has never gave me that final push to go live with it, I just don’t trust it..

    Every website i make i pick WP as my default CMS because i truly 300% believe in the product it has made my life so much easier. While 3 maybe 4 years ago i was always scared of the word CMS i loved Static content and doing lots of work.

    bbPress never gave me that final push of confidence that it could be the Tool you need.

    Example, i help solving a lot of questions on the Dutch WordPress forums and all new users i can tell what the power of WP is and all it’s Easy to Use features like the Menu system (my fav.) but when somebody asks me if i know a good forums software i always end up saying bbPress BUT i don’t know if it’s for everybody.

    There is still that level of difference. While a user don’t understand why. a plugin = a plugin they can activate and it should work.

Viewing 25 results - 14,076 through 14,100 (of 26,880 total)
Skip to toolbar