Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,626 through 2,650 (of 31,071 total)
  • Author
    Search Results
  • #275839
    wallacelin
    Participant

    Hello, I’m using Buddypress 3.1.0, bbPress 2.5.14, and the Boss theme 2.4.6 to create an online network/forums website. The website is 7ctest2.site and the wordpress version is 4.9.8.

    Is it possible to merge the Read and Unread notifications into one page on /members/user/notifications/ ?

    How would I go about implementing this?

    I’m new to both Buddypress and bbPress and was handed down this website to complete. Any help or idea would be helpful. Thank you!

    #275756
    Prashant Singh
    Participant

    You have placed the code in parent theme’s functions.php which is not correct, because in future you will have an update of the theme and when you will update these changes will be lost. So you should always paste any new code in child theme’s functions.php. In case it is not working there and you are not able to get it why? then install this https://wordpress.org/plugins/code-snippets/ plugin and try adding code under snippets and see if it is working fine. Also before placing code with this plugin just remove it from your functions.php otherwise if the same code will be there on both places then it will generate a fatal error.

    When I moved the code to the functions.php in the social-portfolio folder, it worked exactly as expected.

    Thanks

    #275743
    groston
    Participant

    I stumbled across the solution to my own problem and am sharing in case others run into a similar problem.

    Noting that a) our WP/BP site has been customized and b) that I am not the author of the site: Our site has both of the following folders:
    …/wp-content/themes/social-portfolio
    …/wp-content/themes/social-portfolio-child

    and both folder have a functions.php file. My original posting, with the described problem, occurred when the quoted code was in functions.php in the social-portfolio-child folder. When I moved the code to the functions.php in the social-portfolio folder, it worked exactly as expected.

    #275696
    Prashant Singh
    Participant

    Please paste this code in your child theme’s functions.php file or you can use this plugin https://wordpress.org/plugins/code-snippets/ as well

    add_filter( ‘bp_login_redirect’, ‘ps_redirect_to_profile’, 11, 3 );

    function ps_redirect_to_profile( $redirect_to, $redirect_url, $user ){

    if( empty( $redirect_to) )
    $redirect_to = admin_url();

    //if the user is not site admin,redirect to his/her profile

    if( isset( $user->ID) && ! is_super_admin( $user->ID ) )
    return bp_core_get_user_domain( $user->ID );
    else
    return $redirect_to;

    }

    It will redirect site admins to dashboard and other users to their profile.

    Thanks

    #275692
    Phoenix
    Participant

    Hello, everyone!
    After I have filled the registration form WP redirects me to the Homepage. In users list (Dashboard) I don’t see new user too.
    Steps which I tried to resolve the problem:
    1) WP in simple mode, not WPMS
    2) Dashboard – Settings – checkbox “Users can register” checked
    3) Disabled all plugins and checked BuddyPress registration function
    4) Changed theme to another one. (I use OneCommunity theme by default)
    5) Installed WP Mail SMTP (tried to send messages via php wp_mail & smtp). Both variants work for WP, also checked to send messages via Contact form 7 etc. BUT not sending any mail from BuddyPress
    6) Tried to reinstall BuddyPress plugin, still not working
    7) There is no hosting problems too…
    8) I don’t see another user accounts in Users dashboard.
    9) Switched between old and new BuddyPress templates…
    10) Additional information:
    – WP version 4.9.8
    – BuddyPress 3.1.0
    – Activated plugins (15): Anti-Spam by CleanTalk, bbPress, BuddyPress, Contact Form 7, No Category Base (WPML), OneCommunity Shortcodes, UpdraftPlus – Backup/Restore, UpdraftPlus – Backup/Restore, Wordfence Security, WP Mail SMTP, WP Sitemap Page, WP-Polls, WPBakery Page Builder, Yoast SEO Premium, WP Recaptcha Integration.
    11) There is no any php errors (when I enable debug) and js errors in browser console.

    I can’t find another reason why didn’t registration form not working…. Domain – barbiusa58.info
    How I can fix it? Thanks in advance)

    #275689
    tr3ntbuck
    Participant

    I am just getting started on my site. I have not purchased a theme or plugins yet as I am trying to find out what modification I can do on my own or what I cannot / how long it might take. I have looked at some themes for purchase for BuddyPress and I have looked at Peepso but I feel it is impossible to tell in either situation if the demos people are showing are all done with settings to modify the look of pages or if it the display changes are being done by writing code. BuddyBoss premium theme demos look nice and so does Peepso but I have not figured out if the look they are both showing is just alot of setting options or just them writing code.

    #275644
    Brian Cruikshank
    Participant

    Cool. Your fix doesn’t work for me because it’s a default install on a non modified theme with no other plugins active besides BuddyPress.

    #275630
    keyadigital
    Participant

    I’m having perhaps a related issue with messages. When I switch to the old theme the messages work fine. Here is my original post:

    _______________________
    Greetings!

    I just installed BP version 3.1.0 with WooCommerce StoreFront theme on WP 4.9.8 hosted on WPEngine.

    When I go to a users profile and click private message, it takes me to the messages tab, but the compose fields do not show. The URL appears to have the proper query string with the users name. Example: compose?r=julesyoga

    Could caching be preventing the page from loading perhaps?

    Do you know any reason why the page isn’t loading in compose mode and the name isn’t being populated.

    site: https://access.julesmitchell.com/
    wp version: 4.9.8

    Thanks so much!

    keyadigital
    Participant

    Update! When I use the legacy theme messages work fine. Hmm.

    #275613
    1millionwomentotech
    Participant

    OMG, you are right last_activity is missing! See https://www.dropbox.com/s/80qs1ywzk8xrsdu/Screenshot%202018-08-09%2017.54.22.png?dl=0

    Only I have the last_activity meta_key (user_id 1 and 2).

    user_id 3, 4, 6, 7, 8 also have it but from 2016 (!) – I suspect this comes from the dummy data import that I did for the theme.

    The others are active on the site, but have no last_activity recorded. Would somebody point me to the next step on how to fix that?

    Thanks!

    #275612

    In reply to: Description Groups

    Theunis Coetzee
    Participant

    @damon18 to be honest, I’m actually overriding the nouveau theme from inside my child theme, like you’d like to do. I just sort of simplified the solution initially shared on this post for everyone since not everyone edits their themes or creates custom child themes for their projects.

    So yes you’ve got the right idea but the correct file location would be

    /wp-content/themes/my-theme/buddypress/groups/single/cover-image-header.php

    so it’s without the /buddypress/bp-templates/bp-nouveau/ section.

    Hope that helps 🙂

    #275606
    shanebp
    Moderator

    Make sure all your members have a ‘last_activity’ timestamp.

    New users not showing on member page until they sign in

    If the issues persist, you need to do some basic debugging.
    Start by using a WP theme like 2017 and use the BP > Options > Template Pack > BuddyPress Legacy templates. If that clears up the issues, then you need to get a solution from BuddyBoss.

    If the issues persist, deactivate any other plugins.
    If the issues persist, there is a serious and unknown problem.
    Otherwise, activate the other plugins one at a time until you see an issue.

    #275605

    In reply to: Description Groups

    DL
    Participant

    @ipokkel I made the change directly in the Buddypress file

    /wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/groups/single/cover-image-header.php

    I wasn’t sure if the override system worked on this kind of thing, could I move that file (and any others that need modification) under my child theme like

    /wp-content/themes/my-theme/buddypress/bp-templates/bp-nouveau/buddypress/groups/single/cover-image-header.php

    I know that sort of over-ride works for theme files like page.php and single.php but does it work for everything?

    #275586

    In reply to: Sidebars and pages

    DL
    Participant

    I fixed this by creating a new file named buddypress.php to place in my theme (child theme) on the same level as the page.php, single.php, style.css etc.

    Buddypress then uses that buddypress.php page for all of it’s content.

    The buddypress.php file is simply a copy of page.php with the call for sidebar commented out.
    <?php /* get_sidebar(); */ ?>

    I then needed to adjust main content div to be 100%, or in my case simple remove the ID tag that called the css to limit the width of the “left content” to 73%.

    Hope that helps.

    #275548
    shanebp
    Moderator

    Paste in your theme functions.php or in bp-custom.php.
    Load the site in a browser
    Remove from your theme functions.php or bp-custom.php.

    https://gist.github.com/shanebp/b73343e9c9a6509d2bbc47de80c881c1

    #275546
    Aron Prins
    Participant

    Hey @nfxpert @belle33 @itsart,

    If it is allowed for me to share my domain here, it is https://www.collectorplayingcards.com (running on BuddyBoss original theme (not Boss).

    If you look in the header section you can see my little resetCookie function in action.

    Like @r-a-y says, that is a “good enough” solution for now, or you could take him up on his trac ticket https://buddypress.trac.wordpress.org/attachment/ticket/7896/7896.01.patch 🙂

    Hope this helps!

    Cheers,
    Aron

    weekev
    Participant

    I’m having the same issues. I’ve checked the headers in the failed messages and they indeed include double subject line entries. Did you find any offending plugins?

    Recently I started using BP Better Messages, going to see if that’s causing the issue.

    Also I’m using Rehub theme, if you’re using that, maybe we can find some similarities and rule things out.

    #275536
    Sean Nicholson
    Participant

    Here is a video that shows what the issue is. Apologies for the third-grade video editing:

    As shown in this video, the steps to recreate the issue are to:
    1) Click on any community member
    2) Click the “Public Message” button on their profile
    3) On the activity feed page, place your cursor in the message box and type “Here I am typing”
    4) Hover your mouse cursor over the “Post Update” button. Notice that it is still an arrow icon because you cannot click it.
    5) Click the button. IT WILL NOT POST.
    6) Click anywhere outside of the message box (e.g. white space off to the right).
    7) Hover back over the “Post Update” button. Notice that it is STILL an arrow icon because you cannot click it.
    8) Click the button. IT WILL NOT POST.
    9) Click back in the message field.
    10) Hover back over the “Post Update” button. The cursor changes to a hand icon because the button has now been activated.
    11) Click the button. IT FINALLY POSTS.

    So, the user experience is that they type their message and then have to click somewhere outside of the message box, then click back inside the message box before they can send their message. Not a good user experience. It did this both on the Klein theme that I am using and the standard WordPress 2016 theme. Exact same experience.

    Let me know if there are additional questions that I can clarify.

    Thanks for any help demystifying why this is happening.

    –Sean

    r-a-y
    Keymaster

    Check areas where your developer has either written a plugin or modified your BuddyPress templates in your theme (should be under /wp-content/YOUR-THEME/buddypress/ maybe.

    #275527
    Sean Nicholson
    Participant

    I switched over to the 2016 theme last night and the behavior is exactly the same. This isn’t something theme related, so where should I look to determine why I have to click outside the text area, then back inside the text area in order to get the button to activate?

    Thanks for your guidance!

    –Sean

    #275517

    In reply to: BP Login buggy

    Kristina Fein
    Participant

    Thanks,but i have new problems Can you help. I contact the Rehub Theme developer, he says there is some prlugins in back wich are have influnce but i checked and deactivate all plugins it still buggy, now i have this error in wp dashboard:

    Warning: sprintf(): Too few arguments in /var/www/web24642847/html/smartgadgetdeals/smartgadgetdeals/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php on line 327

    Warning: Cannot modify header information – headers already sent by (output started at /var/www/web24642847/html/smartgadgetdeals/smartgadgetdeals/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php:327) in /var/www/web24642847/html/smartgadgetdeals/smartgadgetdeals/wp-admin/includes/misc.php on line 1124

    #275511
    r-a-y
    Keymaster

    For me, it displays the hand icon and I’m able to submit the form after pressing on it. I’m testing with a WordPress default theme.

    Try switching your theme temporarily to see if you can duplicate your problem.

    #275510
    Sean Nicholson
    Participant

    Hi Ray,

    Apologies. I should have been more precise in documenting my steps. The actual steps are:

    1) On the users’ profile, click the “Public Message” button.
    2) I am taken to the activity feed and a message box is displayed and their handle is pre-populated.
    3) The entry form is focused and I can type.
    4) I type “Hello, person”.
    5) When I am done typing. I hover over the “Post Update” button, but it displays a pointer, not the hand icon because the button is not activated to send.
    6) If I click anywhere on the page to remove focus from the message field, the “Post Update” button remains inactive.
    7) When I click back in the message field, the button is now activated and I can send.

    I checked with my theme developer and they indicated that this is standard BuddyPress activity and has not been modified by their theme.

    Is this how BuddyPress is expected to behave for public messages?

    –Sean

    #275507
    r-a-y
    Keymaster

    Sounds like you’re using a plugin because when you hit the “Public Message” button, it should take you to the Site-wide Activity page with the @-username pre-populated. The submit button is also named “Post Update” and not “Send”.

    Could also be something that your theme implemented. If so, try changing your theme to a WordPress default theme to see if the behavior is how I described.

    #275481
    roseannec
    Participant

    Thank you @shanebp. I had a look at those examples and think that should be ok. One other question. What is the database table structure for this? Is there a separate database table for groups? I presume that the individual member data is saved in the wp_users table?

    Also I have seen in the documentation that the individual profile pages can be customized by customizing the template files and saving that into the child theme. Is that the same with groups? If I set up a group for each of my small business ‘members’ I’m assuming there would be a group page for each one? And that I could display my new custom fields somehow?

    Thanks,
    Roseanne

Viewing 25 results - 2,626 through 2,650 (of 31,071 total)
Skip to toolbar