-
hnla posted on the forum topic Webspace or Server in the group Miscellaneous: 14 years, 6 months ago
Sounds like poor server config or just crowded shared hosting , you can optomise WP/BP but you aren’t really stretching it with those sorts of figures for activity.
If you can run to a VPS all the better then you can configure that to suit you and your site and have all it’s resources available.
-
hnla posted on the forum topic Help! – Problems with deactivating buddypress for an upgrade in the group How-To and Troubleshooting: 14 years, 6 months ago
Simple enough to try but you don’t overwrite these types of files ever always change it’s file name i.e turn it into a backup then upload another version, it’s a basic *nix principle.
-
hnla posted on the forum topic New theme – Buddypress UX in the group Creating & Extending: 14 years, 6 months ago
I agree and I attempted to limit the sub pages displayed when we restyled the bp-default dropdowns so one couldn’t nest a series of pages 20 deep as that is in a similar vein to too many top links, trouble is with a theme one can’t really dictate these matters that’s up to the user […]
-
hnla posted on the forum topic New theme – Buddypress UX in the group Creating & Extending: 14 years, 6 months ago
*puzzled* what does he mean??!! and he also pointed out that having a crap load of menus will kinda break the theme point out to him that a crap load of menus is the result of users adding pages and the way BP-default is coded, horizontal links are never wise with dynamic sites where you can […]
-
hnla posted on the forum topic How to change the layout of a certain group in the group How-To and Troubleshooting: 14 years, 6 months ago
Yes but it will be a little trickier than that as you’ll need to look at the various files that make up a page and what parts you want to allow to show and what new bits you want to write so you’ll likely need an else: in there somewhere to allow the normal page […]
-
hnla posted on the forum topic How to change the layout of a certain group in the group How-To and Troubleshooting: 14 years, 6 months ago
You can use if/else checks for group name using this:
if( bp_is_groups_component() && 'my-group-name' == bp_current_item() ):
Use it to wrap all your new markup in /groups/single/ group-header.php and various template files
-
hnla posted on the forum topic Admin Profile page in the group How-To and Troubleshooting: 14 years, 6 months ago
You could always edit the template files for /members/single/ (in a child theme) and wrap default actions in something like :
if( '1' == bp_displayed_user_id() )
As a check for the displayed user being ‘1’ or primary network super_admin then you’ll do stuff based on that such as unique markup for that user alone or […] -
hnla posted on the forum topic CSS Trick – How to style Activity Stream odd and even posts. in the group How-To and Troubleshooting: 14 years, 6 months ago
🙂 glad it’s working I was getting worried *happy days*
-
hnla posted on the forum topic buddypress support for thumbnail? in the group How-To and Troubleshooting: 14 years, 6 months ago
It’s a feature that went trough a name change or two, the option is on your create or edit Post view named as ‘Featured Image’ other than that what do you mean ‘is not showing up’
-
hnla posted on the forum topic Help! – Problems with deactivating buddypress for an upgrade in the group How-To and Troubleshooting: 14 years, 6 months ago
You are going to need to supply a little more detail on the events as there is too little to formulate much of an opinion on what is happening. Simply deactivating BP should not produce a server error- what server error? they are generally given error codes to narrow down what issue the server is […]
-
hnla posted on the forum topic styling invite anyone page in members/single in the group Invite Anyone: 14 years, 6 months ago
template file is /members/single/plugins.php
Much of the markup is in /by-email/by-email.php but it’s well formed semantic markup so shouldn’t need changing and you should be able to override styling easily enough in your child theme style.css file.
-
hnla posted on the forum topic BP body classes bp_get_the_body_class in the group Frontend development & Theming: 14 years, 6 months ago
concatenated selectors are always an option just tend to shy away from those out of habit I guess due to certain browsers historically getting their big girl knickers in a twist with anything so advanced or complex as chaining classes 🙂 I’m working exclusively on trunk as well so seeing what that profile/group link shows. […]
-
hnla started the forum topic do_actions? in the group Frontend development & Theming: 14 years, 6 months ago
Might be missing the point here but with do_actions I question where they occur and whether they are all necessary? Yes they can be moved around in the theme files quite easily, but it’s more a question the more there are the more problematic it becomes not knowing if they might be used and for […]
-
hnla started the forum topic BP body classes bp_get_the_body_class in the group Frontend development & Theming: 14 years, 6 months ago
Aide Memoir or food for thought BP adds various classes to the $wp_classes array to add to the body class. One of those added via the bp_get_the_body_class() function is ‘groups’ this I had proposed using to hook rules to the croups directory however the class ‘groups’ is also generated when in a profile/account page looking at […]
-
hnla posted on the forum topic Has anyone actually gotten BP to work ok? in the group Creating & Extending: 14 years, 6 months ago
‘stupid question’ is a little harsh! 🙂
-
hnla posted on the forum topic Blank page after install Buddypress 1.1.2 in the group Installing BuddyPress: 14 years, 6 months ago
Sarcasm ? ” sorry if I am messing up your cute little system here ” Just to emphasise what mercime has already covered this is a voluntary support forum this is an OS project if people choose to use the app then that is their choice there is absolutely no obligation on the part of anyone to […]
-
hnla posted on the forum topic Hmm, does anyone know how to get this view? in the group Installing BuddyPress: 14 years, 6 months ago
Thought it had already been done?
-
hnla posted on the forum topic Has anyone actually gotten BP to work ok? in the group Creating & Extending: 14 years, 6 months ago
@thoughtsandmore BP is not really an out of the box solution to create a successful community in functionality and look you have to put some work in, there are some grat examples of what can be done but they have had time spent on them and require a certain amount of skills with PHP and frontend […]
-
hnla posted on the forum topic How to force Author pages for members with (0) zero published posts? in the group How-To and Troubleshooting: 14 years, 6 months ago
Same principle then, wp_insert_post() creates either a post or a page along with any post/page meta required but you did refer to ‘pages’ however I’m likely not following exactly how this is all working.
-
hnla posted on the forum topic How to force Author pages for members with (0) zero published posts? in the group How-To and Troubleshooting: 14 years, 6 months ago
First port of call would be the WP codex function reference and a hunt for whatever functions exist for authors, somewhere there is code that is asking how many posts the user has authored? and if > 0 show something actually looking at author.php it queues the wp loop to be able to see if […]
- Load More
@hnla
Active 7 years, 3 months ago