Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,276 through 6,300 (of 22,621 total)
  • Author
    Search Results
  • #235224
    danbp
    Participant

    You’ll have more chance by asking for this on the plugin support ! πŸ˜‰

    AfromanJ
    Participant

    Basically Ive been asked to fix this field problem on someone elses website, Ive just been given access to FTP so can now make changes to the server files.

    They are using a theme called Huddle and have BuddyPress install on the latest version:
    http://themeforest.net/item/huddle-wordpress-buddypress-community-theme/835549

    The theme folder has a members folder in for BuddyPress, which i assumed was the standard for BuddyPress. I have overridden the templates you suggested in /themes/huddle/members/single and the issue is still present.

    I switched to a default WordPress theme to test compatibility and the fields are working like normal. So the issues is with the Huddle theme, now that its using the correct profile-loop and edit templates im not sure what the problem can be?

    #235222
    danbp
    Participant

    Hi @rosyteddy,

    since BP 1.7 theme compatibility was introduced, which allowed the use of almost every theme on a BP powered site. Previously, you could practicaly only use bp-default theme. Since bp-default was removed (7569) from the install package, that theme lives his own life. A few time later, it was decided to publish the source code of the bp-default custom theme used on bp.org…

    I wonder then why BP is not releasing this as a default theme for BP!

    Don’t wonder ! Because devs wanted to concentrate on their plugin, not on a specifical theme. It tooks hard working to isolate bp-default. And certainly not to introduce a new one today. πŸ˜‰

    You have access to the source code. You’re free to use it and to skin it to your needs.

    If you don’t see colors or any other elements, you have to check your work and redo it if you comes if you have errors or omissions.

    Difficult to tell you what you did wrong. IMO nothing, but if you’re mixing your theme and bp-default Γ  la bp.org, you missed probably somethings.

    If you don’t know how to do this, you can hire somebody on BP Job Board forum.

    #235221
    giuseppecuttone
    Participant

    Hi @alexterchum and @sbrajesh
    I think Alex is right.
    The other BuddyPress Notifications disappears when user visit the page.
    Also the others notifications generated with the others plugins that sbrajesh has developped (BP Group Activities Notifier and BuddyPress Activity Comment Notifier) run well.
    For example if the USER A send a message to USER B, USER B receive one notification.
    When USER B visit the page whin the message (http://URLWEBSITE/members/USER-NAME/messages/view/xx/) – clicking in the notification or by other way… – the notification will be dissapear.
    Also in the page http://URLWEBSITE/members/USER-NAME/notifications/, when user visit the page with the message, the message automatically will go to the section UNREAD and it is not necessary that the user must to mark as READ the message in order to dissapear the notification.

    I have the same problem with FORUM notification (using https://wordpress.org/support/plugin/bp-forum-notifier).

    sbrajesh, can you solve the problem in the plugin “BuddyPress Notify Post Author on Blog Comment”?

    Thank’s very much

    #235182
    Hugo Ashmore
    Participant

    This is likely an issue with necessary changes BP had to make setting is_page() to zero for BP pages, sadly causing a WP bug to manifest, WP has been patched to handle this issue.

    You can apply this patch to WP core in advance of it being released to correct the problem – if that is this is the issue.

    https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diff

    AfromanJ
    Participant

    Hey, I could be using the wrong view and edit templates as they do not look the same as the profile pages on buddypress.org.

    I do not have full access to replace files on the server manually, I have updated WordPress and BuddyPress to the latest versions.

    Do I need to manually replace the legacy files on the server with these files?
    https://github.com/buddypress/BuddyPress/tree/master/src/bp-templates/bp-legacy/buddypress

    I thought this would correct itself when the plugin is updated.

    Hugo Ashmore
    Participant

    I ran across this the other day, and it’s been ticketed and will be looked into:
    https://buddypress.trac.wordpress.org/ticket/6167

    #235131
    shanebp
    Moderator

    Now in the WP plugin repo:
    https://wordpress.org/plugins/bp-local-avatars/

    And still available here: PhiloPress

    #235114
    SimpleOne
    Participant

    @hnla thank you for the guidance. FWIW, I did try doing as much research as possible (and trying out a few things) before posting my question here.

    I reviewed the information contained in the link you provided. Thanks for that. But after reading through that information, what I’m still unclear about is how/what template I should modify in order to affect ONLY the BP Registration page. (FYI, I’m not a php developer, so I do need a bit of hand holding for some of this kinda stuff.)

    I read through the info on how to “Customize the layouts of BuddyPress pages within the WordPress Default Themes”. However, the instructions provided there seem to apply to scenarios where a site admin is wanting to make page template changes that apply to all BP pages on a site (i.e., by placing a customized buddypress.php file in the child theme folder).

    In my case, I’m only wanting to change a single page (the Registration page) to remove the headers and footers. So I’m still unsure how I would go about doing that (even after reading through the info). Thank you very much for any specific guidance you can provide me with to accomplish this.

    #235083
    leanneoleary
    Participant

    Thanks for your help with this but I am still not sure what I need to do. The function I posted was just an example that I had found from an earlier forum, I do not need to add videos and pictures to the activity stream.

    I need to add details of a custom post type every time a custom form is submitted from the frontend by a user. The custom post type is “Files”. Below is a class for the form and it is within the CMB (custom meta boxes) plugin folder. Can you advise on how to implement the code to record these forms posts in the activity stream?

    class uploadForm {
    
        // Set prefix
        public $prefix = '_cmb_'; 
    
        /**
         * Construct the class.
         */
        public function __construct() {
            add_filter( 'cmb_meta_boxes', array( $this, 'cmb_metaboxes' ) );
            add_shortcode( 'cmb-form', array( $this, 'do_frontend_form' ) );
            add_action( 'init', array( $this, 'initialize_cmb_meta_boxes' ), 9 );
           /* add_action( 'cmb_save_post_fields', array( $this, 'save_fields' ), 10, 4 );*/
            add_action( 'save_post', array( $this, 'save_fields' ), 10, 4 );
           /*add_filter( 'bp_blogs_record_comment_post_types', 'add_activity' );   IS THIS CORRECT?  */ 
        }
    
        /**
         * Define the metabox and field configurations.
         */
        public function cmb_metaboxes( array $meta_boxes ) {
    
            /**
             * Metabox for the "Memorials" front-end submission form
             */
            $meta_boxes['upload_files_metabox'] = array(
                'id'         => 'files',
                'title'      => __( 'Upload files', 'cmb' ),
                'pages'      => array( 'Files' ), // Post type
                'context'    => 'normal',
                'priority'   => 'high',
                'show_names' => true, // Show field names on the left
                'fields'     => array(
                    array(
                        'name'       => __( 'File description', 'cmb' ),
                        'desc'       => __( 'File title or description', 'cmb' ),
                        'id'         => $this->prefix . 'title',
                        'type'       => 'text',
                    ),
                    array(
                        'name'     => __( 'Project stage', 'cmb' ),
                        'desc'     => __( 'select stage (optional)', 'cmb' ),
                        'id'       => $this->prefix . 'category',
                        'type'     => 'taxonomy_select',
                        'taxonomy' => 'stages', // Taxonomy Slug
                    ),
                    array(
                        'name' => __( 'Link to website', 'cmb' ),
                        'desc' => __( 'Add url to website (optional)', 'cmb' ),
                        'id'   => $this->prefix . 'url',
                        'type' => 'text_url',
                        'protocols' => array('http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet'), // Array of allowed protocols
                        // 'repeatable' => true,
                    ),
                   array(
                        'name' => __( 'Upload image', 'cmb' ),
                        'desc' => __( 'Upload an image or enter a URL.', 'cmb' ),
                        'id'   => $this->prefix . 'image',
                        'type' => 'file',
                    ),
    
                  array(
                      'name'         => __( 'Upload files', 'cmb' ),
                      'desc'         => __( 'Upload or add multiple images/attachments.', 'cmb' ),
                      'id'           => $this->prefix . 'file_list',
                      'type'         => 'file_list',
                  ),
                  array(
                    'name' => __( 'oEmbed', 'cmb' ),
                    'desc' => __( 'Enter a youtube, twitter, or instagram URL. Supports services listed at <a href="https://codex.wordpress.org/Embeds">https://codex.wordpress.org/Embeds</a>.', 'cmb' ),
                    'id'   => $this->prefix . 'embed',
                    'type' => 'oembed',
                 ), 
                ),
            );
    
            return $meta_boxes;
        }
    
        /**
         * Shortcode to display a CMB form for a post ID.
         */
        public function do_frontend_form() {
    
            // Default metabox ID
            $metabox_id = 'upload_files_metabox';
    
            // Get all metaboxes
            $meta_boxes = apply_filters( 'cmb_meta_boxes', array() );
    
            // If the metabox specified doesn't exist, yell about it.
            if ( ! isset( $meta_boxes[ $metabox_id ] ) ) {
                return __( "A metabox with the specified 'metabox_id' doesn't exist.", 'cmb' );
            }
    
            // This is the WordPress post ID where the data should be stored/displayed.
            $post_id = 0;
    
            if ( $new_id = $this->intercept_post_id() ) {
                $post_id = $new_id;
                echo 'Thank You for your submission.';
            } 
    
            // Shortcodes need to return their data, not echo it.
            $echo = false;
    
            // Get our form
            $form = cmb_metabox_form( $meta_boxes[ $metabox_id ], $post_id, $echo );
    
            return $form;
        }
    
        /**
         * Get data before saving to CMB.
         */
        public function intercept_post_id() {
    
            // Check for $_POST data
            if ( empty( $_POST ) ) {
                return false;
            } 
             
            
    
            // Check nonce
            if ( ! ( isset( $_POST['submit-cmb'], $_POST['wp_meta_box_nonce'] ) && wp_verify_nonce( $_POST['wp_meta_box_nonce'], cmb_Meta_Box::nonce() ) ) ) {
                return;
            }
            
            // Setup and sanitize data
            if ( isset( $_POST[ $this->prefix . 'title' ] ) ) {
                           
              
                //add post data to database    
                $this->new_submission = wp_insert_post( array(
                    'post_title'            => sanitize_text_field( $_POST[ $this->prefix . 'title' ] ),
                    'post_author'           => get_current_user_id(),
                    'post_status'           => 'publish', // Set to draft so we can review first
                    'post_type'             => 'file',
                ), true );
    
                // If no errors, save the data into a new post draft
                if ( ! is_wp_error( $this->new_submission ) ) {
                    
                    return $this->new_submission;
                    
                   
                } 
    
            }
    
            return false;
        }
    
        /**
         * Grant temporary permissions to subscribers.
         */
        public function grant_publish_caps( $caps, $cap, $args ) {
    
            if ( 'edit_post'  == $args[0] ) {
                $caps[$cap[0]] = true;
            }
    
            return $caps;
        }
        
       
        
    
        /**
         * Save custom fields and uploaded files 
         */
        public function save_fields( $post_id, $post  ) {
    
                if($_POST['_cmb_category'] != ''){
                    add_post_meta( $post_id, '_cmb_category', $_POST['_cmb_category'], true );
                }
                if($_POST['_cmb_url'] != ''){
                    add_post_meta( $post_id, '_cmb_url', $_POST['_cmb_url]'], true );
                }
                if($_POST['_cmb_image'] != ''){
                    add_post_meta( $post_id, '_cmb_image', $_POST['_cmb_image'], true );
                }
                if($_POST['_cmb_image_id'] != ''){
                    add_post_meta( $post_id, '_cmb_image_id', $_POST['_cmb_image_id'], true );
                }
                if($_POST['_cmb_file_list'] != ''){
                    add_post_meta( $post_id, '_cmb_file_list', $_POST['_cmb__file_list'], true );
                }
                if($_POST['_cmb_embed'] != ''){
                    add_post_meta( $post_id, '_cmb_embed', $_POST['_cmb_embed'], true );
                }
           
    
        }
    
        /**
         * Initialize CMB.
         */
        public function initialize_cmb_meta_boxes() {
    
            if ( ! class_exists( 'cmb_Meta_Box' ) ) {
                require_once 'init.php';
            }
    
        }
        
        /**
         * Add to buddypress activity timeline. - HOW???
         */
        public function add_activity($post_types) {
    
           /* $activity_id = bp_activity_add( $args );
            
            return $activity_id;*/
    
           /*   $post_types[] = 'file'; 
              return $post_types;*/
        }  
        
    
    } // end class
    
    $uploadForm = new uploadForm();
    
    #235081
    wolfied
    Participant

    I’m not an expert on wordpress and I am afraid, I’m not sure as to how I can create the forum outside of groups. But my question is, if a group is set to public, it should be reffering that it’s visible to anyone and it must NOT be compulsory to join the group for the public groups. Why can’t this be done?

    Any guide for carrying the whole forum outside the groups ? how would it effect me?

    #235077

    In reply to: Search Member

    Henry Wright
    Moderator

    Hi @aymanomar85

    Have you tried BP Profile Search?

    #235069
    mvaneijgen
    Participant

    This works

    // hook failed login
    add_action('wp_login_failed', 'my_front_end_login_fail'); 
     
    function my_front_end_login_fail($username){
        // Get the reffering page, where did the post submission come from?
        $referrer = $_SERVER['HTTP_REFERER'];
     
        // if there's a valid referrer, and it's not the default log-in screen
        if(!empty($referrer) && !strstr($referrer,'wp-login') && !strstr($referrer,'wp-admin')){
            // let's append some information (login=failed) to the URL for the theme to use
            wp_redirect($referrer . '?login=failed'); 
        exit;
        }
    }

    http://www.wpinsite.com/code-snippets/how-to-redirect-wordpress-failed-logins

    #235067
    hutchison
    Participant

    @rosyteddy, I found that the quickest, easiest, and most efficient solution was to substitute a different login widget. This one I found really works perfectly for me:

    https://wordpress.org/plugins/sidebar-login/

    Many thanks, nonetheless, for your ongoing support and advice.

    #235052
    bp-help
    Participant
    vitamincee
    Participant

    @mcpeanut Thanks, and like I said I’m aware of the issue of too many admins. I’ve been working with WordPress for over 10 years, I know about roles and capabilities. This is a site that I help out with – not my personal site, and there are a lot of moving parts.

    I am curious if you can replicate this odd behavior, thanks for investigating.

    #234987
    Henry Wright
    Moderator

    Hi @hipp

    Sounds like some accessibility enhancements might be needed to the menu’s markup. I suggest you open a Trac ticket giving the core developers as much info about the problem as you can.

    You can use your same login details on Trac.

    https://buddypress.trac.wordpress.org

    #234985

    In reply to: Missing Meta Title

    @mercime
    Participant

    WP SEO doesn’t provide support for BuddyPress https://buddypress.trac.wordpress.org/ticket/5800

    #234972
    Michael
    Participant

    And just when you think things are about to get worse…they get better. On a lark I went in and re-saved the Permalinks configuration on my site, and the Sitemaps appeared again. It looks like it is working.

    So a word to the wise, if you ever update BuddyPress and use WordPress SEO, be sure to check whether your sitemap is still working, whether the BuddyPress page titles are working, etc. If not, try and save your Permalink configuration (under Dashboard->Settings->Permalinks).

    Michael

    #234971
    Michael
    Participant

    I just noticed this same problem with missing sitemaps on my site when upgrading to BuddyPress 2.2.1.

    It seems related to the problem with botched BuddyPress page titles I discussed in this post: https://buddypress.org/support/topic/buddypress-2-2-1-incompatible-with-yoast-seo-botched-page-titles/

    There must be a major new incompatibility between BuddyPress 2.2.x and Yoast WordPress SEO (plugin version 1.7.3.1) that REALLY needs to get fixed.

    Disabling WordPress SEO is not the solution to this problem. I will have to roll back my BuddyPress installation, which is a big pain the *ss. Not happy.

    Michael

    bp-help
    Participant
    #234963
    hutchison
    Participant

    Sorry … I guess I should have mentioned that I’m using WordPress v.4.1.1 and BuddyPress v.2.2.1
    The site URL is: http://mylifeismymuseum.eu/mlimm/activity/ and that I have tested with several different themes.

    So asking again … I’ve found that, if a site member clicks the β€˜Log In’ button without first entering their username and password, the page redirects to the default WordPress login page (/wp-login.php)

    How (and where) might I modify the code so that, instead, it simply fails or, better, displays a an error message to remind the user to fill in their login credentials?

    #234957
    Henry Wright
    Moderator

    @peter-hamilton

    Really cool to see the plugin in action and thanks for the review on wordpress.org! πŸ™‚

    #234935
    rosyteddy
    Participant

    @henrywright @danbp I think I already voted for this πŸ™‚


    @henrywright
    if you are accepting plugin *ideas* I will suggest a small thing. But first my apologies for using this thread. Feel free to delete.
    Here goes:
    Please see https://wordpress.org/plugins/ls-buddypress-activity-plus-tabs-extension/
    This does it for the Groups only, can you please use the code to do it for the member profile page, that is, an Images tab on the member profile. Thanks.

    #234918
    danbp
    Participant

    Forgot my question ! It’s not a theme issue, but a missing in the core. I was curious about that issue and tested it. And finally opened a ticket (#6246) with more details. Don’t hesitate to follow it and/or to give your opinion, patch or what ever can be considered as usefull to solve this bug. πŸ˜‰

Viewing 25 results - 6,276 through 6,300 (of 22,621 total)
Skip to toolbar