Search Results for 'questions'
-
Search Results
-
hey im not a code learned guy..intending to built a community basically a finance aspirant from india..anyways concern is –
1. i want a twitter style login page with background pic, some headers/footers as links, login n registration form .
2.want to use frisco theme but without search box.
3.remove wp-admin, wp-login, etcpls guide me..best option can be some plugins for easy work.. if code is some sort of answers teach me like a for apple style .please
I’m finding the Group Extension API on the Codex to be very helpful.
I do have a couple of questions, though.
- Should ‘nav_item_name’ be translatable, like
'nav_item_name' => __( 'label_name', 'handle'); - Can ‘enable_nav_item’ be conditional? Would a check like this work? (Is the group extension called at the right time to perform these kinds of checks?)
//Only show the navigation tab if this group has the plugin enabled $show_nav_item = ( plugin_is_enabled( bp_get_current_group_id() ) ) ? true : false; function __construct() { $args = array( 'enable_nav_item' => $show_nav_item, ); parent::init( $args ); }
Thanks for your help,
-David
Topic: Username confusion
I’m finding that quite a few members are getting confused by the registration process of Username and Name under “Profile Details”. Does anyone have a reg page which simply asks for “First and Last Name” (Like Facebook) and creates a User profile of “First” + Last Name”?
My other questions are:
1) Does this simplify the reg process?
2) Do people have an issue with using real names? (e.g. privacy etc)
3) Is there a plugin that can overwrite the normal reg process to do this>Thanks!
Hi,
I;ve copied all my Buddypress template files back to my theme as per the documentation at http://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/. Thats great as i konw have full control over all these templates.
I’ve 2 questions ..
1) Is there some default CSS i can get anywhere just to style up my community in a default way as i’ve no styles currently set in my theme for BuddyPress?
2) In BuddyPress settings, i see you designate pages to the following BuddyPress main pages ..
http://mysite.com/activity/
http://mysite.com/groups/
http://mysite.com/members/
http://mysite.com/register/
http://mysite.com/activate/My theme is built around shortcodes and i don’t really like the way this works. My editor uses shortcodes to allow the user to have full flexibily on what appears on a page. Is there a way to override this? IF you don’t set the above pages in BuddyPress settings and just use your own logic for navigation, can i use shortcodes to achieve all of this? I see there’s a plugin i can use for generating all BuddyPress shortcodes at http://bp-tricks.com/featured/buddypress-shortcodes-plugin/ – is this a full set to mimic? What then happens to the links in the users profile?
Thanks for your help in advance
Topic: What is going on?!
No on here seems to answer my questions. I was working on a child theme and a video said to delete BP default file. So I did. That was wrong. To get BP default file back I deactivated and deleted BuddyPress, Reinstalled it and reactivated it. Now my site is completely white and none of the previous design (header, background) is there. What do I do now?
1.I want to translate English to Chinese, but I cannot find “Sitewide Activity” on domain/activity in the poedit profiles. Where can I edit it?
2.When I open the buddypress page,the title is as “Website NameActivity Streams Directory| ” “Website Nameadmin|Extended Profiles|”. How could I add “|” between website name and buddypress page names?
3.When I upload a new avatar, it will creat two images in wp-content/uploads/avatars/X(X is the ID).One is “XXXXXX_bpfull.jpg” and another is “XXXXXX_bpthumb.jpg”. You know that “get_avatar” code just transfer the “XXXXXX_bpthumb.jpg”, so the images are too small. Where and how can I edit it?
Thank you! - Should ‘nav_item_name’ be translatable, like