Search Results for 'wordpress'
-
AuthorSearch Results
-
March 20, 2012 at 3:59 am #131657
In reply to: Member Role – allow member role to use a plugin
@ChrisClayton
ParticipantSo, you want to allow your ‘Subscriber’ role to access your backend to post ‘posts’, right?
Their are lots of wordpress plugins that will help (https://wordpress.org/extend/plugins/tags/roles) such as https://wordpress.org/extend/plugins/members/
yadigit
Participant@hnla
The website is hosted off of 1and1.com.
Using wp 3.3.1
and the newest BP ( not sure what version it’s at now )I used a program called netspark i believe,
( just had to reformat today to linux. Couldn’t stand Windows 7 >.< )
One I get the program installed, I will screen shot the reports of a BP site, and a some other social CMS ( elgg. )
The program pervades full details on why the passwords are being sent over https.
I will also contact other BP sites with their permission and test their site too and take a screen shot of the results.Don’t get me wrong, Buddypress is one of the BEST plugins for WordPress.
also, I will see if it has something to do with WordPress it’s self.The reason why im bringing this up is due to the fact that I installed Elgg on a different domain and the passwords were secure.
March 19, 2012 at 11:44 pm #131639In reply to: How to edit Activity item layout?
@mercime
Participant#1) – If the user clicks on the date of an activity item re a blog post, the user is brought to the single blog post .
– If the user clicks on the date of an activity item re a forum topic, the user is brought to the forum topic page
– If the user click clicks on the date of other activity items, the user is brought to members/single/activity/permalink.php page. You could add HTML structure just after get_header as well as just before get_footer.#2) You can tackle that by adding something this at the bottom of your stylesheet:
`div.activity-header p a.activity-time-since {
clear: left;
float: left;
margin-left: 15px;
margin-top: -30px;
}
.activity-inner > p:first-child {
margin-top: 20px;
word-wrap: break-word;
} `
Adjust to tasteMarch 19, 2012 at 6:34 pm #131617In reply to: Remove Members Tab on group pages and link
@mercime
Participant@locustfist To remove “Members” tab on Group Pages, per @boonebgorges BP 1.5 update: add the following to your theme’s functions.php
`function locustfist_remove_group_member_tab() {
bp_core_remove_subnav_item( bp_get_current_group_slug(), ‘members’ );
}
add_action( ‘bp_setup_nav’, ‘locustfist_remove_group_member_tab’, 15 );`To get rid of the member count of the Group Directory Page
– download groups-loop.php from here
– change line #61 from ` / ` to “ thereby removing the member count
– upload groups-loop.php to your server wp-content/themes/your-theme-folder/groups/groups-loop.phpMarch 19, 2012 at 4:40 pm #131611In reply to: [Resolved] Link to current user profile ”My Profile”
Paul Wong-Gibbs
KeymasterAdd to “nav”; is this.. a WordPress Menu? Something custom implemented in your theme? Hardcoded HTML in your template?
And which Dashboard link, where?
March 19, 2012 at 4:31 pm #131606In reply to: no uppercase letters in user names
Paul Wong-Gibbs
KeymasterBuddyPress was originally built for WPMU. For some reason, we’ve got a bunch of username registration code inside BuddyPress itself (we should let WordPress take care of that) — which was based on WPMU — which is why this restriction exists, even one single-site BuddyPress.
Keep an eye on https://buddypress.trac.wordpress.org/ticket/4057
March 19, 2012 at 3:12 pm #131602In reply to: ‘View’ page is blank
@mercime
ParticipantDownload copy of permalink.php from bottom of this page https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-themes/bp-default/members/single/activity/permalink.php
March 19, 2012 at 12:43 pm #131597In reply to: Possible to clone Extended Profiles, but for Groups?
BlinkyBill01
ParticipantThanks for the reply, @djpaul. The only thing I’ve seen recently was for something called BP Group-O-Matic but that seems only to assign groups to join for people that search for a topic.
Ok, I think I may have found it: https://wordpress.org/extend/plugins/buddypress-groups-extras/
That seems like it would be my next choice to use if I can’t find something exactly like Extended Profiles. While that allows the creation of more custom fields, it leaves the types of fields up to the user. I’m looking to be able to, as the admin, create the custom fields that are available to all groups, in the same fashion as the Extended Profiles custom fields.
I’ll look into this one a bit more.
March 19, 2012 at 8:06 am #131590In reply to: Very wierd long forum url – how to change that?
@mercime
ParticipantThe http://dethuletræ.dk/forums/forum/forum-2/ goes to 404 page. Did you previously create the additional category and topic from the backend or frontend?
Before anything else, to prevent the blank pages and 404’s on BP pages, you need to make your WordPress theme compatible with BuddyPress by installing and activating the BP Template Pack plugin then go through Appearance > BP Compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
March 18, 2012 at 11:54 pm #131576@mercime
Participant== as soon as I mad the site MultiSite, it still has the BuddyPress registration form, but the users aren’t being added to the main site as members, just the network membership. ==
That’s the default WP way when you go multisite even if BuddyPress is deactivated. To get assistance regarding this matter, you should post at Multisite forums https://wordpress.org/support/forum/multisite
March 18, 2012 at 11:39 pm #131574In reply to: Link author image to member profile
@mercime
ParticipantYou’d have to tweak your theme’s single.php, archive.php, index.php and/or loop.php and change regular WP author template tags to that of BP user template tags as seen in bp-default’s index.php, single.php and archive.php for example.
March 18, 2012 at 3:36 am #131548In reply to: Check this out: Twitter like BuddyPress Theme
@ChrisClayton
ParticipantSell me on it. What does your theme do that couldn’t be done with any of the hundreds of the free bootstrap themes and a quick click of a button using the template pack plugin? What value does it provide that i couldn’t get from a free theme?
Free WordPress bootstrap themes i could use.
rootstheme – http://rootstheme.com
wpbs – http://320press.com/wpbs/
+100 others+ https://wordpress.org/extend/plugins/bp-template-pack/
So, i ask again… What’s in it for me? What do i get for $10?
March 17, 2012 at 10:46 pm #131541In reply to: Change css on menu tabs
@mercime
ParticipantOverwrite styles from parent theme https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-themes/bp-default/_inc/css/default.css#L501 in your child theme
Firebug, a Firefox add-on, can help you inspect the element and change the style you need.
March 17, 2012 at 7:46 pm #131535@mercime
Participant>> , It shows a Blank Page for Register, Activity, Group… etc. How can i fix this?
To make your WP theme compatible with BuddyPress, you need to install and activate the BP Template Pack plugin, then go through BP Compatibility process https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
Also, go to dashboard BuddyPress > Pages and make sure that BP components are associated with “Pages” in that panel.
March 17, 2012 at 7:38 pm #131533March 17, 2012 at 12:12 pm #131522In reply to: Start up help for newbie plz!
Aron Prins
ParticipantInstall wordpress on your server.
Once done, hit the Plugins -> Add a Plugin tab and type in buddypress.Download and install and you’re good to go
March 17, 2012 at 7:06 am #131515In reply to: user activity share plugin for wordpress buddypress?
ashok g
Membercan any one help me plz?
suggest me a plugin to share content like images,videos within the site?
Thanks in Advance
March 17, 2012 at 4:28 am #131511In reply to: [Resolved] PHP includes in Buddypress pages.
aces
Participant“ ?
That is taken from @modemlooper‘s bp-columns which is a child theme of bp-default but with a second sidebar…
https://codex.wordpress.org/Function_Reference/locate_template
March 16, 2012 at 9:38 pm #131498aces
Participant@boonebgorges wrote the following recently http://wordpress.stackexchange.com/a/45682/7401 which seems relevant to your question…..
The article only mentions Networks + to enable multiple networks which is a premium plugin.
There is also a free plugin, by @johnjamesjacoby, to enable multiple networks https://wordpress.org/extend/plugins/wp-multi-network/ but that apparently is no longer compatible.
It has been patched ( http://alantait.net/2011/07/27/wp-multi-network-plugin-fix-for-wordpress/ ) and @johnjamesjacoby mentioned in the comments of that page ( 12/02/2012 ) that he planned to update it soon…
March 16, 2012 at 8:19 pm #131493@ChrisClayton
Participant@hatiro this is a known bug that is being worked on.
This ticket is the one they are currently using to track the issue if you have any additional information that may help them – https://buddypress.trac.wordpress.org/ticket/3908
March 16, 2012 at 3:56 pm #131484In reply to: I need Help on Arras WordPress Theme With BuddyPress
videogamerznet
Member@mercime first off sorry If I am doing anything wrong.
And what I got down was those plugins that you told me about and what happen to buddypress is this,
So I download the plugins and stick them on my site then all of the sudden, my slider on the site starts to show funny code things that I can’t find, the pages worked at that time and later, they didn’t work either making it seem odd. I began to play around and try to find the missing functions but I couldn’t find them. I tried plenty of things but it just wouldn’t work, Like I said every time I enable it the site has problems with those pages, I am only trying to figure out how and why these are happening. I don’t quite know what the functions are but I do know that something went wrong.
Site: videogamerznetwork.com (BuddyPress not active on this site right now)
March 16, 2012 at 3:52 pm #131483David Cavins
KeymasterA popular way to do this is with a plugin:
https://wordpress.org/extend/plugins/search.php?q=search+bbpressSome integrate the bbPress search with the WP search, some keep them separate; both ways make sense on different sites.
March 16, 2012 at 3:49 pm #131482In reply to: I need Help on Arras WordPress Theme With BuddyPress
@mercime
Participant@videogamerznet you should know that we are volunteers here living in different time zones just trying to help out.
– WP/BP versions? Linux or Windows hosting? Single WP or WP Multisite?
– What do you mean by “I think I got that down”? Can you write down the steps you made to install BuddyPress and BP Template Pack plus include information about the exact errors showing up and when, and what you mean by “things are collapsing” and “some pages won’t show up its crashing down”?
March 16, 2012 at 2:26 pm #131479In reply to: I need Help on Arras WordPress Theme With BuddyPress
videogamerznet
Member@mercime Read the post above for whats going on!
March 16, 2012 at 2:18 pm #131478In reply to: I need Help on Arras WordPress Theme With BuddyPress
videogamerznet
MemberI am still in a mess so I mean, I know a lot of coding but I still cant get it to work! I hope this is not to much but could anyone help me fix it? I have been trying hard and can’t find stuff!
-
AuthorSearch Results