-
Hugo Ashmore replied to the topic [Resolved] registration page errors not being generated in safari / IE in the forum How-to & Troubleshooting 10 years ago
@johnnyjonjon
That’s a somewhat odd snippet of JS the theme has written, very generic in nature and definitely not normally something required unless under specific circumstances then one would expect to see a more specific and unique naming for the elements to avoid any notion of globalising a form submit to control via js.I think the issue…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] registration page errors not being generated in safari / IE in the forum How-to & Troubleshooting 10 years ago
That’s a somewhat odd snippet of JS the theme has written, very generic in nature and definitely not normally something required unless under specific circumstances then one would expect to see a more specific and unique naming for the elements to avoid any notion of globalising a form submit to control via js.
@johnnyjonjon
I think the issue here…[Read more] -
Hugo Ashmore replied to the topic WHY create a child theme? in the forum Creating & Extending 10 years, 1 month ago
But I donโt understand how BuddyPress understand that
It does because it’s written to understand that. WP knows what type of theme is in operation, a main parent ‘ template’ or a theme acknowledging another theme as the template source thus labelling it a child theme; WP provides that information to anything that cares to ask. BP performs a s…[Read more]
-
Hugo Ashmore replied to the topic Avatar not showing at all. in the forum How-to & Troubleshooting 10 years, 1 month ago
You show the link but no img elements for avatars at all.
You need to provide details of your setup, but also run some simple tests, is this a media upload issue, does your WP install correctly handle media (likely not the issue as one would expect default avatars) Is this a plugin issue? de-activate all but BP plugin establish if some other…[Read more] -
Hugo Ashmore replied to the topic [Resolved] Hide User ID from public view in the forum How-to & Troubleshooting 10 years, 1 month ago
There you go shanebp’s given you an easier option ๐
-
Hugo Ashmore replied to the topic BuddyPress directory structure in the forum Installing BuddyPress 10 years, 1 month ago
Is this an IIS server , almost pretty permalinks? url structures are odd, members seems to work activity and groups not.
-
Hugo Ashmore replied to the topic [Resolved] Hide User ID from public view in the forum How-to & Troubleshooting 10 years, 1 month ago
Implementing a user membership ID is a question for the plugin authors.
Hiding a WP user ID if you are going to display it is simple enough, wrap the display in a ‘if’ conditional that checks current_user_can(‘update_plugins’) or similar admin only capability (look them up on the WP codex)
You could also check what role the user has assigned…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Hide User ID from public view in the forum How-to & Troubleshooting 10 years, 1 month ago
Implementing a user membership ID is a question for the plugin authors.
Hiding a WP user ID if you are going to display it is simple enough, wrap the display in a ‘if’ conditional that checks current_user_can(‘update_plugins’) or similar admin only capability (look them up on the WP codex)
-
Hugo Ashmore replied to the topic makes site not clickable in the forum Showcase 10 years, 1 month ago
In switching theme though you had the answer this is a theme issue; as to what the issue might be with this Gantry theme is one can only speculate as there is insufficient information to debug and it’s a third party theme most of us probably are unfamiliar with.
The actual issue lies in the class ‘rt-container’ and it’s position:relative used in…[Read more]
-
Hugo Ashmore replied to the topic How can I insert the "(BuddyPress) Log In" widget into template? in the forum How-to & Troubleshooting 10 years, 1 month ago
? required field checking on what it’s a simple user/pass login both are required no
if the site templates header puts the document into full standards mode that html5 understands then you can use html5 form atts like ‘required=”required”‘
If you want an implementation of the BP login form but slightly extended you can grab mine on gitbub either…[Read more]
-
Hugo Ashmore replied to the topic How can I insert the "(BuddyPress) Log In" widget into template? in the forum How-to & Troubleshooting 10 years, 1 month ago
If you are going to modify a template to add a call to the_widget() function you might as well make it a dynamic_sidebar call, then you have a little more flexibility.
-
Hugo Ashmore replied to the topic How to 'hide' group creation steps ? in the forum How-to & Troubleshooting 10 years, 1 month ago
If you allow your users to create groups, they have to follow the 3 creation steps, because it is intended so in BuddyPress. Thinking that this might be to complicated, implies that you think that your users are not able to do this. Mabe youโre right, but maybe not.
About this i have worked with other plugins to tell more about groups, m…
-
Hugo Ashmore replied to the topic Customize Profile Tabs in the forum How-to & Troubleshooting 10 years, 1 month ago
What update are you after?
You say in OP that you are sure this is a 5min job! the two replies you received suggest not though! What you are asking is not straightforward, there is no non technical approach to this as Paul says maybe something will be built out but until then you would need to hook in to the BP menu functions and create custom…[Read more]
-
Hugo Ashmore replied to the topic each editing session of a post is published in activity stream in the forum How-to & Troubleshooting 10 years, 1 month ago
> I suggest you post this question over on the bbpress forum.
Yet you are posting on the buddypress help forum! ๐
This is a bbPress issue and there is a trac ticket and resolution over on bbp site, likely that will in the next bbp release.
You could apply the fix manually in the interim if you wished the trac ticket is located…[Read more]
-
Hugo Ashmore replied to the topic Overwriting a core function without modifying core files in the forum How-to & Troubleshooting 10 years, 1 month ago
Yep, but not sure if this is going to work, essentially you would need a function that passes in $user_name & $user_email then run your user_name checks as the bp function does but omitting the underscore check then pass those two variables into the $results array as bp does but the $user_name will be based on your checks with the $user_mail &…[Read more]
-
Hugo Ashmore replied to the topic Overwriting a core function without modifying core files in the forum How-to & Troubleshooting 10 years, 1 month ago
> I asked this question previously and didnโt get a useful answer
What post and why are you not continuing in that thread rather than creating a new one? Perhaps the advice was don’t do this?
If you want to modify core functionality then the WP approach is via hooks and filters, BP adds filters on a liberal basis where they would help in a…[Read more]
-
Hugo Ashmore replied to the topic How to delete "create group" button? in the forum How-to & Troubleshooting 10 years, 1 month ago
This sounds as though you may be using old templates? We removed the old default action of pushing the group create button out into the heading tag in the 2.0.0 release, that change required existing themes to possibly make adjustments if they had perhaps overloaded the bp-functions.php file which had a new set of group create button actions. my…[Read more]
-
Hugo Ashmore replied to the topic How to delete "create group" button? in the forum How-to & Troubleshooting 10 years, 1 month ago
This sounds as though you may be using old templates? We removed the old default action of pushing the group create button out into the heading tag quite a while back, that change required existing themes to possibly make adjustments, my memory is hazy on the issue but the trac ticket covering the change is…[Read more]
-
Hugo Ashmore replied to the topic How to delete "create group" button? in the forum How-to & Troubleshooting 10 years, 1 month ago
This sounds as though you may be using old templates? We removed the old default action of pushing the group create button out into the heading tag quite a while back, that change required existing themes to possibly make adjustments.
You will need to provide details of your theme as without any detail of your setup it’s difficult to help – as a…[Read more]
-
Hugo Ashmore replied to the topic 2.2 top features in the forum Requests & Feedback 10 years, 1 month ago
It’s that time again isn’t it @sooskriszta for your wish list ๐ ๐
I would leave out the @mentions on individuals they can be irritating.
As you have created tickets for all your wish list items I’m sure they’ll receive consideration so perhaps these forum posts are unnecessary?
- Load More
@hnla
Active 6 years, 4 months ago