Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress"'

Viewing 25 results - 7,601 through 7,625 (of 26,895 total)
  • Author
    Search Results
  • #161187
    zazgo
    Participant

    Hi Robkk,

    Thanks you for your response. I tried what you instructed me but that didn’t worked out because I am using a framework, Genesis framework.

    I resolved the issues by just installing this plugin https://wordpress.org/plugins/bbpress-genesis-extend/ and it worked like a charm! 🙂

    #161185
    Robkk
    Moderator

    @sina_mech

    if your looking for something custom post a job and maybe a developer would create this functionality for you.

    http://jobs.wordpress.net/

    #161181
    Robkk
    Moderator

    you can do new page.

    just create a new page in wordpress called new-topic or something.

    put the shortcode [bbp-topic-form] in it.

    then change my function to this instead.

    function rk_new_topic_button() {
    	echo '<a href="/new-topic/" class="bbp-new-topic-button button btn input[type="button"]" >New Topic</a>';
    }
    
    add_action('bbp_template_before_topics_loop','rk_new_topic_button');
    #161179
    Robin W
    Moderator

    if your client is really keen, suggest

    http://jobs.wordpress.net/

    #161150
    krishnaTORQUE
    Participant

    I want to use post tag in topic tag. I do not want to create all tag again
    how to do that?

    wordpress v4.1.1
    bbpress v2.5.6

    Robin W
    Moderator

    bbpress uses custom post types in wordpress.

    Every wordpress post gets a unique number, as do edits and other stuff.

    so if you posted a forum topic it might get say id #1000, then a wordpress blog would get the next number #1001, the say a reply to a different forum topic orum topic #1002, then if you create a new page that would get #1003, then the first response the actual forum topic would get #1004

    You’d need to write a whole new numbering system to make your request work !

    #161146

    @Robkk

    thank you for your answer.

    I already installed bbpress v2 wordpress plugin on my wordpress blog, I only need to find out how to keep the same url for my forum when I import it.

    my blog:
    http://www.site.ext/blog/

    my forum:
    http://www.site.ext/forum/

    How do I instruct wordpress, when I use the import tool, to keep the old url for the forum (www.site.ext/forum/ instead of http://www.site.ext/blog/forum/)?

    Thank you.

    POI

    #161143
    wenlujon
    Participant

    I changed the permalinks in wordpress->dashboard->settting->permalinks to:
    /%year%/%monthnum%/%day%/%post_id%.html

    however, it doesn’t impact the forum at all! the link of topics in the forum are still shown as the title of the topic (I’m setting up a Chinese forum, the title of the topics would become some escaped characters).

    #161140
    Robkk
    Moderator

    @mattconway

    – I’m not too keen on the narrow width of the forums, Could anyone recommend some themes that work well with bbpress on different platforms to maximise available width of display?

    i have a 2014 child theme i created that doesnt have the narrow width, might upload to github then later wordpress theme repository late for download or something.

    #161130
    Robkk
    Moderator

    @process_of_illumination

    if you are really using bbpress v1 then it wouldnt work.

    i think that shortcode is only for the newer bbpress v2 wordpress plugin

    #161128
    Robkk
    Moderator
    #161125
    Robkk
    Moderator

    @dmclean

    well its tough on my side too since you have a paid theme (the free version doesnt have the show excerpt option) , so i cant just tell you step by step because i have to look at the code of your current theme.

    you can create me an admin account ( i need to go to the backend and see your theme files in the wordpress theme editor ) , then send me the login details through my email so i can get this done for you.

    Contact

    #161122
    Robkk
    Moderator

    @sina_mech

    why did you put a functions.php file in your bbpress folder it wouldnt work that way.

    just place it in your themes functions.php or use a plugin like this

    https://wordpress.org/plugins/functionality/

    #161117
    Robin W
    Moderator

    PS, i don’t have any knowledge with programming. i hope you can help me as much as you can.

    ok, without programming, the best I can offer is the latest activity widget in

    https://wordpress.org/plugins/bbp-style-pack/

    #161107
    Robin W
    Moderator

    1.
    The following if added to your functions file will add fields, you can alter the coding as needed

    //add code for adding first and last name to registration
    
    //1. Add a new form element...
        add_action('register_form','myplugin_register_form');
        function myplugin_register_form (){
            $first_name = ( isset( $_POST['first_name'] ) ) ? $_POST['first_name']: '';
    		$last_name = ( isset( $_POST['last_name'] ) ) ? $_POST['last_name']: '';
            ?>
    		<p>
    		<label for="first_name"><?php _e('First Name  as people call you eg Dave','mydomain') ?><br />
                    <input type="text" name="first_name" id="first_name" class="input" value="<?php echo esc_attr(stripslashes($first_name)); ?>" size="25" /></label>
            </p>
    		<p>
                <label for="last_name"><?php _e('Last Name','mydomain') ?><br />
                    <input type="text" name="last_name" id="last_name" class="input" value="<?php echo esc_attr(stripslashes($last_name)); ?>" size="25" /></label>
            </p>
            <?php
        }
    
        //2. Add validation. In this case, we make sure first_name is required.
        add_filter('registration_errors', 'myplugin_registration_errors', 10, 3);
        function myplugin_registration_errors ($errors, $sanitized_user_login, $user_email) {
    
            if ( empty( $_POST['first_name'] ) )
                $errors->add( 'first_name_error', __('<strong>ERROR</strong>: You must include a first name.','mydomain') );
    		if ( empty( $_POST['last_name'] ) )
                $errors->add( 'last_name_error', __('<strong>ERROR</strong>: You must include a last name.','mydomain') );
    			
    
            return $errors;
        }
    
        //3. Finally, save our extra registration user meta.
        add_action('user_register', 'myplugin_user_register');
        function myplugin_user_register ($user_id) {
            if ( isset( $_POST['first_name'] ) )
                update_user_meta($user_id, 'first_name', $_POST['first_name']);
    		if ( isset( $_POST['last_name'] ) )
                update_user_meta($user_id, 'last_name', $_POST['last_name']);
        }
    

    Plenty of captcha plugins – just google ‘wordpress plugin captcha’

    If you’d like to specify your req’s further, I’ll try to help.

    2. no need to change theme, just add the following to your css file

    .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content {
      max-width: 100% !important;
    }

    Functions files and child themes – explained !

    #161095
    OliverEggertsen
    Participant

    I can’t seem to get my translation to work since updating to 2.5.6.

    Wordpress version: 4.1.1
    Site language: da_DK

    The forum changed to english after updating BBpress. Before that, it worked fine in Danish language.

    I’ve tried uploaded bbpress-da_DK.po and bbpress-da_DK.mo til both /wp-content/languages/bbpress and /wp-content/plugins/bbpress/bbp-languages but it still doesn’t work on frontend and backend.

    My wp-config.php is set to da_DK.

    I’ve also tried to deactivate some of the latest plugins i’ve installed but it doesn’t do it.

    Hope someone can help me solve this.

    #161082
    thierryyyyyyy
    Participant

    I wanted to upgrade my bbPress 1.2 to the actual one. (I have last WordPress 4.1.1 with new bbPress plugin)

    I tried on a WAMP (localhost) installation, and I never got more than 1500 topics imported.
    The classic case just hang on “Converting topics (900 – 999)”

    And when I look into the apache_error.log, I see that apache crashes and restart alone.
    And I tried with apache 2.4.2 and 2.4.9

    I tried to click “stop” and again “start” as I read on this forum. But I get hung with “Starting Conversion” and apache restarts also. I just can see that the import process did a small step more by typing the sql query :”select count(*) from wp_bbp_converter_translator”

    in this topic, “e-motion” succeeded. He just clean install wordpress, and import…
    https://bbpress.org/forums/topic/upgrade-bbpress-1-0-2-to-2-1-2/page/3/#post-140785
    Am I missing something ?

    williamavon
    Participant

    Hi – I installed bbpress, thinking about adding forum. Changed mind. Deleted plug in, but now I can’t access wordpress admin. Error message upon log in attempts reads “you do not have sufficient permissions…”. If I reinstall/activate bbpress, I can log into my site as normal. Please help, I need the plug in removed. Have a great day and thank you in advance.

    thesocialrefugee
    Participant

    WordPress version: 4.1.1
    bbPress version: 2.5.4

    Sample Image

    Looking to have the forum profile displayed within the “Forum Account” tab.

    Additionally will like to modify the link of when a user clicks his own name/avatar to view his profile to lead it to this page.

    Thank you.

    #161059

    In reply to: Users' avatar

    Robkk
    Moderator

    @martinrice

    sorry for the late reply

    to disable avatars site-wide

    go to the WordPress back-end and then go to settings > discussion

    then toward the bottom in the Avatars section uncheck “Show Avatars”

    #161057
    casnbug
    Participant

    @Robkk
    Sorry, but I disagree. It may be that the theme is not hiding the warning like the default wordpress theme, but the error is definitely coming from the bbpress plugin.

    #161023
    Robkk
    Moderator

    The error message does go away when switching to the twenty fourteen wordpress theme.

    so the issue is definitely in your theme then.

    ill try to search your theme and see if i can find anything.

    other than that since i said it looked fine on my end when i tested your theme, maybe you should try uninstalling your theme then re-installing it to see if it fixes the issue.

    #161022

    In reply to: Users' avatar

    Robkk
    Moderator

    @davidnsfw

    Ok, but users have to login into my site. But I ask if there is any plugin which do not require logging into the site, I do not want to give an access to my dashboard.

    you can disable access to your wp-admin section if you want to registered users

    you can use this plugin to do that.

    https://wordpress.org/plugins/wp-admin-no-show/

    Is there a plugin which allows users to upload an avatar just on the forum (for example, before posting)?

    No

    maybe enforce a user to upload avatar on registration, but thats it.

    or if you really want an anonymous forum, you can just hide all the avatars so they wont have to upload anything and you can just not worry about it.

    #161019

    In reply to: Users' avatar

    Robkk
    Moderator

    for gravatar they would sign up and just add an avatar .

    if the email they signed up with on gravatar is the same as their email they used to sign up on your site then their gravatar will show up on your site.

    There is also this plugin to allow people to upload avatars to your site.

    https://wordpress.org/plugins/basic-user-avatars/

    #161014
    casnbug
    Participant

    @Robkk I’ve followed the basic troubleshooting for general issues. Below are the results.

    “I have deactivated all plugins, but I still see the warning. The error message does go away when switching to the twenty fourteen wordpress theme. I am using a free theme called evolve. I have reached out to the theme developers weeks ago, but I haven’t received a response.”

Viewing 25 results - 7,601 through 7,625 (of 26,895 total)
Skip to toolbar