Search Results for 'theme'
-
Search Results
-
hey there,
I have a multi-language E-learning Website and I want to add attribute { dir=”auto” } to the P element inside the activity-innerI navigated to buddyboss-theme/buddybress/activity/entry.php
but I didn’t found the P element I’m looking for I just found this
<div class=”activity-inner”><?php bp_nouveau_activity_content(); ?></div>so can you please guide me how to add my attribute on all P elements in the <div class=”activity-inner”> element
regards, Mohamed
Hello,
I want to remove the private group setting and the hidden group setting on the group creation screen. (I want the user to only create public groups)
I know the corresponding lines on the php files but I don’t know how to activate the changes made.
When I delete the lines and upload the new files to my child theme, nothing changes …Could you please tell me where I should make the changes and where I should put the new files?
Thank you very much !!
WordPress version 5.5.3
Buddy Press Version 6.3.0
I have confirmed with Themes Twenty Twenty and Twenty Thirteen. The issue persists in both themes besides the BuddyX Theme.ISSUE:
Junk characters in ‘Message’ appear in Text blocks as in example here …
/*
Click on the message title to preview it in the Active conversation box below./*]]>*/
OR in …
/*
Sorry, no messages were found./*]]>*/
Also in the text entry block at the top of the Member Activity page …
/*Profile photo of Raj Bhatia/*]]>*/
Change profile photo, tab buttons are displayed thus …
/*Upload/*]]>*//*Take Photo/*]]>*//*Delete/*]]>*/I am trying to install BP on an existing WP installation. A few years ago, I hired an agency to customize my site, and they use a custom layout manager to build pages.
Possibly as a result, now that I’m installing BP, the pages such as
/members,/register,/activateetc are just being showing as blank pages.I’m suspecting that support here will be difficult to come by, but I’m hoping there’s some guidance on how to rebuild those pages using shortcodes, or maybe some advice for how to use custom php code to intercept and redirect to the standard BP templates or something.
I’m not new to coding, but always have a hard time navigating the spaghetti dependencies and conventions of overrides that is WP.
Please, ask me anything! Would love to figure this out.
I get a “There was a problem performing this action. Please try again.” notice error when I try to click the “Accept Invitation” button on one of the groups on the group page (mydomain.com/groups).
This seems to be only happening when using Nouveau. I tried removing all plugins and using Twenty Seventeen or Twenty Twenty theme. Both give the error when I try to accept. When I try using Legacy instead, it works fine. It’s just Nouveau is broken. And it’s only where all groups are listed on the /groups page. Accepting in my manage profile area works fine.
Anyone else have this problem?
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 helpNot 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.
Topic: Issue Redirection
Hi,
Thanks a lot for the plugin and this site.
I have a problem with the plugin in order that redirects to the homepage when it should redirect to /members/ for example.
Also, /register/ redirects to the homepage too. If I deactivate the plugin, pages do work.
What can I do? Where is the problem?I’m using Kleo theme in cleanice.es
Thanks a lot,Hello,
BuddyPress Activation and Registration Sites are missing ?
I use the “eduma” theme with a BuddyPress plugin, and the Activation and Registration Sites are missing ?
Shouldt those be setup automatically ?
And if not how can create or fix this problem?
This a Link to see whats it says : https://imgur.com/2KanI2Y
If I click repair it wont do anything.
Maybe I am just a stupid person but I dont how it would be creating an Activiation and Registration site manually, because the rest was created with the theme automatically.
If there is a way to fully delete the site and reinstall the theme “freshly” I would do that.
Thank you for the time and patience guys
Hello,
i am using buddyboss theme and invite anyone plugin.
i want to know if there is anyway to get total number of accepted inviations.
Regards,
Ibrar ahmadI’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 > ActivateWhen 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:
I am also running BP Registration Options in order to make BUddypress areas private.
Thank you.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.0Topic: Page Issue.
Hello, I have Avada Theme installed.
The Activity Feed like mysite.com/activity/ work well (when go directly). If I go to
mysite.com/members/wp_123456/activity/ the some parts of Avada template doesn’t view (its like a 404 error but with content).
I can show all buddypress content without avada template part because it know that page mysite.com/members/wp_6270831/activity/ doesn’t exist.Another example: If I go to mysite.com/groups work well
If I go to mysite.com/members/wp_123456/groups/ “Page doesnt’ exist” (for avada) but show the bb content.