Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,551 through 4,575 (of 31,073 total)
  • Author
    Search Results
  • danbp
    Participant

    Hi,

    check from here wp-admin/edit.php?post_type=page that you have the 2 pages for registering and activation.

    On BP’s pages settings list, you can see in regard of Activation and Registration each page. There is no Save button. Just a View button.

    Check also that you don’t have these page in Trash. If it’s the case, clear it completely. Page names must be unique in any case.

    Also go to you permalinks and choose an option except default and save.

    If still in trouble after that, provide screenshot and theme name, php version and if you use a new install or an updated version.

    eerrico
    Participant

    Thanks for your response! Can you clarify for me which CSS file should I add it to, the one for the theme? I already tried that and it didn’t work.

    sharmavishal
    Participant
    #253523
    shanebp
    Moderator

    BP recently added the BP Email API which uses its own methods.

    You can place the code in bp-custom.php rather than your theme/functions.php

    #253522
    notch-1
    Participant

    Yes, it works, but why not with those plugins? I prefer not to alter the theme when possible…

    #253520
    shanebp
    Moderator

    Try this in your theme/functions.php

    add_action( 'bp_email', function( $email_type, $email_obj ) { $email_obj->set_from( "you@yoursite.com", "Your Site" ); }, 10, 2 );

    See codex page.

    #253497
    sharmavishal
    Participant

    you need to raise this with paid theme support forums

    #253491

    In reply to: Adding Sub-groups

    sharmavishal
    Participant

    Great…adjust the CSS as per your theme…

    #253484
    Joost abrahams
    Participant

    Your theme is outputting those links.

    #253482
    jclark1234
    Participant

    I have spent 20 hours on tech support to figure this out.

    My host tech support at WP Engine went through and we tested every plugin and isolated that the capitalization appears only when buddypress plug in is activate.

    As I wrote in my original post “I am using wp 4.5.2 and the ispirit 1.1.2 and it replicates with the
    standard themes. It happens in safari, chrome and on iphone browser.”

    When I stay standard themes I mean the three that come with the wp install.

    We (wpengine and I) did redirects so that when the bp system generates the odd capitalization issue it redirects to the page with the caps.

    Go here and watch it redirect http://www.championcollegeservices.com/register to http://www.championcollegeservices.com/Register

    We did that redirect as a temporary solution so that people could at least sign on.

    The bug needs to be found and fixed.

    #253481
    Joost abrahams
    Participant

    I,m am very sorry but… You did make those changes somehow, wordpress and buddypress only outputs lowercase slugs.

    You are not typing internet adresses directly into your browser? Those links in your chase are generated by your theme? Did you try a different theme? Did you try to change the page slug?

    #253478
    Joost abrahams
    Participant

    More examples

    Works

    example.org/group/
    example.org/group/TESTGROUP/

    Doesnt work only shows pagetitel

    example.org/GROUP/

    Works but goes to page not found themepage

    example.org/group/testgroup/Members

    #253443
    megin
    Participant

    Hi @danbp,

    Thank you for your reply.
    I wrote bp-custom.php inside the folder( wp-content/plugins/).

    I would link to add extra field inside the file( buddypress/bp-themes/bp-default/activity/post-form.php) and need to insert that value on the table (wp_bp_activity_meta). I wrote the function for this purpose. Unfortunately its not working. please help.

    function add_meta_to_activity( $content, $user_id, $activity_id ) {
    
        bp_activity_update_meta( $activity_id, 'option1', $_POST['option1'] );
    
    }
    add_action( 'bp_activity_posted_update', 'add_meta_to_activity', 10, 3 );
    #253423

    In reply to: APP by mobile phone

    modemlooper
    Moderator

    You could use:

    #253422
    modemlooper
    Moderator

    that’s correct, BuddyPress filters the the_content of a BP page so anything you add to the content editor will not show. BuddyPress uses your themes page.php for all its pages so its kind moot to add content in the editor unless its something to display site wide. You are better off hooking to bp template hooks to display extra content on specific pages.

    #253394
    Henry Wright
    Moderator

    Run a search in your code base for bp_add_friend_button(). Depending on your theme it could be in quite a few files.

    prdufresne
    Participant

    I was able to override the offending settings by adding a few lines in the custom css file of my theme. Below are the changes I made to resolve the issue, in case anyone else runs into a similar problem

    #buddypress table.profile-fields td.label {
        color: #555555;
        display: table-cell;
    }
    ndh01
    Participant

    I found I have to declare it in my theme as noted here https://buddypress.trac.wordpress.org/ticket/6570:

    bp_set_theme_compat_feature( 'legacy', array(
    	'name'     => 'cover_image',
    	'settings' => array(
    		'components'   => array( 'xprofile', 'groups' ), /* or you can only use array( 'xprofile' ) to restrict the cover image to users */
    		'width'        => 1170,
    		'height'       => 225,
    		'callback'     => 'swifter_theme_cover_image', /* function that will return to BuddyPress the css to attach to the theme_handle */
    		'theme_handle' => 'swifter',
    	),
    ) );
    #253264

    In reply to: Mobile members page

    Henry Wright
    Moderator

    Yes, try letting your theme’s author know via their support channel. Hopefully they can release a fix.

    #253263

    In reply to: Mobile members page

    cazooba
    Participant

    I am using a wordpress theme – called WOffice.. Should I contact them?

    #253262

    In reply to: Mobile members page

    shanebp
    Moderator

    The members search box is visible on mobile when using a standard WP theme like 2013.

    So there is most likely an issue with your theme.

    To confirm, trying switching momentarily to a WP theme.

    #253252
    MD FAKRUL ISLAM
    Participant

    @mfalk75

    I faced the same issue when I copied the buddypress.css from buddypress/bp-templates/bp-legacy/css to mythemes/buddypress/css

    Here is the code below I used to get rid of this…

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-parent-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Hope it helps..

    #253219
    andy60rm
    Participant
      Resolution today

    my personal steps
    1. restore latest wp backup with version 4.5.1
    2. complete remove of buddypress
    3. disactivation of the following plugins (i don’t know exactly the cure but bp works now)

    INACTIVE Cryout Serious Theme Settings 0.5.6
    INACTIVE Huge IT Slider 3.1.82
    INACTIVE mathtex latex equation editor 1.1.5
    INACTIVE Ultimate Tables 1.6.3
    INACTIVE WP-Polls 2.73
    INACTIVE WP-Pro-Quiz 0.37

    Henry Wright
    Moderator

    I added it at the end of my theme’s functions.php file. I’m using Twenty Fifteen to test.

    Night Hawk
    Participant

    Really, I don’t know why, but is not working…

    I add it like this in my themes faction.php

     add_filter( 'bp_after_has_activities_parse_args', function( $retval ) {
       $retval['action'] = array(
            'activity_update',
            'activity_comment',
            'updated_profile',
        );
        return $retval;
    } );
    

    but nothing works.

Viewing 25 results - 4,551 through 4,575 (of 31,073 total)
Skip to toolbar