Search Results for 'theme'
-
Search Results
-
PLease help.
Activity and profiles of my members are showing up in Google search results. This is totally not cool! Even when you’re not signed in you can see the content! My members are people with ADD en ADHD and privacy is very important! I don’t want my members to show up in search results. Most of them don’t want this and it’s bad for the succes of my community.
What can I do?
http://www.adhdpositief.nl (is in Dutch)
wordpress 4.4.2
theme dynamixAnd how to disable the threaded reply buttons …. so that an easy UI is there ?
Any responsive theme that does this ?1. Which version of WordPress are you running? 4.4.1
2. Did you install WordPress as a directory or subdomain install? Directory
3. If a directory install, is it in root or in a subdirectory? Root
4. Did you upgrade from a previous version of WordPress? If so, from which version? No
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. YES
6. Which version of BP are you running? 2.5.1
7. Did you upgraded from a previous version of BP? If so, from which version? No8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes (list is long so I’ll detail if needed)
9. Are you using the standard WordPress theme or customized theme? Pro theme10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not running
13. Please provide a list of any errors in your server’s log files.
14. Which company provides your hosting? Quijost
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux
Register page does not work, it just reloads and erases password data. I have to note that I’ve tried it in Chrome and Firefox. In the first one it works properly, in the second one does not.
I have tried to reproduce this with the Twenty Fifteen theme and it seems to happen in the same way.
Hi,
My issue – Member page not displaying and members
I have confirmed signup by seeing the user in the users area. Role is subscriber.
BP created a page called Members. I have assigned the Members as the BP Members page in Settings>Buddypress>Pages.
When I click on this page from http://gamma.rabbitholeconsulting.com/, it is empty.
Any ideas why?
Thanks for your help!
System info:
WP 4.4.2
PHP 5.4.2
Default theme 2016 to avoid conflicts while setup/learning
Buddypress 2.5
BP Profile Search activated
Membership Pro 1.2.7.4I’m running WordPress 4.4.2 with BP 2.5.1 and BBpress 2.5.8 with Twenty Twelve theme.
My registration page redirects to a login and I can’t register anymore. When I deactivate Buddypress, it works, when I activate it, it redirects.
A little background… I have installed and uninstalled a few login plugins “New User Approve” “WP User” and a couple others which didn’t work for me. So I finally found Theme My Login, which I installed and liked how it functioned – except it created and ran on secondary pages – (register-2, login-2) so I deleted the first register page and changed the new register page the plugin created permalink to just “register” instead of “register-2”
It didn’t work. So I deleted the register pages, uninstalled Theme My Login, and reinstalled it, hoping that would fix it. It didn’t. And now even though all the pages seem to be set correctly (login, register, logout) I can’t register because of this redirect.
Thank you for any assistance.
WordPress 4.4.2
BuddyPress 2.5.1
BuddyBoss Theme 2.1.3For header issue please see:
One request: It would be great if “font type” could be changed or a Logo Image could be inserted into “Header” area.
Best regards,
MichaelTopic: Empty pages..
I installed BuddyPress, but there seems to be an issue. The pages I are empty:
http://www.movefit.be/index.php/members/1. Which version of WordPress are you running?
WordPress 4.2.7 gebruikt thema: Interface.
2. Did you install WordPress as a directory or subdomain install?
subdomain install
3. If a directory install, is it in root or in a subdirectory?
4. Did you upgrade from a previous version of WordPress? If so, from which version?
No
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes
6. Which version of BP are you running?
2.5.1
7. Did you upgraded from a previous version of BP? If so, from which version?
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Disabled all the plugins, didn’t work either
9. Are you using the standard WordPress theme or customized theme?
Interface theme
10. Have you modified the core files in any way?
Yes
11. Do you have any custom functions in bp-custom.php?
No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
No
13. Please provide a list of any errors in your server’s log files.
Don’t know where to find them.
14. Which company provides your hosting?
Neostrada.nl
15. Is your server running Windows, or if Linux; Apache, nginx or something else?
Windows
Hello
I used a code in my child theme functions.php to change the code at registration and it worked, that code was:
//Change username and email at registration
// changing from namefunction rv_mail_from_name($name) { return 'Enter your Site Name Here'; } // changing email function rv_mail_from($content_type) { return 'no-reply@Enter-your-domain-here.com'; } add_filter('wp_mail_from','rv_mail_from'); add_filter('wp_mail_from_name','rv_mail_from_name');Private messages notifications via email is still showing wordpress@domainname, to change this, I used:
function custom_wp_mail_from( $email ) { $handle = 'no-reply'; $find = 'http://'; $replace = ''; $link = get_bloginfo( 'url' ); $domain = str_replace( $find, $replace, $link ); return $handle . '@' . $domain ; } add_filter( 'wp_mail_from', 'custom_wp_mail_from' );This still doesn’t work, I appreciate any help to change the notifications email through a child theme functions.php.
Regards