Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 17,626 through 17,650 (of 32,678 total)
  • Author
    Search Results
  • #137284
    Gyoo
    Member

    Just before I read this, I changed my theme to the final one I’ll use (Arras Theme with the Classical Gamer child theme : http://arrastheme.com/ )
    Your second solution worked well, but now I have an empty bar as wide as the admin bar just under the real admin bar, here is a pic :
    http://puu.sh/IhLa
    It’s just the top of the page, I think it’s clear enough :)

    In any way, thank you for your solutions and explanations. I can’t wait for BP 1.6, I may even test the 1.6 beta to see how it’s integrated, I’m very interested by this :)

    #137281
    @mercime
    Participant

    @sobuddy you just add the WP template tag to show the time https://codex.wordpress.org/Template_Tags/the_time e.g. “

    #137256
    danbpfr
    Participant

    Hello,

    for 1.5.x versions of BP you can add this piece of code in your wp-config.php
    `define( ‘BP_USE_WP_ADMIN_BAR’, true );`
    or add these function to your theme functions.php file if the above doesn’t work.
    `function remove_bp_adminbar(){
    remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );
    remove_action( ‘admin_footer’, ‘bp_core_admin_bar’);
    show_admin_bar(true);
    }
    add_action(‘after_setup_theme’,’remove_bp_adminbar’);
    ?>`

    or you may wait for BP 1.6 where BP’s adminbar will be integrated in WP’s one.

    willroy
    Member

    Hi, the standard permalink structure is:

    site.com/groups/uk-chess-group

    But I would like to achieve

    site.com/uk-chess-group-g9

    (Where 9 is the id for the group)

    I can do this with a standard WordPress install using $wp_rewrite->add_rule and $wp_rewrite->add_permastruct along with hooking into the post_type_link filter.

    Can anyone suggest a way achieving this with a BP install?

    #137236
    Tammie Lister
    Moderator

    The default theme uses https://codex.wordpress.org/Function_Reference/get_the_date so that would be a good spot for starting to modify that. It uses your set date and time format in WordPress under settings so you can modify that there and it will reflect on the theme.

    “Default: the date_format option (‘Date Format’ on Settings > General panel)”

    #137229
    Gyoo
    Member

    I read everything but haven’t found a clue…
    Any help please ?

    #30442

    Wordpress 3.4.1 BP 1.5.6

    My BP doesn´t show anything

    I´m logged with my account in my website,
    when I try access to my profile or any page of BP,
    the page is just empty, in blank.

    I don´t know why.

    Could you help me?

    #30432
    MaTaX91
    Member

    This is a fresh install of the latest wordpress 3.4.1 and latest buddypress 1.5.6

    After hitting the “Activate” button I get this at the top of the page…

    https://docs.google.com/file/d/0B-eKT0Z_vxfHNWlZb0ZyeDdBcVk/edit

    Never had this problem before

    John Peden
    Member

    Running WordPress MS 3.4.1 and BuddyPress 1.5.6 with a child theme of BuddyBoss, when users access their profile pages they can edit their information and hit save. This is written to the database but doesn’t show on the edit profile page or on the public profile page (the public profile page is totally empty of profile content).

    I’ve tried disabling all plugins, reinstalling BuddyPress, loading the members/single folder from the default BuddyPress theme, activating the default BuddyPress theme and am even experiencing the exact same problem on another site on another domain. The only thing that I think it could be (because I haven’t changed it) is my table prefix which is not set to wp_ or bp_ but rather a random sequence of letters and numbers. Obviously this is configured in wp-config accordingly and the rest of the site works just fine, it is simply public profile content that doesn’t display.

    Googling this error makes it look like a bug in BuddyPress that has existed for some time. What causes it and how can it be fixed? Will it be fixed in future upgrades?

    kultiko
    Member

    Hi!

    I’ve installed Buddypress 1.5.6 running on a WordPress 3.4.0 (not MU).
    Further installed Plugins:
    -s2Member Pro
    -BuddyPress Private Community
    -BuddyPress Profile Privacy
    -BuddyPress Album
    -EventManager

    This should be all plugins which have influence on BuddyPress.

    My Problem now is everything works fine except the private messages. I can send them to my friends but when i try to answer them following Error-Message occurs: “Es trat ein Fehler auf beim Senden der Antwort. Bitte versuchen Sie es noch einmal.” Translated: “An error occured while sending the answer – please try again later.”

    When i write a new message to the user it works perfectly but answering the private message just won’t work. I think there is a problem with the automatic recipient identification but i failed to find the error. Searching the web i found no similar problem so i hope you guys can help.

    #137203
    angslycke
    Participant

    I’m also looking for a solution to this problem, which seems to involve a lot of different plugins and tweaking as you said. Haven’t heard anything about this being a part of BuddyPress core anytime in the near future unforunately. It should probably be a part of WordPress core in that case since BP uses WP:s user functions.

    #30424
    Wakkas
    Member

    Hi,
    I want to know that is there any functionality in buddy press that allows user to post on other users profile.
    I know user can comment on other users activities and can send them messages(public, private) but i want to allow users to post directly to other users wall. Please help me on this…

    I am using WordPress 3.4.1 and BuddyPress 1.5.6

    #137192
    Gyoo
    Member

    @mercime Thank you for your answer, but by reading what you linked me, I noticed that I was totally wrong on the words I used : I wasn’t talking about the “widget sidebar”, but of the “admin bar” that is on top of the page. On buddypress’ website, I see the WP admin bar, and that’s what I want to have on my own site.
    Then, the answer may be in what you linked, I’ll re-read it to see if I find an answer, but even if I mentioned the Admired theme, I think I’ll get the same “trouble” with any theme (I hope I’ll be understood XD)

    #137189
    @mercime
    Participant
    #137179
    @mercime
    Participant

    @jomjom No wonder the instructions for compatibility for instyle theme last year was not working for you, the code from instyle’s page.php from last year has changed a lot (see http://pastebin.com/1PcjiXK9 from original poster)

    Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your instyle theme folder in server during the compatibility process.

    Since you’ve revised the BP template files, replace all of them for a clean slate by deleting the 6 BP folders transferred to your theme’s folder in server during the compatibility process -> /activity, /blogs, /forums, /groups, /members, and /registration – then re-run dashboard Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <?php if (get_option('instyle_integration_single_top') ” && get_option(‘instyle_integrate_singletop_enable’) == ‘on’) echo(get_option(‘instyle_integration_single_top’)); ?>

    `

    Save files.

    #30418
    raminjan
    Participant

    Okay I hope this is the right place for this post. Anyways I am located in Denver, Colorado and I was just wondering to know if anyone knows anybody or is somebody with good knowledge of buddypress, wordpress, php and everything else who can partner up with me on my project and in return I would let them have the ownership of certain percentage of my rights in my web designing project. this website is going to be a social network but I need someone with the required knowledge, live in Colorado and is serious.

    my email is raminrahim@hotmail.com

    please contact me if the above description is YOU.

    EyeMagicGraphics
    Participant

    When logged out, I see my site name, followed by “Login”, “Sign Up”, and on the far right, “Visit”. The “Visit” shows the white down arrow indicating a submenu, but when I hover, nothing happens. Clicking “Visit” reloads the page (“#”). When logged in, the menu changes to “My Account”, “Dashboard”, “Notifications”, as well as the “Visit” menu on the far right. They too have down arrows, but again nothing happens on hover (i.e. no submenu). At first, I thought it was a CSS problem, but I’m not sure which CSS file???

    Activated Plugins: (All up to date as of this post)
    Akismet
    BuddyPress (Version 1.5.6)
    BuddyPress Template Pack
    Contact Form 7
    Custom Meta
    Dynamic Widgets
    Flickr Thumbnail Photostream
    Jetpack by WordPress.com
    Ninja Pages, Categories, and Tags
    s2Member® Framework
    WP-PageNavi
    WP Show IDs

    I’m going crazy looking… Any help or guidance is greatly appreciated!

    #137167

    In reply to: front page

    Tammie Lister
    Moderator

    You can do a user check in the template file if you want using this: https://codex.wordpress.org/Function_Reference/is_user_logged_in

    Maybe that would be a good starting point for you?

    Adding a sidebar would require you to change the width of the content div and then also add in another get_sidebar call. https://buddypress.org/community/groups/creating-extending/forum/topic/buddypress-default-theme-12-add-more-sidebar-column/ is a good starting point.

    As for changing the header – do you just want to change the header or the entire content area as it’s set to the full width of the site?

    #137156
    Roger Coathup
    Participant

    I take it you used a developer to develop the code to auto generate the usernames from the email address… what does the developer say about this problem?

    On the face of it, it looks like they are applying some hashing algorithm to the email address to generate the username.

    Love it or like it, you should be aware that usernames in addition to email addresses are a fairly fundamental feature of WordPress — attempting to bypass the need for both can lead to issues, e.g. using a raw email address for username, would lead to strange urls for the member profile pages in BuddyPress.

    Dutchman
    Participant

    I have a problem with my Avatars not showing up on either profile and groups. Gravatar works, but when trying to upload a custom image an Avatar it is not shown.

    Even tried on a fresh install of WordPress with MultiSite enabled. Then only a new install of Buddypress and no other plugins activated. Scenario:

    Go to my profile, change Avatar, upload new image, crop (works fine) then get the message:
    Your new avatar was uploaded successfully!
    BUT – nothing happens. No new image is shown. And with debug enabled I get the error:
    Notice: Undefined variable: src_file in /home/topmodel/public_html/wp-admin/includes/image.php on line 67
    Notice: Undefined variable: src_file in /home/topmodel/public_html/wp-admin/includes/image.php on line 67

    When checking wp-content/uploads/avatars, the images are there!
    I tried all kinds of thing, like: terminate Cpanel account and started all fresh with default settings and only 1 plugin activated: Buddypress. Still same problem.

    Anybody some advice?

    tibbles
    Member

    On the nav bar at the top it does show login and register, which is what I want – and it works with good security and user options. BUT On the right Sidebar it also shows a register at the top – above all of my 7 text widgets. I don’t want this ‘register business’ in the right Sidebar, but I want to KEEP my right Sidebar with all my text widgets..

    SETUP
    ======
    Own domain installation: http://www.tibbles.co.za
    Webhosted by: Hetzner
    Root installation
    ========================
    Wordpress 3.4 | Theme is using default bbPress styling. | You are using bbPress 2.0.3.
    =====================================================================
    Widgets: 7 text widgets on Right SideBar
    =======================================
    Plugins:


    BPPress 2.03 | PB Profile Video 0.21 | BP Unread Posts 0.80 | BuddyPress 1.56
    BPress Activity Plus 1.4.1 | BPress Extend Widgets 1.0 | BPress Humanity 1.2
    PPress Multi-Group Remove 1.0 | BPress MyMood 1.4 | PBress Portfolio 1.0
    Configure SMTP 3.1 | Delete Pending Comments 0.2.1.1 | Fast Secure Contact Form 3.1.5.4
    Google XML Sitemap 3.2.7 | Image Scroller FX 0.1.2 | Page Lists Plus 1.1.8
    PS Disable Auto Formatting 1.0.8 | Share This 5.0.1 | SI Captcha Anti Spam 2.7.5
    Simple Pull Quote 1.2 | Sitewide Newsletters 0.4 | TypeKit 1.2.3
    Ultimate TinyMCE 2.6 | WPress Database Backup 2.2.3 | WPress Hit Counter 2.6

    Thank you very, very much.

    #30404
    Gyoo
    Member

    Hello,

    I just installed BuddyPress into a local website to make some tests with it.
    It works pretty well with a random theme I’ve chosen (Admired, for those who knows it), but one thing disturbs me a bit.
    The sidebar has been changed to the BuddyPress one, but I want to keep the WP one that I find more beautiful and on which I want (almost need) to put extensions. It looks possible, as it’s what is used here :) But there’s no way I can find how to do that…

    I tried to search a bit, but I found nothing corresponding to my problem. Sorry if the post was too hidden for me :(

    Cheers,
    Gyoo.

    PS : lots of questions

    1. Which version of WordPress are you running? Last stable version
    2. Did you install WordPress as a directory or subdomain install? Directory
    3. If a directory install, is it in root or in a subdirectory? subdir
    4. Did you upgrade from a previous version of WordPress? If so, from which version? No
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? Yes
    6. Which version of BP are you running? Last stable (1.5.6 if I remember well)
    7. Did you upgraded from a previous version of BP? If so, from which version? No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? th0t’s quotes, Mingle Forum, Role Editor, Theme my Login
    9. Are you using the standard BuddyPress themes or customized themes? Custom theme (Admired)
    10. Have you modified the core files in any way? No
    11. Do you have any custom functions in bp-custom.php? No
    12. If running bbPress, which version? I use MingleForum
    13. Please provide a list of any errors in your server’s log files. This is not an error
    14. Which company provides your hosting? EasyPHP
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Windows

    #137139

    In reply to: Play around!

    Hugo Ashmore
    Participant

    @newpress why on earth have you posted this site here? This is a forum for Buddypress this app you are trying to promote is not even WordPress based, and thus entirely inappropriate to posts here, please do not do so again.

    If you do not want people messing around too much then really you should think about posting an admin loggin on a public forum. I feel you haven’t learnt much from the other post where you blindly downloaded a script and uploaded to your live site? If your Host is troubled then it is firmly your responsibility and you must think about that before leaving links like this.

    I am removing the link as not appropriate to this forum.

    #137123
    @mercime
    Participant

    @dailyblog https://wordpress.org/extend/plugins/gd-bbpress-attachments/ for bbPress 2.+ plugin aka Sitewide Forums.

    There’s no updated plugin for the BP Group Forums.

    @mercime
    Participant

    @lakhlu late as this may be … Based on the HTML structure of your theme, you need to change 16 template files within the 6 BP folders transferred to your collection theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with the following:
    `

    <div id="post-” >

    `

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `, AND move tag and title to above `

    `. Just watch out when you do this in the /activity/index.php page.

    Save files.

Viewing 25 results - 17,626 through 17,650 (of 32,678 total)
Skip to toolbar