Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 8,051 through 8,075 (of 26,887 total)
  • Author
    Search Results
  • vikingpoker
    Participant

    Using bbpress 2.5.4, wordpress 4.1, buddypress 2.2 http://www.new.stonemagegames.com

    I just started learning all of this so please be patient with me. How come when I make a new forum and it brings up the new page where I can place an image, the image does not appear on the forum page when I click on the forum? I do not understand why this is so complicated. All I want is a banner on the top of the forum page. That’s it. Nothing more… nothing less… I haven’t found any way to do this or make it work. I dont know the proper terminology to use when searching for answers so I am completely lost. I have watched youtube videos and read many posts. My head is about to explode!!!

    I made a page and threw it up in the top menu that says forums. It has a picture on it. My forums are on the side bar and they work fine. Why would they even bother giving me a page to upload media when I create a new forum if it wont even display it? It doesn’t make sense.

    So then I tried using widgetlogic. I have entered every code I can find and nothing makes it display on the page that I put the banner on. All that happens is that my forum list disappears from the sidebar.

    Please tell me that i’m just an idiot and I am overlooking something stupid and simple. Please tell me that it is not this complicated just to have a banner on the top of my forum pages. Please HELP!!!

    #158183
    Robin W
    Moderator

    yes that’s to do with how wordpress stores stuff.

    the code you need to use is in the post above, don’t use the email one !

    Try again and come back !

    #158178
    format19
    Participant

    Hi Robin,

    I do understand I too have had other things to do.

    I dont know what you mean by “the standard wordpress registration” do you mean the standard bbpress registration ?

    I installed WordPress, I installed bbpress, I installed Buddy Press
    The default registration page is now NOT the default wordpress it is the bbpress registration?
    And by default the bbpress plugin ads “Profile Fields” of which there is a default set of “NAME” which you cant delete and IS required. I believe it is this field that is transferring to the “Nickname” field and causing the problem.

    https://www.dropbox.com/s/3mzrx6ry5stb7mh/deault%20Profle%20Field.jpg?dl=0

    See the pic above

    I have just run a test, i registered
    Username : testing2
    Name : Testing Two

    Here is a screen shot of what registered
    https://www.dropbox.com/s/lxu0vysxd3edams/deault%20Profle%20Field2.jpg?dl=0

    So the first and last name are definitely being filled out from that default Name field (dont really care about the first and last name, its the nickname thats the problem)

    Any ideas? I cant go live with this site promising anonymity and then have the users name displayed in the address bar 😕

    Thanks
    Mark

    #158176
    Robin W
    Moderator

    good start, but that approach gets very complicated, as whilst you have added the fields, you have not saved them or said where to save them – that requires a whole bunch of other code !

    Easier approach :

    bbpress uses wordpress registration, so it’s easier to hook to that.

    The whole bunch of code below is not my original work (but I do use it on one of my sites, so know it works) but if you have a play with it, you should be able to adapt it.

    `//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 and last_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’, __(‘ERROR: You must include a first name.’,’mydomain’) );
    if ( empty( $_POST[‘last_name’] ) )
    $errors->add( ‘last_name_error’, __(‘ERROR: 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’]);
    }

    in essence start by looking at the end – 3. save

    and the line

    update_user_meta($user_id, ‘first_name’, $_POST[‘first_name’]);

    this is updating a user_meta field called ‘first_name’ for the user_id $user_id with the information entered in $_POST[‘first_name’]

    So it is saving the first name the user enters in a user_meta field for that user called ‘first_name’

    My plugin stores the data in a user_meta field called ‘rpi_label1’, so a find/replace to change ‘first_name’ to ‘rpi_label1’ is what is needed throughout the code. then some tidying up of things like the prompts and you should have it working.

    Give it a go, and see how you get on. IF you get it working, the deal is you post the result back here, and I can nick it for the plugin (and give you a credit) !

    If you don’t then come back with how you are getting on, and I’ll help – too tied up to do all the work myself !

    This code by the way goes in your functions file see

    Functions files and child themes – explained !

    #158170
    Robin W
    Moderator
    #158169
    Robin W
    Moderator

    Perhaps we decide that it would be great to have this feature for our platform and hire someone.

    Contact

    Contact me

    #158162
    milenushka
    Participant

    Hi @robin-w

    My email in settings is set to my site’s email , and I tested it with the plugin you suggested too, it says its all good:

    This test email proves that your WordPress installation at “Mysite” can send emails. Sent: Wed, 11 Feb 2015 08:27:40 +0000

    Subscribers also receive email notifications from buddypress- if somebody replies to their comment, or tags them in a post – or a bbpress thread.

    Just no email at all if one is subscribed to the forum, topic or replies.

    I am not using the mandrill service (wpMandrill), so this solution I think- does not apply to me https://bbpress.org/forums/topic/problem-with-the-default-do-not-reply-email-address/
    and my server is bluehost.

    The forum is a big part of my site’s community life , so the fact that there are no email notifications is pretty upsetting.

    I searched this forum and for days, really hope there is a simple solution.

    P.s I also tested it without any plugins but bbpress, default theme and reinstalled bbpress. Still no email are being received.

    Thank you

    @netweb
    I would really appreciate if you could take a look at this thread too.

    there is another one that seems unresolved here

    Email notifications not working; looking for help

    #158160
    Robin W
    Moderator

    hmm…. bbpress plays well with wordpress, so that should not happen.

    Usually a 500 error in wordpress a coding issue.

    Do you only get the 500mn errors when you btry and do something wordpressy?

    and when you get a 500 error, click the refresh on your browser, and usually it comes up with the specific error that is occurring – come back with that.

    #158153

    In reply to: Whitelisting users?

    Doug Smith
    Participant

    Ah, I didn’t realize it was Akismet doing that rather than bbPress itself.

    There was a plugin for the old bbPress and WordPress that disabled Akismet checking for certain user roles. I’ll have to see if I can adapt the WordPress part of that to work for the new bbPress posting instead of just WordPress comments.

    Here is the old plugin for reference of anyone following along.
    https://plugins-svn.bbpress.org/skip-akismet/trunk/skip-akismet.php

    And here is a modified version that disabled checking for users who have been registered for a certain time.
    https://github.com/Gamua/bbPress/blob/master/my-plugins/skip-akismet.php

    #158146
    Robin W
    Moderator

    Emails not working can be caused by many factors. Try working through the following :
    1. Spam filters
    You should be aware that many spam filters strip messages that do not come from the correct address. So if your site is mysite.com and your email address in wordpress settings>general is fred@gmail.com then it is likely that messages will be dumped in transit. You need to set up email to come from your site eg fred@mysite.com, your hosting provider can help if needed.
    2. Just bbpress?
    Then you need to see if this is wordpress wide or just bbpress.
    Try https://wordpress.org/plugins/check-email/

    then come back

    #158143

    In reply to: Log In Problems

    Robin W
    Moderator

    In order to test, I have created a new user (in users) but when I log out, and try to log in the new details it comes up with the wordpress admin panel saying wrong details.

    Can you give the exact error please

    #158133
    don5999
    Participant

    I am using wordpress theme Customizr and have downloaded bbpress.

    When I go to my site I can view the created forum (it is private for members only) as I am logged in.

    In order to test, I have created a new user (in users) but when I log out, and try to log in the new details it comes up with the wordpress admin panel saying wrong details. If I try to go back into the wordpress dashboard, it has logged me out from there too.

    I would really appreciate all your help.

    http://www.rosemaryheart.com

    #158129
    Nicolas Korobochkin
    Participant

    @caneblu it is not a bug. wp-signup.php on the root site – is how WordPress working.

    #158126
    Robin W
    Moderator

    3. Completely hide any backend/admin type stuff from non-admin users so that they never leave the frontend part of the site

    I agree – I hate that part as well

    use

    https://wordpress.org/plugins/hide-admin-bar-from-non-admins/

    #158125
    Robin W
    Moderator

    2. Add a link to the bbPress Login Widget for users to edit their profiles (instead of clicking their names…clicking their names doesn’t seem obvious to me)

    Can’t d0 that without coding, but my plugin
    https://wordpress.org/plugins/bbp-style-pack/

    will let you add this (and optionally register and login/logout) to the menu bar

    Install and then

    go into Dashboard>settings>bbp style pack>login and take a look

    #158124
    Robin W
    Moderator

    ok, it hasn’t come through, so first of three replies to avoid the spam filter !

    WITHOUT CODE – I can do more if you accept coding!

    1. Alter the bbPress user profile page–adding new fields, editing existing fields and removing fields

    Try my plugin https://wordpress.org/plugins/bbp-profile-information/

    Lets you add 4 profile fields for users to update and you can optionally display these under the avatar on topics and replies.

    If you want to remove fields – that’s code, but let me know which ones you want to remove, and I’ll take a look.

    #158118
    Robin W
    Moderator

    I’m in UK!

    ok, two things we can do

    try this first

    Deactivate bbpress tweaks
    Dashboard>plugins>bbpress tweaks>deactivate

    Go into widgets
    Dashboard>appearance>widgets

    And look at the bottom of the left hand side. You’ll see an “inactive sidebar”, with your entries on
    Below this is an “inactive widgets”
    Drag all the entries from the inactive sidebar to the inactive widgets area.
    This then allows wordpress to delete the sidebar
    I normally log out and in again at this stage – probably not needed, but I’ve never bothered to check
    Then basically reverse the above
    Re-enable bbpress tweaks
    You see the bbpress sidebar returns
    Drag the entries back from the inactive widgets area to the sidebar

    #158108
    TTYP
    Participant

    Hi folks,

    I could really use some help! I’ve installed bbpress and it’s beginning to look good, but I’m having some problems with the table alignment.

    My theme is responsive but for some reason, the individual forum columns (ie freshness, topic, etc) aren’t holding their shape at all and keep running over onto the next line, making the forum look very messy on mobile.

    I have access to the CSS file but can’t figure out the code I need to make sure that the columns remain ‘fixed’, regardless of the screen size/orientation. Here’s a link – I would be very grateful if you could give me a hint as to what I need to change. I’m running wordpress 4.1 and the latest version of bbpress.

    Sweden & Denmark travel forum

    Thank you!

    #158102
    allmyhoney
    Participant

    I have to actually install a new wordpress to get it to show its admin menus etc.

    #158096
    BrendenW
    Participant

    Hi Guys,

    Sorry in advance as I am going to be a pain in the ass here I bet, as I have very, very limited experience with wordpress or any website building for that matter; however, that’s marginally more than anyone else in my company so I’ve been saddled with the duty of getting it all set up and running.

    Prologue
    I have decided to create a forum and have downloaded bbPress for this. I needed to make certain things private and downloaded bbPress private to help with that. I wanted to make custom sidebars and downloaded bbPress tweak for that feature.

    We had the website made by an external company, they created it on wordpress and created a custom theme with a lot of templates within the themes. Call be cynical, but I think it was to try and squeeze us for every cent by making us come to them for any minor variation.

    Situation
    Despite all my attempts through every simple way I could think of I can not get my forum to show a custom side bar. The forum itself though is set up as I want it and more than workable, it’s just the aesthetics of having the right sidebar.

    Troubleshooting Undertaken
    * I started with all three plugins activated and created my forum and created a page could forums. So the permalink was set up. The sidebar was not what was expected. I have tried using every default template and every sidebar that my site has to no avail. Sidebar stayed exactly the same as it was.
    * I went in to the setting of bbPress Tweak and selected the different .php files, only the bottom 3 were in bold and when I selected the 2nd or 3rd from the bottom nothing happened. When I selected the bottom one, the side bar moved from the side to underneath and the forum went to full screen width.
    * I deactivated bbPress Tweak and tried again, nothing new happened, same old sidebar.
    * I decided to change the permalink away from the slug to see if when it was just a standard page if I could change the sidebar (to try and see if it was a bbPress forum problem or a theme template problem). The sidebar changed to what ever I wished it to be and I could change from sidebar to fullwidth as I pleased.

    Conclusion
    I am left to believe that it must be a problem (problem isn’t the right word) with bbPress loading a specific template/sidebar. I don’t understand why bbPress tweak is not able to overwrite this though?

    Any help would be of great assistance, though as mentioned to begin with, I am very new to all this so you may need to dumb down the help if you can.

    #158089
    KatieKat
    Participant

    Hi there,
    have seen some other posts but still having serious problems. Have the latest versions of WordPress and bbPress but users are not receiving notifications when subscribing to topics or forums. Have tried the patch in 2618 but still not working.

    Kind Regards

    KatieKat

    #158087
    #158081

    In reply to: Error in permalink

    Robin W
    Moderator

    no can’t tell you why you have jumps – again I suspect spam filter taking out commenst – do you run askimet?

    At least, for each topic the number for the first message should be #1 no?

    no, bbpress is using wordpress post numbers. Everytime a post, page, comment, forum, topic or reply (and any other custom posts) are created or media item (eg picture) is uploaded, a wordpress post number is allocated.

    Hence you could easily get large gaps in the numbers.

    #158079
    Sebastian
    Participant

    Thanks for your reply.

    Yes thats right. I added a forum and a topic in the forum, and I want to use the reply form to let the user answerfrom another wordpress page into this specific topic – in my case I want to add the reply forum in a course page of learndash – I think they use the normal wordpress post.

    It works already with the shortcode [bbp-single-topic id=$topic_id], but then the reply form and specific topic with its answers is shown in the page. Thats too much.

    I thought of just adding the form reply and say the shortcode [bbp-reply-form] where it
    belongs to.
    Like the example: http://www.imageupload.co.uk/images/2015/02/08/shorcodeforminsidepage.jpg

    Is that possible?

    #158076
    David13_13
    Participant

    Hello

    I have found this great plugin but I have an idea for improve his effectivity:

    Now, if only ONE user report a message, that message will show the “this message has been marked as reported” message. The ideal, in my opinion, will be that you could choose how many reports are necessary to show that message. For example: only if 3 users report a reply it will show the report message.

    Anyone knows how can be made?

    Thanks in advance

    https://wordpress.org/support/plugin/bbpress-report-content

Viewing 25 results - 8,051 through 8,075 (of 26,887 total)
Skip to toolbar