codegene
Forum Replies Created
-
Even i am having the same issue. W3TC has stopped caching and minifying my pages after updating yoast to the latest version(1.4.9). When i deactivated Yoast, W3TC works properly
bp_get_the_topic_title() is defined at /wp-content/plugins/buddypress/bp-forums/bp-forums-template.php at line 443. Check whether it is defined in the same way in your bp-forums-template.php. For example, earlier versions of buddypress used bp_is_member() for Members. Now it is replaced by bp_is_user. Also it will be better if you use bbpress plugin http://wordpress.org/plugins/bbpress/ for sitewide forums instead of buddypress group forums because buddypress groups forums is no longer available with buddypress 1.7.2. Only those who installed buddypress before it can continue to use it. They did it because bbpress site wide forums offers more features than one which was earlier included with buddypress. Also bbpress sitewide forums have good integration with Yoast WordPress SEO and Buddypress.
If you use bbpress plugin for sitewide forums then you can use the code which I mentioned above in my previous post in the following way.
if (bp_is_group() or bp_is_user() ){ $title = bp_get_current_group_name() . bp_get_displayed_user_fullname() .' - '. $this->get_default_title( $sep, $seplocation, $title_part ); }I have got Yoast WordPress SEO plugin work with Buddypress by making the following changes
@sevelina From where did you change seo title for member profile? Yoast does not have seo title options for buddypress. Could you describe more please?
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Black Hover Bar on Mobile DeviceI have figured out why the black bar is appearing on mobile device but i have not found the solution yet to remove it. When I change width of the page from 960 to a higher value in style.css , for example 1000, the black bar appears at the rightmost top or bottom on mobile devices
body.search-no-results div#container {
width: 1000px;Is there any way to remove it and still keep the width of the page 1000
As per theme documentation it is advised that you create functions-custom.php file in the main theme directory and paste your code there so that you do not lose the changes when the theme is updated.
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Modify Buddypress SearchThanks very much David! The issue is now resolved.
I solved the problem by editing bp_search_form_type_select()function in buddypress/bp-core/bp-core-template.php
I achieved it by placing the blog and posts code ahead of the members code for search bar.
Here is the modified code:
function bp_search_form_type_select() { $options = array(); if ( bp_is_active( 'blogs' ) && is_multisite() ) $options['blogs'] = __( 'Blogs', 'buddypress' ); $options['posts'] = __( 'Posts', 'buddypress' ); if ( bp_is_active( 'xprofile' ) ) $options['members'] = __( 'Members', 'buddypress' ); if ( bp_is_active( 'groups' ) ) $options['groups'] = __( 'Groups', 'buddypress' ); if ( bp_is_active( 'forums' ) && bp_forums_is_installed_correctly() && bp_forums_has_directory() ) $options['forums'] = __( 'Forums', 'buddypress' );Forum: Fixing WordPress
In reply to: Categories,Tags and Comments missing from Screen optionsThe problem is now resolved. The issue was that i was using a plugin called White Label CMS Settings to hide certain settings on post page from non-admins. I had included tags, categories and comments in that list.So i could see them but not others. When i installed slidedeck, it removed tags, categories and comments even for admin and replaced it with it’s own custom options. I deactivated slidedeck but categories,tags and comments did not appear. So i went to White Label CMS Settings and added back categories,tags and comments for all users and the issue was resolved. Hurray!
Forum: Themes and Templates
In reply to: [Frisco for BuddyPress] Making the archieve page show lessTo achieve this, make use of this tag in your post – <!–more–>
I too have the same problem. In plugins like Sharebar, if the screen resolution is below 1000px, the vertical bar disappears and a horizontal bar appears under the post title. In Social Slider, you can disable Social Slider for mobile browsers or you can remove it if the screen resolution falls down below certain limit. I hope the same option is available for Digg Digg in future. Personally I found that Digg Digg is the best plugin amongst all it’s competitors expect for the above mentioned problem.
Alternatively you can use this plugin to resend activation mails or you can also manually activate your members.
http://wordpress.org/extend/plugins/buddypress-pending-activations/
After you manually activate your members, your members will have to login once if they want to see their profile on the members page
Yes it is compatible with frisco. Using this plugin I get Live Update of Notification bar (http://buddydev.com/files/2011/04/admin-bar-notification-update.png) but I do not get Live Notification Message (http://buddydev.com/files/2011/04/buddypress-live-notification-300×97.png)
go to public_html > wp_content > plugins > buddypress >bp-themes > bp-default > single.php
I think you have to do it from bp-default because frisco is a child theme of buddypress default theme. However david is the best person to answer your doubts
The problem is with your ip address. Since you are using a shared host, the ip address may be listed as spam in the directory of yahoo and google. You can solve this problem by buying a dedicated ip from your host or by asking your hosting company to set up a google app for your website. In that case you can accesss your email id eg. info@website.com from gmail. Also the activation mail which is sent to your website members will be sent through google ip address. So your users will get the activation email on time since google ip is not listed as spam. I hope this solves your problem.
The same thing has happended with me. Social reading has suddenly disappeared