Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 6,226 through 6,250 (of 32,562 total)
  • Author
    Search Results
  • paddy33
    Participant

    I’ve setup 2 copies of the site locally to do a Before & After comparison. The attached image is a side by side comparison of Chrome’s Inspector when a link in the navbar is selected. https://i.imgur.com/2p6IU1l.png

    BEFORE – BP Version 1.7.2 (Everything looks fine, but BP needs to be updated)

    AFTER – BP Version 2.1.2 (Upon updating to this version, custom templates are not showing. After adding theme support for BP to functions file, custom templates load properly but the custom styling for BuddyPress navbar is lost).

    Spent quite some time trying to figure this out but can’t get to the bottom of it. Hopefully, an experienced set of eyes can spot the issue.

    Thanks for your help.

    jonkjr
    Participant

    Hello everyone,

    I have been trying to create a WordPress website that has many different themes and plugins but I only want one BuddyPress login for all of them. I created a MultiSite to manage each separate theme and plugin in a single CMS. But I have been in the network settings trying to associate the register and activate pages but there is no save button?

    Am I going about this the right way? How do I get all users in each subdomain of the MultiSite to share it’s users since they are in the same database? Why is there no save button when I want to associate the register and activate pages?

    Any suggestions would be greatly appreciated. If you need anything from me let me know. Thank you very much

    Jasper
    Participant

    My member numbers since the recent upgrade are wrong. I have tried the Repair total members count tool and it’s had no effect. I have no caching software installed and I have tried using a different theme.

    Any help much appreciated.

    Thanks

    #250905
    Henry Wright
    Moderator

    This might be due to a plugin you have activated or perhaps even the theme you’re using. Try disabling all plugins and reverting to Twenty Fifteen. Does the search return offline users now?

    Henry Wright
    Moderator

    You mentioned you’re using a customised theme. Can you check if you still see the problem when using Twenty Fifteen?

    dgalfano
    Participant

    1. Which version of WordPress are you running? WordPress 4.4.2
    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? Subdirectory
    4. Did you upgrade from a previous version of WordPress? If so, from which version? We always keep WordPress up to date, so of course it’s an upgrade. Not sure which version. Maybe 4.1.X?
    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? BuddyPress 2.5
    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, far too many. However, I did deactivate most to troubleshoot leaving only BuddyPress 2.5, BBpress 2.5.8 and Visual Composer 4.3.4
    9. Are you using the standard WordPress theme or customized theme? Customized theme (Bridge by Qode)
    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? bbPress 2.5.8
    13. Please provide a list of any errors in your server’s log files. Not available
    14. Which company provides your hosting? Blue Host
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? VPS Server, Apache

    I stole this from another thread as it’s the exact same issue:

    I have a problem with getting the registration page to work – the registration page itself is displayed properly, however when I try to submit the registration form (“Complete Sign Up”), all it does is reload the page with fields already filled in (only password fields are blank) and nothing more happens.

    WordPress Registration works just fine when BuddyPress is disabled using the Bridge theme. Registration also works when BuddyPress is enabled and I switch to the 2014 theme. Even with all the plugins installed. Perhaps some script conflict within the main theme files?

    Here’s a link to the registration page: http://tinyurl.com/gwdmt6n

    Jek-fdrv
    Participant

    Why new version have removed null
    It breaks my theme design.

    #250866
    Hugo Ashmore
    Participant

    You don’t really need to be looking at that codex page, this ought to be a simple overload of templates, i.e copy register, from BP to your theme and edit as required. If you start to work with the extended advanced hierarchy templates you have to create full standalone templates i.e each must contain header and footer includes (hence why you appear to have lost styling, no head element for your document).

    MedianP
    Participant

    Hi !

    I would like to know how to display the “Send Invites” Tab in groups.

    When I activate the “Friends” module, the tab is showing but I want it to be deactivated because I want everybody to be able to PM etc.

    I tried changing theme, deactivating all the plugins but that doesn’t work.

    Any idea ? Thank you.

    #250845
    BackpackersUnion
    Participant

    @djpaul thanks for the updates!

    If you’re saying extra CSS is getting involved, I strongly suspect you have some other plugin or theme component adding extra junk.

    I think you’re right. My suspicion is it’s some caching issue within the “Google Gmail App”, but I’m not 100% sure. Unfortunately this invalidates a bunch of my tests, but also means crossing your fingers may have helped 😀

    #250836
    Paul Wong-Gibbs
    Keymaster

    2.) Then when altering configuration (i.e. adding add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ ); to BP_Custom), and testing again, the emails output a combination of WP Better Email and the default template with various CSS Styles altering different parts of the email with each new email sent.

    BTW, this is exactly what I expect to happen. The content from the plain text version of the email from BuddyPress into the template provided by, in this case, WP Better Email.

    If you’re saying extra CSS is getting involved, I strongly suspect you have some other plugin or theme component adding extra junk.

    #250789
    Henry Wright
    Moderator

    That would be buddypress/members/index-register.php. See the BuddyPress Template Hierarchy article for more details.

    Ref: https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    danbp
    Participant

    Hi

    you can use this snippet from within bp-custom.php to change the default year range in the profile field datepicker (1902 – 2035). In the example, you will get 1950 – 2020

    function custom_bp_datebox($html, $type, $day, $month, $year, $field_id, $date) {      
        if($type == 'year'){
       
            $html = '<option value=""' . selected( $year, '', false ) . '>----</option>';
     
            for ( $i = 2020; $i > 1949; $i-- ) {
                    $html .= '<option value="' . $i .'"' . selected( $year, $i, false ) . '>' . $i . '</option>';
            }
        }
        return $html;
    }
    add_filter( 'bp_get_the_profile_field_datebox', 'custom_bp_datebox',10,7);

    Tested with BP 2.5 and a third party theme. Hope it helps you. 😉

    IngeB1983
    Participant

    Hi there,

    I’d like to personalise my registration page a bit more. I want to achieve this:

    What I want

    What I get is this:

    Top of page on the right

    What I have done so far:

    1. I have adjusted the Buddypress registration.php (child theme) and added this line:

    <?php
    echo "Hello World!";
    ?>

    pretty much anywhere to test where it would show up.
    Result: image number 2.

    2.
    Created a custom template (copy of page.php) for the registration page and again added this code:

    <?php
    echo "Hello World!";
    ?>

    to see if it would do anything.
    Result: nothing.

    Can anyone tell me where to put what code to get a line of text on the bottom of the buddypress registration page? I’d like to add a link there to terms & conditions.

    Thanks in advance everybody!

    #250738
    agnesmeil
    Participant

    Yay for the new release! I love how the comments synchronise.
    I was super excited when I saw the Custom Post Type Comment Tracking function would be added to the new version of BuddyPress, so I’ve been waiting (im)patiently for the release, but I can’t get it to work. I want comments to lessons of the Namaste! LMS plugin (post type = namaste_lesson) to show up in the activity stream.

    I use WP 4.4.2 and BP 2.5.0, single site install
    I tried with twenty fifteen theme, still the same problem.
    I tried all repair tools, deinstalled all plugins, reinstalled just BP and Namaste, and also tried it without Namaste with another CPT
    I tried adding
    add_post_type_support( 'namaste_lesson', 'buddypress-activity' );
    to bp_custom.php
    I also tried this this snippet https://codex.buddypress.org/plugindev/post-types-activities/#1-add-comments-tracking-to-an-existing-post-type but I wasn’t sure how to use the namaste_lesson because of the underscore, for instance in
    'action_id' => 'new_blog_page',
    does that become
    'new_namaste_lesson'
    ??
    As you can tell I’m completely new to coding. I would love to learn, though.

    Thanks so much!

    #250717
    Gretchen Louise
    Participant

    @shanebp I activated different themes on a test site, and replicated the issue with WP 2015, as Dan confirmed. However, the issue did not persist when using Genesis, 2013, or Flourish (Genesis Child Theme by Restored 316).

    The theme being used on the amongstlovelythings.com site is Beautiful, a Genesis Child Theme, albeit an older one.

    #250705
    fidelleon
    Participant

    Hello,

    I agree having more betatesters would be fine but sometimes it’s difficult when you just manage only one Buddypress site.

    I’m having the same problem, the activation mail is not being sent since I updated. I have activated full debug mode (E_ALL and Display_errors) but nothing shows in the error log.

    Besides, I had overriden the normal activation mail in my child’s theme’ functions.php. After it stopped working I did a grep and saw the function I was trying to use was in the v2.5 deprecated list, so I commented out all the overriding code.

    I’m using the Easy WP SMTP plugin, the sender mails are good ones both in the plugin and the main WordPress configuration, and it can receive mails.

    #250704
    shanebp
    Moderator

    Is there a private method to provide a user/pw?

    There is no PMing for this site.

    But Dan has confirmed the issue with WP 2015, so it will be looked at.

    Perhaps you could confirm that it does not occur with another WP theme, maybe try 2013?
    And state which theme you are using?

    #250695

    In reply to: Login fields to long

    danbp
    Participant

    Replace in your child-theme css file

    input.input {
        width: 300px;
    }

    by

    input.input {
        width: 200px;
    }
    #250693

    In reply to: PUBLIC MESSAGE

    danbp
    Participant

    The css tag ID #aw-whats-new-submit may exist, but if your theme use some specific height or width for it which is different from what is used by BP in the js/css file, you didn’t see the button.

    This is a very common theme issue, handled on many topics on this forum.


    @tonyxs1
    logically in the template. The what’s new form is used on activity, profile and group page.

    You’ll certainly find some good information from these one or other search results:
    https://buddypress.org/support/search/what%5C’s+new+form/

    #250690
    danbp
    Participant

    @djpaul,

    i tried to reproduce and got same result as @gretchenlouise with one of WP theme.

    2016 = correct result (url /forums/search/word_to_search/)
    2015 = wrong result (url /forums/search/word_to_search/) i got the latest post…
    2014 = correct result (url /forums/search/word_to_search/)
    2013 = correct result (url /forums/search/word_to_search/)
    3rd party theme graphene = correct result

    Apparently 2015 doesn’t organize search like the other themes and/or ignore bbPress…

    Have a nice week-end.

    #250689
    danbp
    Participant

    Hi @jersey-peeps,

    i’m using wp-better-emails on a multisite BP install (lastest version) without any trouble. I changed the “from” field within this plugin admin.

    On a single WP install (lastest version), i use this from within child-theme’s functions.php
    So if you uninstalled better_emails, you could try these snippets.

    //notification mail email change
    add_filter('wp_mail_from','custom_email_from');
    function custom_email_from($mail) {
    	$mail = 'your@mail.name'; // Replace the email address here //
    	return $mail;
    }
    
    //notification name change; optional
    add_filter('wp_mail_from_name','custom_email_from_name');
    function custom_email_from_name($name) {
    	$name = get_bloginfo('YOUR SITE NAME');//put your own text here
    	return $name;
    }

    In hope it helps you. 😉

    #250671

    In reply to: translation email

    Paul Wong-Gibbs
    Keymaster

    @airsid

    IF your translation file is up to date (have you re-downloaded the files to check?), those strings should be getting translated.

    Otherwise, another option is to edit the email template. Copy buddypress/bp-templates/bp-legacy/buddypress/assets/emails/single-bp-email.php into your theme and make whatever changes you want.

    @mcuk
    Participant

    Those selectors were based on the Themeforest demo site, so they may not match your actual site. Without seeing your site its not possible to say. So you’ll have to use f12 to find out if its correct.
    Did you try ctrl-A without including any new bubble or top-menu CSS to see if anything was there?
    Did you insert the correct name of your menu in the php code?

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