-
pcwriter posted on the forum topic Privacy Component Compatinility with BuddyPress 1.2.8 in the group BuddyPress Privacy Component (BP Privacy, BP_Authz, or BPAz): 13 years, 5 months ago
@boonebgorges Bingo! That was a rather simple and straightforward fix. I used add_options_page instead… obviously removing the 1st param – bp-general-settings – ‘cuz it had no business being there anymore. The plugin options are now accessible under “Settings” in the main site 🙂 Now if I can just figure out why options set by the user […]
-
pcwriter posted on the forum topic Privacy Component Compatinility with BuddyPress 1.2.8 in the group BuddyPress Privacy Component (BP Privacy, BP_Authz, or BPAz): 13 years, 5 months ago
Thanks. Changing to network_admin_menu got the options settings to display properly under Network Admin. However, when trying to save those settings, I get redirected to http://example.com/wp-admin/network/options.php with the dreaded “Page not found” error message. Any ideas on this one? 🙁
-
pcwriter posted on the forum topic Would anyone use Video Chat and Buddypress? in the group Requests & Feedback: 13 years, 5 months ago
Have you seen this new plugin? Looks perfect 🙂
https://wordpress.org/extend/plugins/opentok-video-chat/ -
pcwriter posted on the forum topic CSS issue with Activity in the group How-To and Troubleshooting: 13 years, 5 months ago
Both will work.
One will shrink the comment box to accommodate the actual width of the avatar, the other will shrink the avatar to accommodate the actual margin of the comment box.
Use whichever you prefer.
-
pcwriter posted on the forum topic CSS issue with Activity in the group How-To and Troubleshooting: 13 years, 5 months ago
The problem doesn’t look like it’s the image; rather, there doesn’t seem to be a large enough margin to the left of the comment div. Look for the following in your theme’s style.css file:
div.activity-comments form div.ac-reply-content
Add this and adjust to taste:
margin-left:50px;
-
pcwriter posted on the forum topic Make Drop Down Menu Links Open in New Page in the group How-To and Troubleshooting: 13 years, 5 months ago
You’re welcome, glad things worked out 🙂
-
pcwriter posted on the forum topic Activity Page is messy and disjointed. in the group How-To and Troubleshooting: 13 years, 5 months ago
You’re welcome… and have fun 🙂
-
pcwriter posted on the forum topic Activity Page is messy and disjointed. in the group How-To and Troubleshooting: 13 years, 5 months ago
@Scotty501 Sometimes, themes seem to be missing a few essential style elements for Buddypress, but you can fix that. Open your Fishbook theme’s style.css file and scroll to line 966 where you’ll see the style rules for
ul.activity-list li
Add the following to make sure everything in each activity item sits snugly inside the container:display:inlin…
[Read more] -
pcwriter posted on the forum topic Make Drop Down Menu Links Open in New Page in the group How-To and Troubleshooting: 13 years, 5 months ago
@BrainiacWebDesigns This code would probably be a lot easier still. You don’t have to worry about any changes to your custom menus because it targets all external links in your main navigation, no matter where they may be in the menu. jQuery(document).ready(function($) { $(‘.sf-menu a:not():not():not()’).addClass(‘external’).attr({ target:…[Read more]
-
pcwriter posted on the forum topic Call to arms – Own your task in the group Requests & Feedback: 13 years, 5 months ago
+1 for the hook manager idea for a theme option. It would make adding custom features a lot simpler for many.
-
pcwriter posted on the forum topic Make Drop Down Menu Links Open in New Page in the group How-To and Troubleshooting: 13 years, 5 months ago
@BrainiacWebDesigns No, it’s not a simple edit on any specific page because those are links you’ve added to a WP Custom Menu. As they are stored in the database and called via the wp_nav_menu function, they won’t be visible in any file. But it looks like it can be done with jquery. 🙂 Assuming you want […]
-
pcwriter posted on the forum topic Centering a Photo in the group How-To and Troubleshooting: 13 years, 5 months ago
@BrainiacWebDesigns Do you still have a plugin activated that modifies wp-login.php? If so, deactivate it. Also check your theme’s main stylesheet to see if any styles are applied to div#login h1 a ‘cuz Firebug shows margins left & right:-90px If you can’t find anything, try adding the following to your theme’s stylesheet to override whatever’s…[Read more]
-
pcwriter posted on the forum topic Has Anyone Tried This Spammer-Blocking Plugin with Buddypress? in the group How-To and Troubleshooting: 13 years, 5 months ago
Gee, if that’s a service you offer, I’d be interested once I finally get my multisite project off the ground! 🙂
-
pcwriter posted on the forum topic No one can Join on my site in the group How-To and Troubleshooting: 13 years, 6 months ago
You’re welcome 🙂
-
pcwriter posted on the forum topic No one can Join on my site in the group How-To and Troubleshooting: 13 years, 6 months ago
It looks like registration is not enabled in your WordPress backend.
If you’re running WP single, go to “Settings” > “General” and check “Anyone can register”. On WP multisite, go to “Network Admin” > “Settings” and make your selection at “Registration Settings”.
-
pcwriter posted on the forum topic Newbie using Non-BP Compatible Theme – Desparately Needs Help in the group Add All Nav Links to BP Adminbar: 13 years, 6 months ago
@brainiacwebdesigns First make sure that “Hide admin bar for logged out users?” is set to “No” under “Buddypress” > “General Settings” in your dashboard. If you still can’t see the adminbar in your theme, make sure the call to wp_footer is present in your theme’s footer.php. If it’s not there, simply add it before the closing […]
-
pcwriter posted on the forum topic When you delete a member manually do all of their forum posts get deleted? in the group How-To and Troubleshooting: 13 years, 6 months ago
@djpaul
Thanks for reminding me of my favorite prayer: “Oh Lord, help me to keep my big mouth shut until I know what I am talking about.”@rossagrant
Sorry if I led you astray 🙁 -
pcwriter posted on the forum topic When you delete a member manually do all of their forum posts get deleted? in the group How-To and Troubleshooting: 13 years, 6 months ago
@rossagrant BP is a plugin that creates its own metadata and db tables to store that data. So, deleting a user via the WP backend simply removes the user from being associated with your site. But it does not delete BP metadata associated with that same user in the BP part of things. For all user […]
-
pcwriter posted on the forum topic Navigation HELP in the group Creating & Extending: 13 years, 6 months ago
Looks like you’ll have to contact the theme developer then to find out where the nav is, sorry can’t help more 🙁
-
pcwriter posted on the forum topic Navigation HELP in the group Creating & Extending: 13 years, 6 months ago
@jonobradley Well, looking at your site and their demo site with Firebug, you can see that the nav items are wrapped in a
tag that’s identified like so: ul id=”menu-nav” or ul class=”menu-item” That ul sits in a div identified like so: div id=”nav-row” or div class=”main-nav” The only other file that I can think […]
- Load More
@pcwriter
Active 1 month ago