Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,276 through 1,300 (of 22,687 total)
  • Author
    Search Results
  • haitianguy
    Participant

    Hello,
    i hope someone can help me because i am driving myself crazy at this point. im fairly new to wordpress and thought that i would give it a shot to try and have the themes custom post “video” show up in the activity stream as well as merge their comments. finding this link in the codex, https://codex.buddypress.org/plugindev/post-types-activities/

    i managed to have this in my bp-custom.php

     function customize_page_tracking_args() {
     
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
     
        add_post_type_support( 'video', 'buddypress-activity' );
     
       
        bp_activity_set_post_type_tracking_args( 'video', array(
            'action_id'                         => 'new_video',
            'bp_activity_admin_filter'          => __( 'Published a new video', 'custom-textdomain' ),
            'bp_activity_front_filter'          => __( 'Video', 'custom-textdomain' ),
            'bp_activity_new_post'              => __( '%1$s posted a new <a href="%2$s">video</a>', 'custom-textdomain' ),
            'bp_activity_new_post_ms'           => __( '%1$s posted a new <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ),
            'contexts'                          => array( 'activity', 'member' ),
            'comment_action_id'                 => 'new_video_comment',
            'bp_activity_comments_admin_filter' => __( 'Commented a video', 'custom-textdomain' ),
            'bp_activity_comments_front_filter' => __( 'Video Comments', 'custom-textdomain' ),
            'bp_activity_new_comment'           => __( '%1$s commented on the <a href="%2$s">video</a>', 'custom-textdomain' ),
            'bp_activity_new_comment_ms'        => __( '%1$s commented on the <a href="%2$s">video</a>, on the site %3$s', 'custom-textdomain' ),
            'position'                          => 100,
        ) );
        
    }
    add_action( 'bp_init', 'customize_page_tracking_args' );
    

    now only some of the activity shows up as there is no thumbnail image or a comment button. i might have misunderstood but i thought this would be all i needed. also i have alread enabled site tracking, indexing and allowed comments everywhere.

    here is the themes cpt registration where var $post_type = ‘video’;:

    
    	function register() {
    		    
    		  
    			register_post_type( $this->post_type, array(
    				'labels' => array(
    					'name' => __('Videos', 'themify'),
    					'singular_name' => __('Video', 'themify'),
    					'add_new' => __( 'Add New', 'themify' ),
    					'add_new_item' => __( 'Add New Video', 'themify' ),
    					'edit_item' => __( 'Edit Video', 'themify' ),
    					'new_item' => __( 'New Video', 'themify' ),
    					'view_item' => __( 'View Video', 'themify' ),
    					'search_items' => __( 'Search Videos', 'themify' ),
    					'not_found' => __( 'No Videos found', 'themify' ),
    					'not_found_in_trash' => __( 'No Videos found in Trash', 'themify' ),
    					'menu_name' => __( 'Videos', 'themify' ),
    				),
    				'supports' => array('title', 'editor', 'thumbnail', 'custom-fields', 'excerpt', 'comments'),
    				'hierarchical' => false,
    				'public' => true,
    				'exclude_from_search' => false,
    				'query_var' => true,
    				'can_export' => true,
    				'capability_type' => 'post',
    				'has_archive' => 'video-archive',
    				'menu_icon' => 'dashicons-format-video',
    				
    
    "taxonomies"=>array("category"),
    			));
    			register_taxonomy( $this->tax, array( $this->post_type ), array(
    				'labels' => array(
    					'name' => __( 'Video Categories', 'themify' ),
    					'singular_name' => __( 'Video Categories', 'themify' ),
    				),
    				'public' => true,
    				'show_in_nav_menus' => true,
    				'show_ui' => true,
    				'show_tagcloud' => true,
    				'hierarchical' => true,
    				'rewrite' => true,
    				'query_var' => true,
    			));
    			register_taxonomy( $this->tag, array( $this->post_type ), array(
    				'labels' => array(
    					'name' => __( 'Video Tags', 'themify' ),
    					'singular_name' => __( 'Video Tags', 'themify' ),
    				),
    				'public' => true,
    				'show_in_nav_menus' => true,
    				'show_ui' => true,
    				'show_tagcloud' => true,
    				'hierarchical' => false,
    				'rewrite' => true,
    				'query_var' => true,
    			));
    			if ( is_admin() ) {
    				add_filter('manage_edit-'.$this->tax.'_columns', array( $this, 'taxonomy_header' ), 10, 2);
    				add_filter('manage_'.$this->tax.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3);
    
    				add_filter('manage_edit-'.$this->tag.'_columns', array( $this, 'taxonomy_header' ), 10, 2);
    				add_filter('manage_'.$this->tag.'_custom_column', array( $this, 'taxonomy_column_id' ), 10, 3);
    			}
    		}
    

    the site is https://balalatet.com/activity/ if you’d like to see
    Please help

    peteroflynn
    Participant

    Not sure if this is a bug or just my experience.

    In Buddypress Groups member’s pages, the arrows and page numbers pagination links return the ‘No Members were found’ message in groups with more than 20 members – meaning you can’t see the other members. I have Buddypress 6.3 and WordPress 5.5.3. Happens with no other plugins active and no matter the theme (have tested Twenty Fifteen-Twenty).

    ‘Order by’ options also return ‘No Members were found’ message. Search does the same.

    I have tried BuddyPress repair tools. I even tried deleting ALL the other plugins (on the Staging site version). Nothing works – just seems broken.

    Here is a video of it: https://vimeo.com/479876989/00919cb869

    Can share a private link if necessary.

    #315578
    Etienne ROSENSTIEHL
    Participant

    As teacher, I am trying to use buddypress to communicate with the students and I have one group per class. This is still experimental and ‘work in progress’.

    When I select a group and click on members, the page shows all the members registered on the website instead of the restricted number of this group members.

    My website : http://www.rosenstiehl.net (sorry it’s French)
    I use WordPress version 5.5.3–fr_FR and Buddypress Version 6.3.0

    Thanks for your help
    Etienne R

    #315572
    simon_a6
    Participant

    Hi thinks have moved on.
    So here is the plan. Can you advise please.

    Person signs up for free account, and can immediate post and share on BP.
    But in turn, they can setup a free online store for digital content. We would use WC Product Vendor plugin for this. I dont’ know if we need the WC Membership plugin for that too though.

    People can then sign up as Subscribers via WC Subscriptions and pay a monthly fee, which will unlock the Store area, to view this digital content.

    The part I am unclear on, is how a BP person can use the store, and post on BP? Would they have to be subscribers too?? Since they are accessing the Shop areas of WordPress.

    In other words, can they only Post on the BP system, but to create a shop, also be subscribers to the platform…??

    Simon

    #315528
    davisdes
    Participant

    I am having an issue with my buddypress website located at devotedfellowship.org… Anytime someone registers, it saves a random password in the database. After they activate their account with email validation and try to login, it tells them that the password is incorrect for the username. However, once they use the password reset link and reset their password, it all works nicely.

    I need this fixed, as most my users will not go through all that hassle. I have disabled all non buddypress mandatory plugins and the issue persisted. I have reenabled them for the time so my current users can use the site. I have also made sure my buddypress and my wordpress versions are both updated to current and they were.

    Any help would be amazing and well received. Thanks,

    Matt

    Naomi
    Participant

    I’m running WordPress 5.5.3 running Executive Pro theme. Using Genesis 3.3.3.

    When a logged out user tries to access the community pages = Activity, Members, Groups, or Forum, it redirects them to the home page. I want it to direct them to the Register page so they know there is a community they can register for.

    In Settings > Buddypress > Pages I have the following set:

    Register > Register
    Activate > Activate

    When I click on “View” from there, it takes me to the home page (but I am logged in at that point since it’s the backend.)

    Please help. The activity page is here:

    Activity

    I am also running BP Registration Options in order to make BUddypress areas private.
    Thank you.

    #315499
    mkbond
    Participant

    Does anyone know how to incorporate replying to BuddyPress discussions within the activity feed? We are using the BuddyBoss platform and BuddyBoss custom theme.

    We are trying to be a mainly forum/discussion-based site and we don’t use WP comments. So I want to have users be able to just click a “Reply” button in the activity feed to reply right there, versus being redirected to a new page (similar to Facebook’s reply/comments but for discussions).

    We don’t modify the core files, only modify through child theme. We are also running bbPress through BuddyBoss. We have GoDaddy hosting with a LAMP managed server setup.

    WordPress v5.5.3
    BuddyBoss Platform v1.5.3
    BuddyBoss Theme 1.6.0

    #315467
    sx1001
    Participant

    I meant this link here: https://wordpress.org/support/topic/buddypress-profile-change-password-skipped/
    Here someone is complaining about it as well.
    So right now, no solution on the internet 🙁

    #315466
    sx1001
    Participant

    See, the plugin doesnt work on “password change” for existing users:
    https://wordpress.org/support/plugin/force-strong-passwords/

    🙁

    #315464
    iamthewebb
    Participant

    There should be plugins to handle this and I don’t think password is specifically part of BP so you may have more luck searching for wordpress solutions, I’ve customised the code on the following site in the past and it worked well https://sltaylor.co.uk/blog/enforce-strong-wordpress-passwords/

    #315454
    iamthewebb
    Participant

    Hi @jakeward
    I think image compression is a function of wordpress itself so you could try
    add_filter('jpeg_quality', function($arg){return 100;});
    and then the other suggestion above combined may help. This code would only affect new uploads.

    #315428
    iamthewebb
    Participant

    I think I can replicate this, I see a 400 bad request when I click the search button. Could you check your Developer Tools (F12), Network tab to see if you are getting the same. If so you could open a ticket on trac https://buddypress.trac.wordpress.org/

    #315376
    fiaso17
    Participant

    Hello,

    actually i’m trying to customize the activity form by adding some combo-boxes under the textarea (only for the homepage)

    i’m using BuddyPress 6.3.0

    This is the first time i’m using (WordPress,PHP,BuddyPress) so could you please help me 🙂

    William
    Participant

    Perhaps this will help someone else….This fixed the issue for me and I am using wp mail smtp plugin

    https://wordpress.org/support/topic/error-with-buddypress/

    ” You have to actually enable the wp_mail sending in BuddyPress via a filter: add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ )”

    #315363
    chrisproblade
    Participant

    So this has been an on and off issue I have struggled with using buddypress. Several users haven’t received an activation link. Whether it’s the fact that the link itself looks super spammy or some email servers have security issues with wordpress sending sketchy linksI have no idea. All I can say is with captcha plugins there really is no reason to force an activation link. A toggle feature should be added to buddypress to switch between auto account activation and email activation. I just had 5 people today say that the activation email was nowhere to be found. It makes it all the more frustrating when you are running paid ad’s to get sign ups on your site while this issue is happening. I’m on wp version5.5.3 and buddypress version 6.3.0 installed on the Arcane gaming theme by skywarriors.

    Wordpress Version 5.5.1
    BuddyPress Version 6.0.0 (updated to 6.30 but still have the same problem)
    Website: https://cannabisknowledgesociety.com

    New user registration emails are not being received by people signing up. (It says click link in email to register your account and they never receive an email)
    > Website under “Users” -> “Manage Signups” shows the new user and shows emails sent 1.
    > Website does sent emails in other circumstances. When I did a backup restore of the site, it auto sent an email to me and it worked. I used an email check plugin and test emails are sending through that
    > But the Registration Email is not sending.

    I’ve been trying to get this done the last two days straight and I’m really stuck here!

    #315284
    wenlu
    Participant

    I’m new to WordPress and now I’m doing a project that related to buddyPress. But I don’t know how to customize the BuddyPress User Interface. The others pages I customized is using the elementor. The theme support told me that I can’t use elementor to customize it. I did some research on Internet. Some of them said need to use child theme. Can anyone tell me what should I do to customize bbPress or BuddyPress ?

    Besides, I wonder what’s the difference between listing and post ?

    #315279
    jcfromkc
    Participant

    Try the WP Mail SMTP plugin to see if that helps.

    WP Mail SMTP by WPForms

    #315268

    When a new user registers, no activation email is sent out. I checked all the settings and don’t understand what seems to be the problem.
    WordPress emails are sending normally.

    Thank you very much in advance for your help.

    Alina

    #315262
    shanebp
    Moderator
    #315238

    In reply to: Private Chat

    jcfromkc
    Participant

    Wise Chat works with BP.

    Wise Chat

    #315204

    In reply to: Need some guidance

    shanebp
    Moderator

    Your problem is not specific to BP and therefore out of scope for this forums.
    Here is some general advice.
    Clone the site to a dev site and do all your testing there.
    Turn off any caching plugins, update plugins and theme.
    Switch to a WP theme to check for theme-specific issues.
    Turn plugins off and on to isolate issues.
    Check your logs carefully.
    Try using the Query Monitor plugin – great for all kinds of info re errors and queries.

    Query Monitor

    jcfromkc
    Participant

    In notifications-loop.php, <?php bp_the_notification_time_since(); ?> displays the time format as 1 day, 9 hours ago. This method of displaying the time and date is different from anything else on a WordPress/BuddyPress site. When viewing my site on mobile, this method of displaying the time and date looks horrible.

    Can someone please point me in the right direction to change this? Instead of the time/date format reading 1 day, 9 hours ago, I’d like to shorten it to 1d. I’m assuming that a custom filter can be created to archive this but I’ve been looking for months and cannot find any real help with this anywhere. Any guidance on this would be greatly appreciated.

    Thank you.

    #315179
    snakeice
    Participant

    Hi, i’ve created a website with wordpress and i’ve correctly set up buddypress and some groups.
    The question is: I’s possible to make pages availeable only for groups member? So that if i’m member of group A i can watch pages X, while normal visitor or member of groups B dont?
    Thanks and sorry for my english.

    #315170

    In reply to: Private Chat

    ImbaSynergy
    Participant

    Hello, our team has developed the chat plugin for BuddyPress with many useful functions, such as: group chat, emoji, sharing files, online consultant.
    There is also function of private chat between users.
    The Basic tariff plan is free without limits.

    ImbaChat

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