Sorry, I do have one more question: I noticed Member URLs open in the same window. I'd like to modify this to open in a new window. Would the be possible?
Support Forum
Can the Member page be modded?
Can you explain what you mean by 'member url' please? Or do you just mean the members listing? If so then we cannot redirect to another WP page I am afraid., All forum content uses the single, WP page object. It is possible to check what is about to be displayed if that might be of help...
@yellow-swordfish he is talking about the member url listed for each member if they have entered one...
yes, you can change the target if you like... in the template file, find this similar to this line from reboot:
sp_MemberListUrl('', __sp('Member URL')); sp_MemberListUrl('', __sp('Member URL'));
and change it to:
sp_MemberListUrl('targetNew=1', __sp('Member URL')); sp_MemberListUrl('', __sp('Member URL'));
note, you are adding targetNew=1 to the first string... its possible you already have something in there while my example is empty string... if there is something in that string, enter '&targetNew=1'..
Oddly though, the new tab option should be the default...
oh darn... I see why... what I gave you wont work... we do that only for website icon, not for the text... not sure why, but how it currently is...
we use a WordPress function to build the url and it does not offer the option to add the target attribute...
two options...
one change the template tag call to be:
sp_MemberListUrl('showIcon=1', __sp('Member URL'));
this will show an icon instead of the url text, but the icon will be clickable and will open in an new tab...
two, filter the url yourself and add the target attribute... filter 'sph_MemberListUrl' and add ' target="_blank"' to the url after the '<a' characters...
Thank you so much. I've added the icon, easiest solution. That looks good too.
For some reason I didn't get a email notification for new posts on this thread, even though I am subscribed. Just wanted to mention that briefly.
No - we are not getting our admin emails either. Were are investigating... thanks for the confirmation.
believe its been resolved... is working for me now...