Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,576 through 2,600 (of 32,024 total)
  • Author
    Search Results
  • mfonabel
    Participant

    Please I would appreciate any help. I have tried to fix this no way. I have search, it seems no one is having this problem.

    When you click on a username, it takes you to the profile but on the profile, there are buttons under, Home and view. It automatically goes to home and it is blank. You have to click on view before you see member bio.

    I want it to go directly to showing member info.

    Here is a screenhsot of how it looks: https://prnt.sc/ld0xqr

    As you can see, the profile tab is active but there is a home under it aside from the home tab on the main menu.

    I have changed to Buddy press theme Legacy and Nouveau, still same.

    I have used the appearance > customize >Nouveau still the same.

    How do I get ride of that home there and let it just display the profile of the person instead of blank?

    mfonabel
    Participant

    Please I would appreciate any help. I have tried to fix this and search, it seems no one is having this problem.

    When you click on a users name, it takes you to the profile but on the profile, there are button under, Mainly Home and view. It automatically goes to home and it is blank. You have to click on view before you see member bio.

    I want it to go directly to showing member info.

    Here is a screenhsot of how it looks: https://prnt.sc/ld0xqr

    As you can see, the profile tab is active but there is a home under it aside from the hnome on the tab and it is blank.

    I have changed Buddy press theme Legacy and the other one, still same.

    I have used the appearance > customize >Nouveau still the same.

    How do I get ride of that home there and let it just display the profile of the person instead of blank?

    #279725
    Prashant Singh
    Participant

    Hi,

    You need to find the file cover-image-header.php and override it in your child theme then just after the avatar code you have to call the function https://buddypress.org/support/topic/bp_get_profile_field_data-2/

    Thanks

    #279716
    Prashant Singh
    Participant

    Hi,

    Please go through this article https://theme-fusion.com/easily-add-paid-content-wordpress-site/

    Thanks

    #279697
    Prashant Singh
    Participant

    Hi, elizat801

    It seems like your theme or any third party plugin is creating the issue there. It works fine with the default theme like twenty-seventeen.

    You can take a backup of the site and then check by enabling default theme and if the button appears then certainly you have to ask your theme devs to check once. If the theme looks fine then try disabling plugins, except BuddyPress, one by one to check which one caused the issue.

    Thanks

    #279684
    Prashant Singh
    Participant

    You can override cover-image-header.php file in your child theme and then can output the bio just below the cover image.

    Thanks

    #279681
    3diuk
    Participant

    Ok, I found the problem. Clicking on Author’s names was actually linking to:

    renderwars.xyz/author/michael

    when it should have been linking to:

    renderwars.xyz/members/michael

    for buddypress to work properly I had to create a child theme and then add a redirect rule in the child themes functions.php file.

    For anyone else with the same problem who might not be too good at php etc, here’s the instructins I found to help me:

    Creating a child theme:

    https://codex.wordpress.org/Child_Themes

    and then putting this code in the function.php:

    add_filter( 'author_link', 'change_author_link', 10, 1  );
    
      function change_author_link($link) {
       $username=get_the_author_meta('user_nicename');
    
      $link = 'http://example.com/members/' . $username;
       return $link;
     }
    #279680
    soldiercide
    Participant

    I have zero BuddyPress experience, and very little WordPress experience; I think it’s important to open with that.

    For some reason, my activation emails are not sending. All of the other email types seem to work just fine. I have attempted a few things to correct this after searching for solutions, to include creating a new activation email, and what is listed here: https://buddypress.org/support/topic/buddypress-3-1-0-is-now-available/.

    I just set up the site today, so I am using the latest version of both WP and BP. I am using the Kleo theme, if that is of any use. I am also using GoDaddy’s managed WP hosting, if that is of any use. Any assistance would be greatly appreciated, thank you for your time.

    mllapan
    Participant

    I want to use Custom made page.php template for buddypress registration page, but if I use it from child theme folder, or child theme buddypress folder, it does not affect the buddypress registration page.

    I need a page without wordpress header, footer, sidebar and many other things.

    How to do it?

    #279659
    Prashant Singh
    Participant

    Hi,

    Please check if it is https://prnt.sc/lbxd35 enabled there or not. It works fine with the default themes.

    Thanks

    #279653
    kilenahan
    Participant

    I haven’t – I’m wary of switching themes because last time I restored a backup there were a lot of formatting issues that caused me to have to redo a lot of work. What is the easiest way to do a backup and restore the old version after I test with one of the default themes?

    Thanks,
    Kieran

    #279587
    Prashant Singh
    Participant

    As I said you have to override the template in your child theme and then there have to change the link.

    If you will directly change the link in plugin’s file then it will be lost on next update.

    Thanks

    #279533
    Prashant Singh
    Participant

    Hi,

    Have you tried to check this with one of the default themes like twenty seventeen? Maybe your current theme is having this bug.

    Please do a backup before testing.

    Thanks

    Prashant Singh
    Participant

    Let me show you the way to do it and maybe you are missing one important stuff and that is the theme translation. Please check the video I made for you to explain the working: https://screencast-o-matic.com/watch/cF6O0lY5iP

    #279428
    Prashant Singh
    Participant

    Hi,

    activate.php is the file that has the link and you can override it in your theme and code there to restrict it.

    Thanks

    gmbyrom
    Participant

    Hi all

    I have an issue on my Buddypress groups (BP Legacy, WP 4.9.8, BP 3.2.0, TwentySeventeen theme (child), http://lp.qc.to:15647/ )
    For this set of groups I want threaded comments to be the default, everything seems to tell me the default IS threaded, but I have comments appearing as activity items in the activity stream of my groups, and the comments are “flattened” into a sengle level of comments under each post. THis would appear to be the “stream” setting, not the “threaded” setting.

    Even more strangely this is happening on some of the groups but not others. Some groups appear to be fine, with threaded comments appearing as they should – below the post they pertain to ONLY and NOT as activity items.

    All the groups have the same settings, but I’d be happy to be proven wrong about this if anyone can point me to a setting that enables this per-group instead of on the whole site?

    My activity.php looks like this:

    <?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ).’&object=groups,status,blogs’.’display_comments=threaded’ ) ) : ?>

    <?php if ( empty( $_POST[‘page’] ) ) : ?>
    .
    .
    .
    etc.

    Can anyone shed any light on this and help me find the solution?
    Thanks!

    #279399
    Prashant Singh
    Participant

    You can try in bp-custom.php or child theme’s functions.php. If not sure about files then use this plugin https://wordpress.org/plugins/code-snippets/ to add snippets.

    Thanks

    Lux
    Participant

    Hi Preshant

    Thank you very much, i have switched themes and it worked !!

    Prashant Singh
    Participant

    Have you tried the same with the default theme like twenty seventeen there? Please try once and if it works fine there then please report theme devs to check.

    Thanks

    #279318
    Prashant Singh
    Participant

    Hi,

    Please see: https://screencast-o-matic.com/watch/cF63bMYzAs

    It is working fine with the default theme.

    Thanks

    #279307
    shanebp
    Moderator

    You don’t say which template pack you’re using… Depending on which you’re using:
    Find this file:
    buddypress\bp-templates\bp-legacy\buddypress\activity\index.php
    Or this one:
    buddypress\bp-templates\bp-nouveau\buddypress\activity\index.php

    Then find this code:

    	<?php if ( is_user_logged_in() ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>

    And change it to:

    	<?php if ( is_super_admin( get_current_user_id() ) ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>

    Rather than make the changes to the BP templates, use a template overload instead.

    rajh2350
    Participant

    Hello,

    I am using latest version of buddypress and wordpress. The registration process is not working for me. Its just refreshing the page. No data is saving in database. I have tested with deactivating all plugins and also tested with the default theme. But its still not working.

    I need to fix this issue as soon as possible. Please help!
    Thanks in advance.

    #279275
    tsortore
    Participant

    Here is my theme and a list of plugins, most of which came with the premium theme. There have been no complaints I’ve found of the groups not working “out-of-the-box” with this theme.

    *** These were the only plugins that did NOT come with the theme.

    Theme: WOffice
    Active Plugins:

    • Akismet Anti-spam
    • All in one WP Migration
    • BP xProfile Location ***
    • BuddyPress
    • Buddypress Xprofile Fields Custom Css Classes ***
    • DP Pro Event Calendar
    • Eonet Live Notifications
    • File Away
    • GamiPress
    • LocateAnything ***
    • Slider Revolution
    • Unyson
    • User Role Editor ***(suggested and tested compatible plugin)
    • Wise Chat
    • WP ERP
    • WP ERP – PDF Invoice
    • WP Bakery Page Builder

    Still no luck getting group creation working.

    Thanks for your response! Any ideas?

    #279274

    In reply to: Buddypress not loading

    Prashant Singh
    Participant

    Hi,

    Please check in the browser console if there is any javascript bug with your theme that was previously activated.

    Thanks

    #279270
    rosemalfoy93
    Participant

    Hello
    All of a sudden my buddypress pages aren’t loading. On checking I saw that #item-body wasn’t loading completely. So when I click on any tab except the profile tab, the entire page below the nav is cut off including the footer.

    I tried removing all my custom css & the functions.php file of my child theme to see if that’s the problem. But no effect. When I activate the parent theme though it seems to be working. Where else can I check or what can I do to solve this issue?

Viewing 25 results - 2,576 through 2,600 (of 32,024 total)
Skip to toolbar