Search Results for 'wordpress'
-
AuthorSearch Results
-
March 14, 2013 at 5:08 pm #156390
Hugo Ashmore
ParticipantIt will be as stable releases always are but obviously it’s presently only at beta 2 stage so users can test out and provide feedback!
March 14, 2013 at 2:57 pm #156378In reply to: Need a good ads manager Plugin paid or free
Sudeep Acharya
ParticipantMarch 14, 2013 at 12:31 pm #156369In reply to: Admin bar modification
danbpfr
Participanthi @panoravu,
for css styling, be inspired by this: http://www.php-ease.com/code/wordpress-style-admin-bar.html
If you want to code something into the Toolbar, you have to play with the wp_admin_bar filter.
The function goes then to your theme functions.php
Based ons omething like this
function my_function( $wp_admin_bar )
{
/* what you need here */}
add_filter( ‘admin_bar_menu’, ‘my_function’ );Google around to find many answers about the WP Toolbar, like this one:
http://technerdia.com/1140_wordpress-admin-bar.htmlMarch 14, 2013 at 5:06 am #156340In reply to: Is this a buddypress bug?
modemlooper
Moderatorposted a ticket https://buddypress.trac.wordpress.org/ticket/4877
March 14, 2013 at 12:47 am #156332In reply to: [Resolved] How to detect use is on a bp page
danbpfr
Participantif you’re working on 1.7 consider here: http://bpdevel.wordpress.com/tag/bp_user_query/
March 14, 2013 at 12:25 am #156328In reply to: BP 1.3.4 default theme css questions
danbpfr
Participanthi @p2ab,
on BP 1.6.x, a child theme contains at first only one file: style.css
The only thing to add in are comment tags.
/**
* Theme Name: what you want
* Description: what you want
* Version: what you want
* Author: what you want
* Template: bp-default (this is very important: it’s the name of the parenttheme)
* Tags: blue, buddypress, two-columns, white…. (what you want)
**/default.css is the buddypress main css file and you don’t have to copy it to your child theme.
Also, you have nothing to import ! This is optionnal and not necessary.
Just use the same ID and class names of the parts you want to customize and do your css modifications.
Remeber also that in a few weeks, BP 1.7 will be avaible and will let you use any existing WP theme with the opportunity to spare some long tweaking to recreate the wheel. Perhaps.
https://codex.buddypress.org/legacy/building-a-buddypress-child-theme/building-a-buddypress-child-theme-for-bp-1-2/
https://codex.wordpress.org/Child_ThemesMarch 13, 2013 at 11:28 pm #156321In reply to: Install failure with large user base
danbpfr
Participantyou could also use this plugin before exporting your DB:
March 13, 2013 at 10:13 pm #156313In reply to: Activity post time incorrect under Ajax
shanebp
ModeratorI believe your report is covered by:
https://buddypress.trac.wordpress.org/ticket/4573It’s a gremlin that doesn’t appear for most installs.
It’s been reported in various guises for quite awhile.
I was hoping that forcing a value into gmt_offset would solve it for you. :{March 13, 2013 at 4:39 pm #156289In reply to: How to ensure my blog doesn't send my traffic away?
@mercime
Participantability to selectively take posts from sub-sites and repost to the main blog
@ubernaut Didn’t need that feature. It was automatic posting to main site/site of choice from all subsites. I install it, configure it a little, that’s that. For what you want, check out https://wordpress.org/extend/plugins/threewp-broadcast/screenshots/March 13, 2013 at 3:49 pm #156286In reply to: Video: BuddyPress 1.7 Overview
Nate
Participantany word on when this will be available to update via WordPress? dashboard isn’t prompting me … (yet)
March 13, 2013 at 3:24 pm #156283In reply to: How to ensure my blog doesn't send my traffic away?
Ben Hansen
Participant@mercime i was looking at that plugin recently because this other one:
https://wordpress.org/extend/plugins/network-shared-posts/
doesn’t work anymore looking to have the ability to selectively take posts from sub-sites and repost to the main blog would the plugin you mentioned allow me to achieve that you think or am I’m DYI territory here you think? thanks!
March 13, 2013 at 3:21 pm #156282In reply to: Install failure with large user base
emeraldryan
Participant@hnla I suspected that this was probably a WP-Engine issue and that there wouldn’t be much you guys could do. I came here out of hope rather than expectation in case someone on here had experienced a similar issue and had some tips or advice.
With regards to the number of users there are a large number of fake/spam user accounts (I estimate 10,000+) that were registered on older versions of WordPress/bbPress before we upgraded and switched to CloudFlare and WP-Engine which has reduced spam considerably. We have also gradually been deleting obvious fakes but as you can appreciate this is a laborious task.
WP-Engine have refused to temporarily increase the resource limits to see if that enables the BuddyPress installation to complete. At this point I think I’ll try downloading a copy of the site and see if I can run the BuddyPress install on a local LAMP/WAMP setup and allocate 1GB+ to PHP memory.
March 13, 2013 at 2:13 pm #156270In reply to: Install failure with large user base
emeraldryan
Participant@hnla This was my advice from WP-Engine:
After extensive testing on the staging site to determine what is causing the errors when activating BuddyPress, I was able to rule out a conflict with all other plugins (including our own) as well as conflict with your theme.
The problem is that your site has almost 38,000 users. I was able to prove this by deleting all users except the “admin” and “wpengine” user from the staging site. Then, I installed and attempted to activate BuddyPress. This time it activated with no error in less than 10 seconds.
I recommend removing users from your WordPress site if possible. If not, then you should contact BuddyPress support to determine how to activate BuddyPress with so many users.
@mercime I’m reluctant to move host (unless I find another host that can guarantee a solution) as WP-Engine are normally quite good and I recommend them to most of my clients. Their advice was to come here for support on this particular issue.March 13, 2013 at 8:49 am #156200In reply to: Edit Profile Link Leads to Blank Page
garethmartin
Participantfrom the previous version of wordpress to WordPress 3.5.1. – i didn’t upgrade buddypress as i had made some modifications to the layout. Everything else works bar the avatar upload/change. When this is changed there is a blank page and hang type behaviour. I’ve tried various permetations of permissions but with no success.
March 13, 2013 at 8:49 am #156199In reply to: Disable Activation Email
Rocio Valdivia
ParticipantHi!
If somebody still need to disable activation email, the following function works fine for me:
`
// Change the text on the signup page
add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );function my_disable_activation( $user, $user_email, $key, $meta = ” ) {
// Activate the user
bp_core_activate_signup( $key );// Return false so no email sent
return false;
}
add_filter( ‘wpmu_signup_user_notification’, ‘my_disable_activation’, 10, 4 );
remove_filter( ‘wpmu_signup_blog_notification’, ‘bp_core_activation_signup_blog_notification’, 1, 7 );
add_filter( ‘wpmu_signup_blog_notification’, ‘__return_false’ );
`Thanks to @cnorris23 for it! https://buddypress.trac.wordpress.org/ticket/3443
Hope it helps to someone 🙂
March 13, 2013 at 6:46 am #156188In reply to: BuddyPress Alignment with custom theme
@mercime
Participanta member login menu that would take the registered users to a login form similar to the form on the sidebar. Hope that makes sense.
@bookee you can create a page template with only the login form code you copied then go to Pages > Add New, add Page Title e.g. Join Us, then use the page template with the login form you created. Or, you might want to try out pcwriter’s tutorial http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/March 13, 2013 at 2:06 am #156171In reply to: How to ensure my blog doesn't send my traffic away?
@mercime
Participanthow do I make it so that when they click the title to read more that they go to the blog on my site NOT the members site?
That’s the default behavior. You need to install a plugin to do what you posted. I used the WordPress MU Sitewide Tags Pages. Do read the Other Notes of the plugin. It’s not been updated for 3.5.1 but it’s still working in my installation. If you find issues with the plugin, do post at https://wordpress.org/support/plugin/wordpress-mu-sitewide-tags
March 13, 2013 at 1:21 am #156167In reply to: Edit Profile Link Leads to Blank Page
@mercime
Participant@garethmartin when you upgraded WordPress (from what version to latest?), did you upgrade BuddyPress as well? Did you check if your theme is compatible with WP/BP versions?
March 13, 2013 at 1:15 am #156165In reply to: Admin bar modification
@mercime
Participant@panoravu check out the https://wordpress.org/extend/plugins/mp6/ for upcoming WP 3.6 though 🙂
March 12, 2013 at 8:50 pm #156144In reply to: BP Member Notes – beta
shanebp
ModeratorNow in the repo:
https://wordpress.org/extend/plugins/bp-member-notes/March 12, 2013 at 4:47 pm #156127danbpfr
Participanthi @boiy
you have to code this yourself or hire a dev to do it for you.
maybe this plugin can inspire you https://wordpress.org/extend/plugins/word-linker/
or this older one https://wordpress.org/extend/plugins/buddypress-group-topic-tags/
March 12, 2013 at 7:19 am #156105Shahzaib Sabir
Participantoopss the user(subscriber) could not post anything, even could not update his status by applying this code. Is there any alternative solution? i do not want to try plugins. plz.
`function restrict_admin(){
//if Subscriber or low, kill WordPress execution and provide a message
if ( ! current_user_can( ‘edit_posts’ ) ) {
wp_die( __(‘You are not allowed to access this part of the site’) );
}
}
add_action( ‘admin_init’, ‘restrict_admin’, 1 );`March 12, 2013 at 12:47 am #156097In reply to: My BuddyPress Hosting Recommendation
Ben Hansen
Participantwell it’s an interesting post but it is contrary to my own personal experience with WP Engine i signed up right about the time he gave up. I would note the fact that he states that the CEO issued personal apology and reimbursement for the migration issue, thats seems like at least they took the issue seriously at some point. Also way he closes the post “Where I am today Back at Linode, back to running it myself.” This is exactly the reason it makes sense for people along a spectrum of technical expertise not just novices. Granted the WP managed hosts are not without their drawbacks and even WPE has some quirks that take a little getting used to.
WP Engine is the only company that provides both phone support and specialized wp hosting as far i know. The entire system is built from the ground up only to host WP sites. I cannot tell you how valuable it is when you call into support and you don’t have to explain how wordpress works or what buddypress is every time you are trying to get to the bottom of something. It is also the only hosting company i know that Automattic is financially involved in, to me that means something, i suspect it also means something to WPE.
In my experience the notion of a perfect host is a canard, what may be a great host today could be horrendous two years from now, but WPE aside from any deal killing kind of quirks is the best platform you could be hosted on aside from wordpress vip unless you truly can afford to do everything yourself.
March 11, 2013 at 6:53 pm #156077In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
Participantsingle.php
/**
* @package WordPress
* @subpackage Constructor
*/
// requeried comments
wp_enqueue_script( ‘comment-reply’ );// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘single’);// load footer.php
get_footer();Just a note:
open and close php are removed as I think that is causing the entire file to not show up…March 11, 2013 at 6:51 pm #156076In reply to: [Resolved] BuddyPress and Constructor theme
randerson1228
Participanthmm… dont know where they go to…
index.php…
/**
* @package WordPress
* @subpackage constructor
*/
// Stupid Parser This is Theme support the Gravatar Service
// get_avatar();// load header.php
get_header();// load one of layout pages (layouts/*.php) based on settings
get_constructor_layout(‘index’);// load footer.php
get_footer(); -
AuthorSearch Results