-
modemlooper replied to the forum topic JJJ What is this you reference in your word camp video? in the group Creating & Extending 14 years, 2 months ago
Ok, so tried to move some code from core to create a custom component and nothing worked. Never got a page to create and not sure how to link it to template files.
For example: in bp-activity it has a file bp-activity-template.php […]
-
modemlooper replied to the forum topic I don't want anything about buddypress on home page in the group How-To and Troubleshooting 14 years, 2 months ago
Duplicate the file header.php to header2.php then call this header in the top of your page template. You can them remove the tabs and have a different header on the page
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
oh wait, silly me was showing you the groups loop.
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
-
modemlooper replied to the forum topic Is it possible to hide or remove activity in the main activity stream from certain groups while keep in the group How-To and Troubleshooting 14 years, 2 months ago
It works very similar to WP post loop.
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-groups-loop/
while ( bp_groups() ) : bp_the_group(); if(bp_get_group_name() != ‘MyGroup’ ) :
-
modemlooper replied to the forum topic JJJ What is this you reference in your word camp video? in the group Creating & Extending 14 years, 2 months ago
Should have looked first, man oh man the component code is so much cleaner. Well done, gents!
-
modemlooper replied to the forum topic Reserving usernames in the group How-To and Troubleshooting 14 years, 2 months ago
another thing you could try is just create the user accounts in the admin for the page slugs and then not login with them and it won’t activate those accounts
-
modemlooper replied to the forum topic BuddyPress Mobile for 1.5 needs testing in the group BuddyPress Mobile 14 years, 2 months ago
Please test and let me know how it goes.
-
modemlooper replied to the forum topic Reserving usernames in the group How-To and Troubleshooting 14 years, 2 months ago
-
modemlooper replied to the forum topic Reserving usernames in the group How-To and Troubleshooting 14 years, 2 months ago
there’s a plugin for that
-
modemlooper replied to the forum topic How to add fields to group creation with Group extension API (please read) in the group How-To and Troubleshooting 14 years, 2 months ago
To output extra info you need to create a function in your plugin file, for each saved info you need to get it, below is only retrieving one field. Then attach it to the header meta action:
`function extra_fields_output(){ […]
-
modemlooper replied to the forum topic How to edit a post in buddypress in the group How-To and Troubleshooting 14 years, 2 months ago
Neither Facebook, Twitter or Google+ allow yo to edit activity/ status updates. Seems like it’s the normal on the interwebs.
-
modemlooper started the forum topic JJJ What is this you reference in your word camp video? in the group Creating & Extending 14 years, 2 months ago
Can you explain more about this code? How to use it?
`class BP_Example_Component extends BP_Component {
function __construct(){
parent::start(
‘example’,
__(‘Example’, ‘buddypress’),
BP_PLUGIN_DIR
[…] -
modemlooper replied to the forum topic How to restrict users to child theme only in the group How-To and Troubleshooting 14 years, 2 months ago
This could be the issue not sure but to run BuddyPress you need to have a capable theme.
Are you running BuddyPress? I know its a silly question but people have posted on here before about WP issues.
-
modemlooper replied to the forum topic How to restrict users to child theme only in the group How-To and Troubleshooting 14 years, 3 months ago
yeah, I’m saying do not use the default themes that come with wordpress. Just to test. It shouldn’t matter but I think there have been problems with using default WP theme and children on MultiSite.
Is your 20 11 parent theme […]
-
modemlooper replied to the forum topic How to restrict users to child theme only in the group How-To and Troubleshooting 14 years, 3 months ago
also when you get a white page it could be a php coding error in your theme
-
modemlooper replied to the forum topic How to restrict users to child theme only in the group How-To and Troubleshooting 14 years, 3 months ago
Have you tried using a different parent theme, to test if it’s the child or 20 11? I haven’t used 20 11 for a parent but I think I read somewhere a problem with 20 11 as a parent.
-
modemlooper replied to the forum topic How to restrict users to child theme only in the group How-To and Troubleshooting 14 years, 3 months ago
Just to be sure, does the child theme have a different name and do you have => Template: twentyeleven in the style sheet header?
-
modemlooper replied to the forum topic How to add page without its tab appearing in nav in the group How-To and Troubleshooting 14 years, 3 months ago
You would need to edit the navigation code in header.php BUT in the next version of BuddyPress coming any day now it will use WP nav menus you can edit from the admin.
-
modemlooper replied to the forum topic How to edit a post in buddypress in the group How-To and Troubleshooting 14 years, 3 months ago
What post?
-
modemlooper replied to the forum topic How can I enforce BuddyPress to load profile rather than activity stream ? in the group How-To and Troubleshooting 14 years, 3 months ago
create a file bp-custom.php and add to /wp-content/plugins/bp-custom.php
add this code to file:
To change other settings read this page: https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
- Load More
@modemlooper
Active 3 months, 2 weeks ago