Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,826 through 5,850 (of 32,560 total)
  • Author
    Search Results
  • shanebp
    Moderator

    Have you tried using a standard theme like WP 2015?

    Are you running any membership plugins or code that affects profile fields?

    You may want to wipe the installation, including the database, and start over.

    harpodjc
    Participant

    Hi Guys. Any possible help or info on this topic would be greatly appreciated.

    WordPress version – Latest Updated Version
    BuddyPress version – Latest Updated Verion

    Here is the what I am trying to achieve with the BuddyPress Plugin for my Users.

    To create a ‘Print Profile Data as PDF” as an option within the BP User Nav section. Please see images –

    I want the user’s Profile Data and custom fields to display as a Print / Save as PDF option when the user clicks and selects it.

    It will generate this dynamic data in a presentable layout.

    Any advice or alternative PHP options for this option creation would be most greatly welcome. My print.css style-sheet is currently blank. I’ve no idea of the coding that needs to go into it to finish this idea below and make it work.

    Please Help!!!

    =============================================================================================
    The Modification’s I have completed to date to get it this far!!!
    =============================================================================================

    Creating Profile Print Navigation

    Created a print.css file in the WP Theme Folder.

    > WP Theme Folder folder / functions.php file.
    Added this custom code:
    wp_enqueue_style( 'thrive-print', get_template_directory_uri() . '/print.css', array(), 'print' );

    > Next – Theme > inc folder and opened up extras.php & added this code below:

    function theme_print_nav() {
        global $bp;
        $args = array(
                'name' => __('Print PDF', 'buddypress'),
                'slug' => '#',
                'default_subnav_slug' => '#',
                'position' => 30,
                'show_for_displayed_user' => false,
                'item_css_id' => 'print-pdf'
        );
        bp_core_new_nav_item( $args );
    }
    add_action( 'bp_setup_nav', 'theme_print_nav', 99 );
    

    It added a Print PDF navigation in the Profile Menu.

    Lastly I went to Theme > js folder and open theme.js file.
    Added this line of code.

    $("#user-print-pdf").attr("href", "javascript:window.print()");

    The Print Feature was then added to site.

    =======================================================================================

    This is as far as I have got. Any suggestions guys on how to sync / finish this would be amazing 🙂

    Thanks a mill,

    David.

    #253893
    danleachuk
    Participant

    I am attempting to hide the “Delete Group” sub nav item in Groups >> Manage, using the following code in bp-custom.php

    if(!current_user_can(‘administrator’)){
    bp_core_remove_subnav_item( bp_get_current_group_slug() . ‘_manage’, ‘delete-group’ );

    }}

    This does delete the item. However it has an unusual side-effect I don’t understand:

    groups/test/admin/ brings up a 404 error (without the code above, this brings up the Manage >> Details tab)
    groups/test/admin/edit-details still works after I type it in manually.

    How can I fix this?

    I have a fresh WP and BP install. Twenty-Sixteen theme.

    #253881
    Paul Wong-Gibbs
    Keymaster

    Did anything else update at the same time? Anything?

    2.5.3 contained changes to email implementation, and a security fix regarding user activation. The latter is most likely cause.

    What theme are you using? Do you have a custom registration template (did you make one)? What other plugins do you have running? Are you on multisite or regular WordPress?

    Can you think of any other useful information regarding any customisations around user or site registration?

    #253877
    Mathieu Viet
    Moderator

    @nnyorker you’re probably activated a standalone BuddyPress theme that has no support for the cover image feature.

    I advise you to have a look at this post:
    BuddyPress 2.4.0 will introduce Cover Images for members & groups!

    #253871
    Paul Wong-Gibbs
    Keymaster

    @nnyorker Are you using a custom theme?

    I think certain types of custom themes have to opt-in for cover image support. @imath will know 🙂

    moloco
    Participant

    This is the error i have:
    Parse error: syntax error, unexpected ‘get_header’ (T_STRING) in /home/u996268967/public_html/wp-content/themes/SocialChef/index.php on line 1
    and this is my string line:
    get_header(‘buddypress’);

    Can someone help me

    Earl_D
    Participant

    Since the update user registrations are broken. I have tried running with bare bones buddypresssimple install with just the WP 2012 or 2016 themes and nothing works. All the fields are filled out and submitted and the nothing happens just reloads registration page.
    I would appreciate any assistance I just started promoting site and now people can’t register when they go to it.

    djsteveb
    Participant

    @mingjie0409
    there has been some discussion of this here: https://buddypress.org/support/topic/bussdypress-title-and-seo-yoast-problem/#post-253510

    and here:

    https://premium.wpmudev.org/forums/topic/bp-meta-tite-description-for-groups-and-members-pages

    and several other places including the suggestions / feedback area amongst others.

    I’ve had it fixed a time or two but updates to either bp or themes have broken my fixes.
    This is something that google’s webmaster tools screams at you as being bad, and hurts your site the more members you get.

    so I added a noindex no follow to the robots.txt file to remove most of the bp pages from being indexed.

    #253831
    sharmavishal
    Participant

    Just checked ..working fine on me..test with 2016 theme..or are you using any plugin for cover pic?

    sharmavishal
    Participant

    regarding title check the <title> tag in your themes header.php….also are you using any SEO plugin? if yes see what title tag is suggested to be used in header.php

    and regarding the look and feel of your theme..is this a paid theme? if yes you need to check with the theme author

    #253827
    sharmavishal
    Participant

    check your site with the wp 2016 theme…does the issue remain?

    #253814
    pandafoxxxx
    Participant

    Hello,

    After following the codex and googling for hours, I just can not set the default cover image for users when they first register. I use the latest version of wordpress and buddypress.

    functions.php

    
    function your_theme_xprofile_cover_image( $settings = array() ) {
    $settings['default_cover'] = 'http://www.planwallpaper.com/static/images/colorful-triangles-background_yB0qTG6.jpg';
     
    return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_xprofile_cover_image', 10, 1);

    member-header.php

    
    <?php $cover_image_url = bp_attachments_get_attachment( 'url', array( 'item_id' => bp_displayed_user_id() ) ); ?>
    <img src="<?php echo $cover_image_url; ?>">

    Website: local

    Edit: I CAN set an image in the profile tab and it shows up like normal.

    #253811
    shanebp
    Moderator

    You’ll probably want to create a new page and then load a custom template.

    In your custom template, you’ll need to create an Activity loop with the parameters that you want.

    Sounds like this is your first time performing these tasks.
    Give it a serious and thorough attempt and see how far you can get.
    If you get stuck, use gist or pastebin to share the code in your custom template.

    Please do not paste all the code on these forums.

    #253810
    shanebp
    Moderator

    To reveal if the issue is in your theme, try switching momentarily to a theme like WP 2013 and test again.

    balmainboy
    Participant

    Hi everyone,

    The organisation I work for is looking to trial Buddypress however we would ideally like to chat to one or two others regarding your experiences using BP and managing the ongoing admin on the backend before we jump in.

    We’re not asking for anyone to release anything private or confidential but some general feedback will be of great help. We’d like to make sure we have the right systems in place from the get-go and we’re not caught off-guard by unforeseen issues

    Things like managing increasing numbers of users, groups, comments, handling any abusive users etc.

    If anyone is willing to discuss their experiences with me please reply and we can take it from there.

    Thanks

    WP 4.5.2
    Kleo Theme

    #253795
    drumhead
    Participant

    Hello,

    I am new to WordPress and Buddypress and have been having trouble figuring this out.

    I want to search for users by their BP xProfile using the check box fields combined with their location. The goal is for a user to be able to select someone with a specific criteria (check boxes) and then by zip code or the name of the city state.

    I see location as an option when making new fields but really like xProfile Location Version 1.0 and how it autofills the location with either zip or city state. Can this be used in conjunction with the location fields?

    And can both of these (checkbox and location) be requested with one request?

    WordPress 4.5.2 running Athena Child theme
    BP Profile Search Version 4.5.2
    xProfile Location Version 1.0

    Thanks,
    Craig

    gatehealing
    Participant

    I’ll do my best to answer these before asking my question, per moderator request.
    1. Which version of WordPress are you running? 4.5.2

    2. Did you install WordPress as a directory or subdomain install? unsure. Installed as program at my host. domain is bennypointer.com

    3. If a directory install, is it in root or in a subdirectory?

    4. Did you upgrade from a previous version of WordPress? If so, from which version? Not today.

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Still working basically

    6. Which version of BP are you running? 2.5.9

    7. Did you upgraded from a previous version of BP? If so, from which version?

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Buddypress not activated now (BBpress is). Also running Beaver Builder Lite, Page Builder by Site Origin, Site Origins Widgets Bundle, Title Remover, and UPdrafts plus backup. Not my idea to use most of these. . . trying to help a friend out.

    9. Are you using the standard WordPress theme or customized theme? Using Off the Shelf theme

    10. Have you modified the core files in any way? No

    11. Do you have any custom functions in bp-custom.php? Not that I’m aware of unless a plugin altered them

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? bbpress 2.5.9

    13. Please provide a list of any errors in your server’s log files. n/a

    14. Which company provides your hosting? will have to check

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? unsure, but Apache, I think.
    ____________________________
    Bennypointer.com is to have a forum (/forums). I have it built, have registration/login/lost-password pages that seem to work, except upon registration, no email gets sent (doing automatic registration for the moment). I’ve scoured everything I can find, and cannot seem to fix this. Ideas?

    Also, I am trying to get a right sidebar on the forum page with registration, etc. but cannot get it up. On Benny’s Forum page (/forums), I have ‘right sidebar’ as page type. I with widgets setup with login URI and lost password URI fields accurate, and did the same at appearance>widgets where there is only Blog Sidebar and Footer listed on the right (where I drag the widgets to). I cannot find a place to “create new sidebar” that I have in my Karma wordpress theme. I have tried having the widgets in both the Appearance>customization area, and on the appearance>widegets page).

    Help? I’ve got about 12 BBpress and codex pages open on topics ranging from learning child-themes, to BB press, etc.

    Thanks y’all
    Jon

    #253784
    Pulse North
    Participant

    Hi @danbp,

    The theme itself wasn’t so much custom as just tweaked for purpose, it is a child theme of the Reverie theme (http://themefortress.com/reverie/) which is a foundation and WordPress framework. There weren’t many (if any) theme changes made beyond the style sheet and I there aren’t any Widgets in use beyond the Buddypress sidebar ones.

    There are quite a few plugins in use though (23 in total) but when I left all of them activated and switched to the TwentyFifteen theme, the feed posts were visible again.

    I’m honestly not sure how to go about debugging this, as I’m a designer primarily and Javascript/PHP are not my strong points. Is there anything you can do to help?

    Thanks for your assistance so far!

    #253781
    danbp
    Participant

    Hi,

    You said you made some custom work. Review your work and search for WP_Widget occurence, there is probably a little error somewhere and the reason of the php notice. Culprit seems to come from your custom work. You have to debug ! 😉

    Difficult to say exactly what’s going on and where. It could be a call to widget from within your theme, or a custom function you added or a plugin you use. That call is using an old method, or some old php coding. It can also be a JS conflict, which could explain why you don’t receive group activities or even a missing BP class or ID name.

    Read here, perhaps you can get an idea.

    And don’t panic, a php notice is not a hot security alert, just a tech message. You can live with it or try to repair (which would be better).

    #253776
    Henry Wright
    Moderator

    Which theme are you using? Do you see the problem if you activate Twenty Fifteen?

    #253759
    eutopia007
    Participant

    Sorry, you are right, I didn’t mention that. I did do a default theme and the problem still remains. When I go to register, I can’t. In using the default theme, it doesn’t even go to the register page. It stays at home. The #gf_2 is from the gravity forms plugin. As I said before, it was working and then it stopped. Now my buddy press won’t go there and I don’t know how to change it. It goes to a default registration page which wouldn’t be so bad EXCEPT the users STILL can’t register.

    #253758
    danbp
    Participant

    Hi @pulseorth,

    do you see php messages when you enable wp_debug in wp-config while using the custom a la facebook install/theme ?

    #253757
    danbp
    Participant

    Hi @eutopia007,

    you say nothing about the theme, which could be the culprit. Activate one of the default WordPress Twenty theme and see if the error remain.

    In any case, a page named #gf_2 is not part of BuddyPress or WordPress. Check all your pages and their permalinks. If you find one using that, delete it. You should also clear your trash definetly as it could be you have that page in it.

    WordPress use page which should be unique and have unique names.

    For more information, read here.

    Pulse North
    Participant

    Hi,

    I recently put together a site that uses Buddypress as a social area for users similar to Facebook. However, when a user posts within a group the post disappears upon refreshing the page, all that displays is “Sorry, there was no activity found. Please try a different filter.” I think this may be a theme conflict as when I revert the theme to TwentyFifteen it shows the posts, but am unsure how to resolve this, can anyone assist?

Viewing 25 results - 5,826 through 5,850 (of 32,560 total)
Skip to toolbar