Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,951 through 32,975 (of 94,540 total)
  • Author
    Search Results
  • #162363

    In reply to: Feedback = small rant

    WayneM1
    Participant

    I appreciate your response. I also appreciate that you personally have made a specific effort to help people find plugins that are up to date and work with BuddyPress – with your BuddyPlug plugin.

    However, your response is typical of what I’ve seen here before. It’s actually somewhat condescending – and that’s just as disappointing and frustrating as the reality of trying to get these products to work as hoped.

    The “It’s FREE!” response is lame. There are many free web products that are awesome – including all of those I just ranted about above. I’m not saying that the work being done here is not appreciated. I’m saying that I’m frustrated with the results I’m getting from this piecemeal approach to creating a website. If all of the pieces worked as advertised, integrated and up to date, I would be quite happy.

    I’m sorry that feedback – even in the form of a small rant – is so typically dismissed here. Based on all of what I have read in the forums here, I feel confident in saying that there are countless others who feel the same way as I do.

    Thanks so much for pointing out my options. Characterizing my post as useless is your prerogative. That’s too bad, as well.

    David Cavins
    Keymaster

    Hi Hugo-

    You just cleared something important up for me: The new file structure is not just a restructuring of where the files are, but also within the files themselves. (And the files in /buddypress/bp-templates/bp-legacy/buddypress/ are the new style. Are these the template files that theme compat uses, too?)

    Yes, I built this theme the old way, where you create a child theme of whatever (I used Twenty Twelve), then copied the templates and css over from bp-default into the child theme, then went to work. It’s not a child theme of bp-default (precisely, but more or less). The BP Template Pack took care of the JS with BP1.6.

    I’ve tried adding theme support and the js file, but as you mentioned earlier, it also needs ajax.php to do the work. (I don’t know how to make that happen.)

    Thanks,

    -David

    #162360
    bp-help
    Participant

    @chouf1
    Awesome work! Congratulations!

    Hugo Ashmore
    Participant

    Trying to make sense of what your process has been here as you shouldn’t be having issues.
    Going back up two posts if as you say you built originally for template pack or using template pack then when you tried to switch to 1.7 theme compat you should not have tried to move the existing folders/files into the theme compat folder structure, that will not work older bp-default templates and newer legacy ones are not the same new templates do not have head/footer elements.
    I think you need to continue on with BP as a child theme but probably with the add_theme_suport line added and then handle enqueueing / including the styles/js yourself.

    David Cavins
    Keymaster

    Hi Hugo-

    I came across this comment on trac that appeared to be in the wrong place but sounded similar to my problem: https://buddypress.trac.wordpress.org/ticket/4869#comment:17

    I’ve found that if I install Boone’s GitHub version of the template pack and only enable the JS file portion of it, it works (if my buddypress templates are back at the root of the theme, not in a buddypress folder).

    Is there a better way? (I’m also concerned that 1.7 is going to unexpectedly break a number of customized themes like mine.) What’s funny about this is that with 1.6 I used the template pack, then deactivated it while working with 1.7-beta, but it appears that I need it again.

    Thanks for your help,

    -David

    #162352
    WayneM1
    Participant

    I absolutely love the potential of WordPress / BuddyPress / bbpress ! ๐Ÿ™‚

    However, it seems I am continually frustrated by not being able to get the control and results that I want for my website. The core functions of all of these great products always need the use of another added plugin to accomplish this, or do that.

    But, you say “Plugins and modularity are awesome and flexible – we don’t want to bloat the core” etc. That’s all been debated to death.

    However, guess what happens when a great plugin that is necessary to the features that a website wants/needs no longer works? You know the answer to that… and it sucks.

    Seems like every time WP, BP, or bbpress has a core change, something breaks in a plugin somewhere, or the interaction between these products gets screwy.

    Just today I found a great plugin that I “need” to provide additional features to my site. It looks like it’s just the perfect plugin for my needs – but the developer has not updated it or responded to support topics in over 6 months – and so has issues that make impossible to use at this time.

    I’ve been biding my time for a couple years, waiting to move from a clunky old e107 website to a full on WP/BP/bbpress for my very busy website. I’m pretty damn good at WordPress now, and so when I go to do something that I think is going to work out to be great, and then run into a stumbling block at nearly every turn, it’s very frustrating ๐Ÿ™

    I don’t expect any of this to be perfect and easy out of the box. But…. this is just starting to feel pointless. I am seriously considering a more forum centric solution (SMF, phpBB, etc).

    What a shame.

    Unsal Korkmaz
    Participant

    This weeks question & answer:

    theme customize

    Question Summary: How to add custom css to all widgets?

    Solution: In our theme, you can target all widgets with article.widget. An example:

    article.widget {
    	background: #fff;
    	border-radius: 6px;
    	margin: 10px;
    	padding: 10px;
    	box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
    }
    
    Scott
    Participant

    I have the GroupBlogs plugin installed and have edited bp-core-avatars.php per the notes in order to get the avatar to display across blogs.
    http://wordpress.org/extend/plugins/bp-groupblog/other_notes/

    With the edit the avatars do show across blogs but also makes to so I cannot upload avatars anymore. I get to the change avatar screen, click browse, click upload image and it gives a document expired, no longer exists error.

    With the original code I am able to upload avatars but then they are broke across blogs. Anyone have any ideas? Thanks in advance.

    #162348
    valour
    Participant

    Found it – Buddypress Real names…

    David Cavins
    Keymaster

    Hi Hugo-

    Thanks for following up. The theme was built against BP1.6 & 1.7-beta, so the buddypress-related template folders (activity, blogs, groups, etc) were in the root of the theme. This resulted in the theme being rendered correctly, but, with BP1.7, the js support disappeared.

    I’ve moved the bp-related folders into a “buddypress” folder at the root of the theme (as described in your article: https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/). Moving the files causes the output to be garbled. For instance, on a single member’s profile page, a div#content is being created inside of the div#content provided in the main template `buddypress.js`, and, while the object-nav (activity, messages, etc) is being rendered, the header and the main content area aren’t being populated. Structurally, it’s like the entire buddypress output is being wrapped in the theme’s page template. But not completely, because the end of the file isn’t being rendered.

    As you can tell, I’m not exactly sure what’s going on. ๐Ÿ™‚

    Thanks again for your advice,

    -David

    #162344
    Deadartcore
    Participant

    Hello im using wordpress 3.5.1 and buddypress, im using wp favorites for my user profiles i have created a favorite box in each user’s profile to display their favorite posts around the website, but i cant seem to display each user’s total favorite posts i set the following

    but this seems to loop in each profile i mean for example in my profile it displays my fav posts fine but once i see the other user profile it shows my fav posts instead of his posts.

    so i hope someone can help me out ..

    #162343
    #162342
    #162339
    danbpfr
    Participant

    Thank you @charise

    #162336
    charise
    Participant

    Nice!

    #162335
    danbpfr
    Participant

    Hi all,

    i’m proud to announce that a new version ofย  bp-fr.net is out since a few hours.

    With the help of @imath (devs) and @mechanographik (design), we build a new theme to fit with some of the innovation introduced by BP 1.7

    • use of the WP Toolbar for main navigation
    • use of a sidebar widget for members and groups nav items from within “single item” page
    • google pretiffy integration into bbPress 2.3 for syntax highlighting when users publish code snippets
    • a members directory leading to some social profiles (Twitter, WordPress.org, BuddyPress.org, Github andFacebook

    Our new theme is based on BootstrapWP by Rachel Backer with a very original design and (hopefully) fully responsive fot the most popular mobile device of (things go so fast !) … the moment. ๐Ÿ˜‰

    After over 4 years of support in french language and BP Default demo, we want to go further with BP itself by building a french community of BP users, devs and designers.

    Questions and suggestions are welcome.

    Have fun by discovering our BPย  french touch !

    #162330
    anharmse
    Participant

    @bphelp

    thanks for your reaction! May I ask which forum you exactly mean? Is is one of the forums of buddypress? I cannot find any forum with this name.. or is it a different website?

    Thanks, Anne.

    #162328
    anharmse
    Participant

    @aces

    thanks for your reaction! Do you happen to have any idea how I can re-install buddypress? when I re-install (deactivate, remove, and then install again) the installation wizard won’t start again and I still see my ‘old’ settings and pages. I would like to re-install buddypress because it might not have been installed correcty, what means that re-installing perhaps could solve my problem.

    Thanks! Anne

    #162317

    In reply to: Ajaxifying buddypress

    Henry
    Member

    Activity comments currently use ajax. Perhaps you could take a look at how that works and use that as a starting point.

    #162313
    charlietech
    Participant

    I was looking for some help on an automatic load button in buddypress. when you get to the load button, it automatically load and generate some more feeds instead of you clicking it… just like a facebook.

    #162311
    namrons
    Participant

    I would like to build a buddypress community from scratch. Is there a way / plugin to ajaxify buddypress so that that new posts and comments load automatically without refreshing the page?

    #162309
    bp-help
    Participant

    @equinestaff
    I would contact the plugin author for this request since it deals with third party plugins and really has no bearing on the buddypress plugin.

    #162308
    equinestaff
    Participant

    I installed BuddyPress Custom Profile Menu as it worked great to add things to the buddypress profile menu, however it also takes over the normal menu which i want different. I’m using the WPMU Dixi and wondering how i can allow the menus to run separate? Thank you.

    #162298
    ndugger
    Participant

    Following this tutorial, I added in a text input field:
    http://codex.buddypress.org/how-to-edit-group-meta-tutorial/

    However, I am looking to add a file upload field. I am trying to get a similar feel as to the facebook cover photos, so I need the user to be able to upload a second photo. Any snippets or directions would be greatly appreciated.

    I tried simply changing the field to an input file type, but that obviously didn’t work.

    Thanks!

    valuser
    Participant

    I presume that you have set the plugin up in the BuddyPress—>Sharing panel on the left hand side of your dashboard screen ????

    (if multisite -network – dashboard)

Viewing 25 results - 32,951 through 32,975 (of 94,540 total)
Skip to toolbar