Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 14,076 through 14,100 (of 26,891 total)
  • Author
    Search Results
  • #113278
    Dykarna
    Member

    What I can see I have WordPress in form of “3.3.2–sv_SE ” The back-end is in Swedish and as for what I can see the site is in swedish but bbPress is not.

    The language files for WordPress are here:

    /vaxmora.se/wp-content/languages

    For bbPress are here:

    /vaxmora.se/wp-content/languages/bbpress

    I did as said before “do like this and it should work” and right now I don’t know anything… so how should I do? How should it be?

    Please add here how it should be.

    1,

    2,

    and so on…

    Thanks

    #113275

    Do you also have the WordPress translation files where they belong? If WordPress core cannot find its translations, it will revert back to English. If that’s the problem, it’s possible you’ve had bbPress’s in the correct locations already, and WordPress was nooping it.

    #113067

    In reply to: Registering new users

    POS2012
    Participant

    May be you can use this plugin (have not tested it myself):

    https://wordpress.org/extend/plugins/peters-login-redirect/screenshots/

    #113066

    In reply to: Registering new users

    vickistep
    Member

    Hello, I would like to know the same thing. Anyone have an answer? My forum is at http://salt-care.com/dev/forums/.

    It’s a shame that users have to see the WordPress news and such on the generic WordPress dashboard once they create a forum participant account. There must be a plugin for this.

    #112893
    SK
    Participant
    #113330
    POS2012
    Participant

    It is the same as to register in WordPress.

    http://yourdomain.com/wp-login.php?action=register

    When registered in WP they can participate in the forum. At least my test forum works like that. :-)

    #113305

    where is the wp-config.php file located?

    #113329
    spelly1337
    Member

    Thanks for the link!

    Unfortunately it did not help much.

    I installed bbPress directly from the WordPress (as a plugin).

    Does anyone know if it has developed a plugin (the last 11 months) that allows people to register?

    NickMackz
    Participant

    Check your bbpress settings and wordpress media settings and make sure you have them both set to auto-embed videos.

    #113304
    baldg0at
    Participant

    Are you able to view your php error logs? If not, you could add this to your wp-config.php..

    define(‘WP_DEBUG’, true);

    Viewing the errors will give you an idea of where the problem is.

    #44361

    I have installed BBpress on my wordpress site and all of a sudden when i go onto my forums page the categories are not showing its just a white page with template :( i have tried re installing and still no luck

    Please help :)

    #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

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