Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 6,201 through 6,225 (of 32,562 total)
  • Author
    Search Results
  • #251175
    barteslukas
    Participant

    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 dynamix

    rosyteddy
    Participant

    And how to disable the threaded reply buttons …. so that an easy UI is there ?
    Any responsive theme that does this ?

    #251165
    Henry Wright
    Moderator

    buddypress.php is a generic template to be using. Take a look at the Template Hierarchy article for info on the various templates available to BuddyPress.

    This bbPress article will also be useful: https://codex.bbpress.org/themes/theme-compatibility/

    #251161
    Henry Wright
    Moderator

    I’m trying to think if there’s anything else you can check. Humm? Usually in cases such as this the problem is caused by either:

    • a plugin
    • your active theme
    • something inside bp-custom.php (if you have one)
    • something inside functions.php

    It’s strange things work in Chrome but not in FF. I’m wondering if the issue could be JavaScript related?

    #251149
    Henry Wright
    Moderator

    Hi Sammy

    What theme are you using and what plugins do you have activated?

    #251148
    Manuel5cc
    Participant

    Functions.php contains a lot of code that the theme needs to work. It includes explicit compatibility with buddypress since the theme is served with it and is intended to work together. I am talking about Powermag btw http://themeforest.net/item/powermag-the-most-muscular-magazinereviews-theme/4740939

    The functions.php of Twenty Fifteen is empty

    #251144
    Manuel5cc
    Participant

    I tried the plugins thing with my theme and with Twenty Fifteen but still happens.

    ngoegan
    Participant

    And just to make sure I cover all my bases, here are my answers:

    1. Which version of WordPress are you running?
    4.4.2

    2. Did you install WordPress as a directory or subdomain install?
    Not sure, but I think as a directory.

    3. If a directory install, is it in root or in a subdirectory?
    root I think

    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?
    Yes, the one before it.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes, Akismet, BBpress, Buddypress Edit Activity, Buddypress Forum Editor, Buddypress Group Email Subscription, Buddypress Like, Dynamic Widgets (deactivated), Events Made Easy, Events Made Easy Frontend Submit, Hashbuddy, InfiniteWP CLient, rtMedia, Theme My Login, Wanguard, Wordfence Security, WP SMTP

    I did deactivate all of them except wordpress and the register page worked, I then activated Buddypress and the redirect issue began.

    9. Are you using the standard WordPress theme or customized theme?
    Twemty Twelve

    10. Have you modified the core files in any way?
    I modified Footer.php on WordPress to edit copyright

    11. Do you have any custom functions in bp-custom.php?
    I don’t know

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    2.5.8

    13. Please provide a list of any errors in your server’s log files.
    The error log looks blank. Maybe I’m looking at the wrong thing?

    14. Which company provides your hosting?
    Hostgator

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Basic Trouble Shooting:
    I don’t know. Maybe Apache?

    valuser
    Participant

    Have revisted this interesting query!

    Consulted this similar query

    and have come up with another possible solution
    (so long as the main site has a different theme or child theme to the other sites.)

    in functions.php of sub-sites’ themes insert

    add_action( 'template_redirect', 'redirect_to_specific_page' );
    
    function redirect_to_specific_page() {
    
    if (is_page('Register') && ! is_user_logged_in() ) {
    
    wp_redirect( 'http://yourmainsite.dev/register/', 301 ); 
      exit;
        }
    }

    would not work with slug is_page(‘register’}

    #251130
    Henry Wright
    Moderator

    In that case it could be your theme?

    #251127
    shanebp
    Moderator

    Please don’t call out people individually.

    Create a Page – not a Post.

    Create a template and assign it to that Page.
    https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#creating-custom-page-templates-for-global-use

    Put your members-loop code in that page.
    Also include get_header() and get_footer() calls.

    #251126
    kamarr
    Participant

    Thanks again.

    I’ve copied the files you provided to the files in the /wp-content/my-theme/buddypress/members – folder. To test it properly I’ve even named the target file local-members-loop.php. However, the page still produces a 404 page not found error.

    The site is running with WordPress 4.4.2 and Buddypress 2.5.2.

    The idea is sound, I wonder what the issue may be.


    @Valuser


    @henrywright


    @shanebp


    @danbp

    #251125
    dsnic
    Participant

    Hi @imath thanks for jumping in. I spoke with the theme developers and they said that the theme sets the “BP_AVATAR_FULL_WIDTH” to 580 px. But even so, the Buddypress message is still wrong, because I’m uploading a bigger image and the message tells me that it’s a smaller image.

    #251104
    valuser
    Participant

    The two files in /wp-content/your-theme/buddypress/members – folder

    http://pastebin.com/PWS7AAps

    http://pastebin.com/b3j6NGwz

    (however – bespoke multi-network bits & pieces like “genre” not really relevant to the instant query)

    Cheers

    #251101
    valuser
    Participant

    Can only offer this.

    My alternative members directory is “local-” as in “local-members-loop.php”

    I also have a copy of members-loop.php in the /wp-content/your-theme/buddypress/members folder

    But that was only (at least i thought!) so that i added a line in the main directory directing users to the local directory

    mysite.com/local-members/ gets the alternative directory and mysite.com/local-members-loop.php/ produces a 404

    While i am running bp 2.5.1 and wp 4.4.2 and a lot of plugins these bp pages are in a child theme and have not been updated for a while and so may not reflect recent changes to the bp-legacy theme BUT they work!

    #251099
    Manuel5cc
    Participant

    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? No

    8. 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 theme

    10. 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.

    #251098
    kamarr
    Participant

    @Valuser

    Thank you for your response and suggestion! After following the steps and visiting the page, the website produces a 404 page not found error.

    I’ve tried creating the page with in wordpress as a new post just in case, and that produces a blank theme style page with no member directory.

    The approach seems logical. Copying the member-loop.php file, renaming it, and pasting it in wp-content/my-theme/buddypress/members is probably not far from the mark.

    I wonder what should be changed?

    kory27
    Participant

    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.4

    #251092
    valuser
    Participant

    Try this. It MAY work.

    In your theme folder add a folder named “buddypress”.

    In that folder place another folder named “members”

    Duplicate the file /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

    Rename this new duplicate file to say “new-york-members-loop.php” and place it in /wp-content/your-theme/buddypress/members

    Obviously you will code conditions into this file so that it only turns up members from New-York.

    (conditions and name etc to your specs)

    The file should respond to the link http://yoursite.com/new-york-members/

    The mods you mention will surely refine this if not correct!!!

    jessicana
    Participant

    Hello

    I tried to redirect my subdomain registration page on [multsite] to the main domain site registration page. I used the following code in my child theme functions.php for the site which I want to redirect its registration page:

    //redirect to the registration page
    function MyRedirect() {
        if(is_page('register')) {
            wp_redirect( 'http://domain.com/register/', 301 );
            exit;
        }
    }
    add_action('template_redirect','MyRedirect');

    Interestingly, the above code did not work, .htaccess is not working as well. I am, for sure, missing something but I don’t know what! .htaccess code is:

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^sub\.domain\.com$
    RewriteRule ^register/(.*)$ http://domain.com/register/$1 [R=301,L]

    Any help from you is highly appreciated as I am really stuck in this.

    Thanks in advance for all of you specially: @djpaul , @boonebgorges , @henrywright , @r-a-y , @danbp , @modemlooper , @imath , @shanebp .

    Jessica

    #250999

    In reply to: Buddypress issue

    invisibleland
    Participant

    Still White Screen of Death, error log isn’t show fatals, but I’ve got about 10 gigs of error_log of this sort of thing:

    [Thu Mar 10 13:34:26 2016] [warn] [client 141.101.81.74] mod_fcgid: stderr: PHP Warning: Missing argument 1 for ow_is_addon_group(), called in /var/www/vhosts/oneword.com/httpdocs/wp-content/themes/oneword/activity/activity-loop.php on line 21 and defined in /var/www/vhosts/oneword.com/httpdocs/wp-content/themes/oneword/functions.php on line 240, referer: http://www.oneword.com/members/gemmaflowers81/

    mln83
    Participant

    WordPress 4.4.2
    BuddyPress 2.5.1
    BuddyBoss Theme 2.1.3

    For 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,
    Michael

    #250964
    nicolas.mahy
    Participant

    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

    #250959
    jessicana
    Participant

    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 name

    function 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

Viewing 25 results - 6,201 through 6,225 (of 32,562 total)
Skip to toolbar