Last active
May 2, 2026 18:02
-
-
Save nayeemch/93e3690d7776ef2b1f67c67fa2d49d49 to your computer and use it in GitHub Desktop.
aobb.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "2026-04-26", | |
| "updated_at": "2026-04-26T13:43:33Z", | |
| "blocks": [ | |
| { | |
| "remote_id": "activity-image-filter-on-bb", | |
| "version": "1.0.0", | |
| "name": "Activity image filter on BB", | |
| "default_active": false, | |
| "css_code": ".bb-activity-media-elem {\n display: flex !important;\n justify-content: center !important; /* horizontal center */\n align-items: center !important; /* vertical center */\n}\n.bb-activity-media-elem .entry-img {\n display: flex !important;\n justify-content: center !important;\n align-items: center !important;\n width: 100% !important;\n}\n.bb-activity-media-elem img {\n max-width: 100% !important;\n height: auto !important;\n display: block !important;\n}\n.bb-activity-media-wrap {\n max-width: 100% !important;\n}\n.bb-media-length-1 .bb-activity-media-elem.media-activity {\n flex: auto !important;\n}\n\n/* Container */\n.bb-activity-media-elem {\n position: relative !important;\n overflow: hidden !important;\n border-radius: 16px; /* optional modern rounded look */\n padding: 0 !important;\n}\n\n/* Blurred cloned image (background layer) */\n.bb-activity-media-elem .bb-blur-bg {\n position: absolute;\n inset: 0;\n width: 100%;\n height: 100%;\n object-fit: cover;\n filter: blur(40px) brightness(0.6);\n transform: scale(1.3);\n z-index: 0;\n pointer-events: none;\n}\n\n/* Glass overlay layer */\n.bb-activity-media-elem::after {\n content: \"\";\n position: absolute;\n inset: 0;\n backdrop-filter: blur(8px);\n background: rgba(255, 255, 255, 0.08);\n z-index: 1;\n}\n\n/* Sharp image wrapper */\n.bb-activity-media-elem .entry-img {\n position: relative;\n z-index: 2;\n display: flex !important;\n justify-content: center;\n align-items: center;\n}\n\n/* Front image */\n.bb-activity-media-elem .entry-img img {\n max-width: 100%;\n height: auto;\n box-shadow: 0 20px 40px rgba(0,0,0,0.25);\n}", | |
| "js_code": "jQuery(document).ready(function($){\n\n function addGlassBlur() {\n\n $(\".bb-activity-media-elem\").each(function(){\n\n var $container = $(this);\n var $img = $container.find(\".entry-img img\");\n\n if (!$img.length) return;\n\n if ($container.find(\".bb-blur-bg\").length) return;\n\n var $clone = $img.clone()\n .removeAttr(\"style\")\n .addClass(\"bb-blur-bg\");\n\n $container.prepend($clone);\n });\n }\n\n addGlassBlur();\n\n // For dynamic content (BuddyBoss infinite scroll safe)\n $(document).ajaxComplete(function(){\n addGlassBlur();\n });\n\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "back-to-top-button-bb", | |
| "version": "1.0.0", | |
| "name": "Back to Top Button BB", | |
| "default_active": false, | |
| "css_code": "", | |
| "js_code": "const backToTop = document.createElement('button');\nbackToTop.innerHTML = '↑';\nbackToTop.className = 'back-to-top';\nbackToTop.style.cssText = `\n position: fixed;\n bottom: 20px;\n right: 20px;\n padding: 10px 15px;\n background: #007bff;\n color: white;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n opacity: 0;\n transition: opacity 0.3s;\n z-index: 1000;\n`;\n\nwindow.addEventListener('scroll', () => {\n backToTop.style.opacity = window.scrollY > 300 ? '1' : '0';\n});\n\nbackToTop.addEventListener('click', () => {\n window.scrollTo({ top: 0, behavior: 'smooth' });\n});\n\ndocument.body.appendChild(backToTop);", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "center-login-logo-on-bb", | |
| "version": "1.0.0", | |
| "name": "Center Login Logo on BB", | |
| "default_active": false, | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_hook_login_enqueue_scripts() { ?>\n <style>\n body.login.login-split-page #login h1 a {\n margin-left: auto !important;\n }\n </style>\n<?php }\nadd_action( 'login_enqueue_scripts', 'bb_hook_login_enqueue_scripts', 1 );\n" | |
| }, | |
| { | |
| "remote_id": "remove-wordpress-wording-on-site-title", | |
| "version": "1.0.0", | |
| "name": "Remove WordPress wording on Site title", | |
| "default_active": false, | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'login_title', 'custom_login_title' );\n\nfunction custom_login_title() {\n $title = 'Log In';\n return get_bloginfo('name').' ‹ '.$title;\n}\n" | |
| }, | |
| { | |
| "remote_id": "automatically-disable-registration-validation-activation-key-and-approve-pending-users", | |
| "version": "1.0.0", | |
| "name": "Automatically disable Registration validation, activation key and approve pending users", | |
| "default_active": false, | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function disable_validation( $user_id ) {\n global $wpdb;\n\n // Ensure the user is marked as active\n $wpdb->query(\n $wpdb->prepare(\n \"UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d\",\n $user_id\n )\n );\n\n // Get all inactive signups\n $users = $wpdb->get_results(\n \"SELECT activation_key, user_login FROM {$wpdb->prefix}signups WHERE active = '0'\"\n );\n\n foreach ( $users as $user ) {\n\n // Activate the signup\n bp_core_activate_signup( $user->activation_key );\n BP_Signup::validate( $user->activation_key );\n\n // Assign default role\n $user_id = $wpdb->get_var(\n \"SELECT ID FROM $wpdb->users WHERE user_login = '$user->user_login'\"\n );\n\n if ( $user_id ) {\n $u = new WP_User( $user_id );\n $u->add_role( 'subscriber' );\n }\n }\n}\n\nadd_action( 'bp_core_signup_user', 'disable_validation' );\nadd_filter( 'bp_registration_needs_activation', '__return_false' );\nadd_filter( 'bp_core_signup_send_activation_key', '__return_false' );" | |
| }, | |
| { | |
| "remote_id": "disable-pressing-enter-from-sending-the-private-message", | |
| "version": "1.0.0", | |
| "name": "Disable pressing “Enter” from sending the private message", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-pressing-enter-from-sending-the-private-message/", | |
| "css_code": "", | |
| "js_code": "jQuery('#message_content').bind('keydown', function(e) {\n if (e.keyCode == 13) {\n e.preventDefault();\n }\n });\n\nNote: Any modifications are considered as custom work already. Know more about our Support Policy here: \nhttps://buddyboss.com/support-policy/", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-sign-in-button-text", | |
| "version": "1.0.0", | |
| "name": "How to Change the “Sign in” Button Text", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-sign-in-button-text/", | |
| "css_code": "", | |
| "js_code": "document.addEventListener(\"DOMContentLoaded\", function() { const signInButton = document.querySelector(\"a.button.small.outline.signin-button.link\"); if (signInButton) { signInButton.innerText = \"Text Here\"; }});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "notify-me-of-new-replies-default-enabled", | |
| "version": "1.0.0", | |
| "name": "Notify me of new replies default enabled", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/notify-me-of-new-replies-default-enabled/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function($) {\n $(\"#bbp_topic_subscription\").prop('checked', true);\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "add-a-message-on-the-activation-code-page", | |
| "version": "1.0.0", | |
| "name": "Add a message on the Activation Code Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/add-a-message-on-the-activation-code-page/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function($) {\n // Select the paragraph containing the original sentence\n var $paragraph = $('div#register-page aside.bp-feedback.bp-messages.info p');\n // Append the new sentence\n $paragraph.append(' Please also check your spam folder.');\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-the-learndash-course-page-in-list-view-by-default", | |
| "version": "1.0.0", | |
| "name": "Display the LearnDash Course Page in List View By Default", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-the-learndash-course-page-in-list-view-by-default/", | |
| "css_code": "", | |
| "js_code": "jQuery( document ).ready( function(){ jQuery( '#course-dir-list .bb-course-items' ).addClass('list-view bb-list'); jQuery('a.layout-grid-view').removeClass('active'); jQuery('a.layout-list-view').addClass('active'); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-post-comment-truncated-with-the-read-more-button", | |
| "version": "1.0.0", | |
| "name": "How to Make the Post Comment Truncated with the Read More Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-post-comment-truncated-with-the-read-more-button/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function($) {\n $('.comment').each(function() {\n var fullText = $(this).find('.comment-text').text();\n var excerptLength = 200; // Adjust the excerpt length as needed\n\n if (fullText.length > excerptLength) {\n var excerpt = fullText.substring(0, excerptLength);\n var remainingText = fullText.substring(excerptLength);\n\n $(this).find('.comment-text').html(excerpt + '<span class=\"comment-excerpt\">' + remainingText + '</span>' +\n '<a class=\"read-more-comment\" href=\"#\"> Read More</a>');\n\n $(this).find('.comment-excerpt').hide();\n\n $(this).on('click', '.read-more-comment', function(e) {\n e.preventDefault();\n var excerptElem = $(this).prev('.comment-excerpt');\n excerptElem.toggle();\n if (!excerptElem.is(':hidden')) {\n $(this).hide();\n }\n });\n }\n });\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-no-forum-option-from-the-dropdown-list-of-forums-in-the-discussion-editor", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “No Forum” Option from the Dropdown List of Forums in the Discussion Editor", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-no-forum-option-from-the-dropdown-list-of-forums-in-the-discussion-editor/", | |
| "css_code": "", | |
| "js_code": "$(document).ready(function() { $(\"#bbp_forum_id\").find(\"option\").eq(0).remove(); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "activity-feed-how-to-make-the-connections-as-the-default-tab-instead-of-the-all-updates-tab", | |
| "version": "1.0.0", | |
| "name": "Activity Feed: How to Make the “Connections” as the Default Tab Instead of the “All Updates” tab", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/activity-feed-how-to-make-the-connections-as-the-default-tab-instead-of-the-all-updates-tab/", | |
| "css_code": "", | |
| "js_code": "/** CHANGE THE DEFAULT TAB ON THE ACTIVITY FEED **/ jQuery(document).ready(function() { jQuery(\"#activity-friends\").addClass(\"selected\"); jQuery(\"#activity-all\").removeClass(\"selected\"); jQuery(\"#activity-friends .bb-component-nav-item-point\").click(); }); /** END **/", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-password-reset-pages-back-to-link-to-point-to-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Password Reset Page’s “Back to” Link to Point to the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-password-reset-pages-back-to-link-to-point-to-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// custom code for back to login page link\nfunction custom_login_logo() {\n echo '<script>\n jQuery( document ).ready( function(){\n jQuery(\"#backtoblog a\").attr(\"href\", \"https://phoenix-healing-circle.org/login\");\n jQuery(\"#backtoblog a\").text(\"Back to Login\");\n}); \n</script>';\n}\nadd_action('login_head', 'custom_login_logo');" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-default-tab-to-my-groups-on-groups-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Default Tab to “My Groups” on Groups Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-default-tab-to-my-groups-on-groups-page/", | |
| "css_code": "", | |
| "js_code": "/** CHANGE THE DEFAULT TAB ON THE GROUPS PAGE**/ jQuery(document).ready(function() { jQuery(\"#groups-personal .bb-component-nav-item-point\").click(); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-expand-the-buddypanel-submenu-by-default", | |
| "version": "1.0.0", | |
| "name": "How to Expand the BuddyPanel Submenu by Default", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-expand-the-buddypanel-submenu-by-default/", | |
| "css_code": "", | |
| "js_code": "/** CHANGE THE DEFAULT TAB ON THE GROUPS PAGE**/\n\njQuery(document).ready(function() { jQuery(\"#groups-personal\n\n.bb-component-nav-item-point\").click(); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-buddypanel-expand-when-a-user-hover-the-cursor-over-it", | |
| "version": "1.0.0", | |
| "name": "How to Make the BuddyPanel Expand When a User Hover the Cursor Over it", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-buddypanel-expand-when-a-user-hover-the-cursor-over-it/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function($) {\n$(\".buddypanel\").hover(\nfunction() {\n// On mouseover\n$(\"body\").addClass(\"buddypanel-open\");\n},\nfunction() {\n// On mouseout\n$(\"body\").removeClass(\"buddypanel-open\");\n}\n);\n\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-enter-on-messages-pop-up-field", | |
| "version": "1.0.0", | |
| "name": "How to Disable Enter on Messages Pop Up Field", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-disable-enter-on-messages-pop-up-field/", | |
| "css_code": "", | |
| "js_code": "jQuery('#message_content').bind('keydown', function(e) { if (e.keyCode == 13) { e.preventDefault(); } }); JavaScript", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-my-group-as-the-landing-page-when-accessing-the-group-page", | |
| "version": "1.0.0", | |
| "name": "How to Make My Group as the Landing Page when Accessing the Group Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-my-group-as-the-landing-page-when-accessing-the-group-page/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function() { jQuery(\"#groups-personal .bb-component-nav-item-point\").click(); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-keep-the-buddypanel-sub-menu-always-open", | |
| "version": "1.0.0", | |
| "name": "How to Keep the BuddyPanel Sub Menu Always Open", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-keep-the-buddypanel-sub-menu-always-open/", | |
| "css_code": "", | |
| "js_code": "document.addEventListener(\"DOMContentLoaded\", function() { var subMenu = document.querySelector(\".sub-menu\"); subMenu.classList.add(\"bb-open\"); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "buddypanel-close-by-default-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "BuddyPanel close by default on Mobile view", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/buddypanel-close-by-default-on-mobile-view/", | |
| "css_code": "", | |
| "js_code": "/** 226408 - CLOSED THE BUDDYPANEL ON TABLET **/\n\n window.onload = function() {\n\n if (jQuery(window).width() < 1024) {\n\n jQuery(\"body\").removeClass( \"buddypanel-open\" );\n\n }\n\n }", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-sign-up-button-text", | |
| "version": "1.0.0", | |
| "name": "Change the “Sign up” Button Text", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-sign-up-button-text/", | |
| "css_code": "", | |
| "js_code": "// Find the Sign Up button by its CSS selector\nvar signUpButton = document.querySelector('a.button.small.signup');\n\n\n// Check if the button element exists\nif (signUpButton) {\n // Change the button's text content\n signUpButton.textContent = 'Register Here';\n}", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-following-as-the-default-tab-in-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Make the “Following” as the Default Tab in the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-following-as-the-default-tab-in-the-activity-feed/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function() {\n\n\njQuery(\"#activity-following\").addClass(\"selected\");\n\n\njQuery(\"#activity-all\").removeClass(\"selected\");\n\n\njQuery(\"#activity-following .bb-component-nav-item-point\").click();\n\n\n});", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-link-of-the-sign-in-button-in-the-registration-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Link of the “Sign in” Button in the Registration Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-link-of-the-sign-in-button-in-the-registration-page/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function($) { $(\".bp_register .entry-header span a\").attr(\"href\", \"https://baseurl/new-login/\"); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "redirect-buddypanel-logo-to-a-custom-url", | |
| "version": "1.0.0", | |
| "name": "Redirect BuddyPanel Logo to a custom URL", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-buddypanel-logo-to-a-custom-url/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function() { jQuery('.buddypanel-logo a').attr('href', 'https://your-custom-url.com'); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "edit-the-my-account-link", | |
| "version": "1.0.0", | |
| "name": "Edit the “My Account” link", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/edit-the-my-account-link/", | |
| "css_code": "", | |
| "js_code": "jQuery( document ).ready( function(){ jQuery('.my-account-link a').prop('href', 'https://demos.buddyboss.com/online-communities/'); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "rerouting-the-link-when-profile-name-click-in-profile-dropdown", | |
| "version": "1.0.0", | |
| "name": "Rerouting the link when profile name click in profile dropdown", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/rerouting-the-link-when-profile-name-click-in-profile-dropdown/", | |
| "css_code": "", | |
| "js_code": "jQuery( document ).ready( function($){ $(\".sub-menu-inner .user-link\").attr(\"href\", \"http://www.customurl.com/\"); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-url-of-the-sign-up-button", | |
| "version": "1.0.0", | |
| "name": "Change the URL of the Sign Up button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-url-of-the-sign-up-button/", | |
| "css_code": "", | |
| "js_code": "jQuery( document ).ready( function() { jQuery(\".bb-header-buttons > .button.signup\").attr(\"href\", \"https://LINK.HERE/\") });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "opening-new-tab-when-clicked-the-link", | |
| "version": "1.0.0", | |
| "name": "Opening New Tab When Clicked the Link", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/opening-new-tab-when-clicked-the-link/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function(){ jQuery('.registration .description a').attr( 'target','_blank' ) });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-logo-link-in-header-for-web-and-mobile-views", | |
| "version": "1.0.0", | |
| "name": "Disable Logo Link in Header for Web and Mobile Views", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-logo-link-in-header-for-web-and-mobile-views/", | |
| "css_code": "", | |
| "js_code": "jQuery(document).ready(function ($) { $(\"#site-logo a\").attr(\"href\", \"Place the link here\"); });\n\njQuery( document ).ready( function(){ jQuery(\"h2.site-title > a\").attr('href', 'Place the link here'); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "set-up-my-courses-as-the-default-tab-on-the-courses-page", | |
| "version": "1.0.0", | |
| "name": "Set up “My Courses” as the Default Tab on the Courses page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/setting-my-courses-as-the-default-tab-on-the-courses-page/", | |
| "css_code": "", | |
| "js_code": "jQuery(\"document\").ready(function() { setTimeout(function() { jQuery('.learndash-course-list .component-navigation a[href*=\"my-\"]').trigger('click'); },10); });", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-wistia-video-embed-responsivefull-width", | |
| "version": "1.0.0", | |
| "name": "Make Wistia Video Embed Responsive/Full width", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-wistia-video-embed-responsive-full-width/", | |
| "css_code": "", | |
| "js_code": "jQuery(\"iframe.wistia_embed\").wrap(\"<div class='fluid-width-video-wrapper' style='padding-top: 56.25%;'></div>\");", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-links-open-in-a-new-tab-with-ease", | |
| "version": "1.0.0", | |
| "name": "Make Links Open in a New Tab with Ease", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-links-open-in-a-new-tab/", | |
| "css_code": "", | |
| "js_code": "var bb_links = document.links; for (var i = 0; i < bb_links.length; i++) { bb_links[i].target = \"_blank\"; }", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-shopping-cart-icon-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Shopping Cart Icon for Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-shopping-cart-to-log-out-users/", | |
| "css_code": "body:not(.logged-in) .header-aside-inner div.cart-wrap { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-social-share-on-blog-page", | |
| "version": "1.0.0", | |
| "name": "Hide Social Share on Blog Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-social-share-on-blog-page/", | |
| "css_code": "body.single-post #content div.author-box-share-wrap i.bb-icon-l {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hiding-privacy-option-like-all-members-my-connection-and-only-me-when-uploading-photos", | |
| "version": "1.0.0", | |
| "name": "Hiding Privacy option like “All Members”, “My Connection” and “Only Me” when Uploading Photos", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-privacy-option-like-all-members-my-connection-and-only-me-when-uploading-photos/", | |
| "css_code": "#bb-media-privacy option[value=loggedin],\n#bb-media-privacy option[value=friends],\n#bb-media-privacy option[value=onlyme] {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-site-header", | |
| "version": "1.0.0", | |
| "name": "Hide the Site Header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-site-header/", | |
| "css_code": ".site-header.site-header--bb {\n\n display: none !important;\n\n}\n\n.page-id-123 .site-header.site-header--bb { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-textbox-when-requesting-group-access", | |
| "version": "1.0.0", | |
| "name": "Hide the Textbox When Requesting Group Access", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-textbox-when-requesting-group-access/", | |
| "css_code": "#request-membership-form #group-request-membership-comments {\n\n display: none;\n\n}\n\n#group-123 #group-request-membership-comments { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-menu-items-on-group-page", | |
| "version": "1.0.0", | |
| "name": "Hide Menu Items on Group Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-menu-items-on-group-page/", | |
| "css_code": ".groups-nav li#photos-groups-li,\n\n.groups-nav li#albums-groups-li,\n\n.groups-nav li#documents-groups-li,\n\n.groups-nav li#videos-groups-li {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-number-of-replies-and-members-for-a-group-or-forum-discussion", | |
| "version": "1.0.0", | |
| "name": "Hide Number of Replies and Members for a Group or Forum Discussion", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-number-of-replies-and-members-for-a-group-forum-discussion/", | |
| "css_code": "span.bs-voices,\n\nspan.bs-replies {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-learndash-status-inside-the-content-area-of-a-single-course-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Learndash Status Inside the Content Area of a Single Course Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-learndash-status-inside-the-content-area-of-a-single-course-page/", | |
| "css_code": "/** HIDE LEARNDASH STATUS **/\n.single-sfwd-courses .ld-course-status {\n display: none !important;\n}\n/** END **/\n\nNote\n: Any modifications are considered as custom work already. Know more about our Support policy here: \nhttps://buddyboss.com/support-policy/", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-joined-x-days-ago-label-on-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “Joined X Days Ago” Label on BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-joined-x-days-ago/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Remove the \"Joined X Days Ago\" label from members\nfunction bb_remove_joined_date( $meta, $member, $is_loop ) {\n unset( $meta['last_activity'] );\n return $meta;\n}\nadd_filter( 'bp_nouveau_get_member_meta', 'bb_remove_joined_date', 20, 3 );" | |
| }, | |
| { | |
| "remote_id": "manually-adjust-the-header-menu-when-using-an-rtl-language", | |
| "version": "1.0.0", | |
| "name": "Manually adjust the Header Menu when using an RTL language", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/manually-adjust-the-header-menu-when-using-an-rtl-language/", | |
| "css_code": "nav#site-navigation {\n margin-left: 7pc;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "manually-adjust-the-logo-when-using-an-rtl-site-language", | |
| "version": "1.0.0", | |
| "name": "Manually adjust the Logo when using an RTL site language", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/manually-adjust-the-logo-when-using-an-rtl-site-language/", | |
| "css_code": ".site-header-container .site-branding {\n margin-right: -3.3pc;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "memberpress-squeezing-the-text-layout-by-default", | |
| "version": "1.0.0", | |
| "name": "MemberPress Squeezing the Text Layout by Default", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/memberpress-squeezing-the-text-layout-by-default/", | |
| "css_code": ".mepr-login-page .mp_wrapper {\n max-width: 100% !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-navigation-arrow-concern", | |
| "version": "1.0.0", | |
| "name": "Mobile view navigation arrow concern", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-navigation-arrow-concern/", | |
| "css_code": "@media (max-width: 769px) {\n a.theater-command.bb-prev-media,\n a.theater-command.bb-next-media {\n background: rgba(0, 0, 0, 0.7);\n width: auto;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "manually-adjust-the-header-menu-and-logo-when-using-an-rtl-site-language", | |
| "version": "1.0.0", | |
| "name": "Manually adjust the Header Menu and Logo when using an RTL site language", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/manually-adjust-the-header-menu-and-logo-when-using-an-rtl-site-language/", | |
| "css_code": "nav#site-navigation {\n margin-left: 7pc;\n}\n\n.site-header-container .site-branding {\n margin-right: -3.3pc;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-change-the-color-of-the-discussion-reply-count", | |
| "version": "1.0.0", | |
| "name": "Mobile View: Change the Color of the Discussion Reply Count", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-change-the-color-of-the-discussion-reply-count/", | |
| "css_code": "/* Styles to change the color of the element for mobile devices */ @media (max-width: 767px) { #bbpress-forums .bs-single-forum-list>li.bs-header-item.header-total-reply-count { color: red; /* Replace \"red\" with your desired color */ } }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-group-title-is-cut-off-on-some-mobile-screens", | |
| "version": "1.0.0", | |
| "name": "Mobile View: Group Title is Cut Off on Some Mobile Screens", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-group-title-is-cut-off-on-some-mobile-screens/", | |
| "css_code": "/** GROUP TITLE WRAP **/ @media (max-width: 782px) and (min-width: 381px) { body.groups .flex.align-items-center.bp-group-title-wrap { display: block; } } /** END **/", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-hide-the-discussion-states", | |
| "version": "1.0.0", | |
| "name": "Mobile View: Hide the Discussion States", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-hide-the-discussion-states/", | |
| "css_code": "@media (max-width: 767px) { .bb-topic-states.push-right.flex { display: none; } }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-new-discussion-button-in-standalone-forums-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “New Discussion” Button in Standalone Forums on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-how-to-hide-the-new-discussion-button-in-standalone-forums/", | |
| "css_code": "@media (max-width: 767px) {\n\n .btn-new-topic {\n\n display: none !important;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-learndash-breadcrumb-background-transparent", | |
| "version": "1.0.0", | |
| "name": "Make the LearnDash breadcrumb background transparent", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-learndash-breadcrumb-background-transparent/", | |
| "css_code": ".learndash-wrapper .ld-lesson-status {\n background: transparent !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-icons-bigger-and-remove-the-outline-border-around-gamipress-points-and-ranks", | |
| "version": "1.0.0", | |
| "name": "Make the Icons Bigger and Remove the Outline Border around GamiPress Points and Ranks", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-icons-bigger-and-remove-the-outline-border-around-gamipress-points-and-ranks/", | |
| "css_code": ".item-avatar .gamipress-buddypress-user-details-listing .gamipress-buddypress-points > div,\n.item-avatar .gamipress-buddypress-user-details-listing .gamipress-buddypress-ranks .gamipress-buddypress-rank {\n border: none;\n box-shadow: none;\n}\n\n.gamipress-buddypress-rank-thumbnail > img,\n.gamipress-buddypress-points-thumbnail > img {\n width: 40px !important;\n height: 40px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-buddypanel-icons-bigger", | |
| "version": "1.0.0", | |
| "name": "Make the BuddyPanel icons bigger", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-buddypanel-icons-bigger/", | |
| "css_code": "#buddypanel-menu i._before.buddyboss {\n font-size: 30px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-how-to-change-the-color-of-the-leave-group-button-on-the-group-directory", | |
| "version": "1.0.0", | |
| "name": "Mobile View: How to Change the Color of the “Leave Group” Button on the Group Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-how-to-change-the-color-of-the-leave-group-button-on-the-group-directory/", | |
| "css_code": "@media screen and (max-width: 767px) { #groups-list.bp-list .item-entry .list-wrap .group-footer-wrap .footer-button-wrap .group-button:not(.generic-button):hover { /* Add your desired hover styles here */ background-color: #FF0000; } }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-products-smaller-in-the-single-product-page", | |
| "version": "1.0.0", | |
| "name": "Make the Products Smaller in the Single Product Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-products-smaller-in-the-single-product-page/", | |
| "css_code": "#content div.product div.woocommerce-product-gallery.images {\n width: 40%;\n -webkit-box-flex: 0;\n -ms-flex: 0 0 40%;\n flex: 0 0 40%;\n min-width: 40%;\n}\n\n.woocommerce #content div.product div.summary,\n.woocommerce div.product div.summary,\n.woocommerce-page #content div.product div.summary,\n.woocommerce-page div.product div.summary {\n width: 60%;\n}\n\n#content div.product div.summary {\n width: 60%;\n -webkit-box-flex: 0;\n -ms-flex: 0 0 60%;\n flex: 0 0 60%;\n min-width: 60%;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-learndash-pagination-stickyfloat", | |
| "version": "1.0.0", | |
| "name": "Make the LearnDash pagination sticky/float", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-learndash-pagination-sticky-float/", | |
| "css_code": ".learndash_next_prev_link.sticky {\n position: fixed;\n top: 125px;\n right: 100px;\n z-index: 9;\n}\n\njQuery(document).ready(function() {\n jQuery(window).on('scroll', function() {\n if ($(window).width() > 1199) {\n if (jQuery(window).scrollTop() > 80) {\n jQuery('.learndash_next_prev_link').addClass('sticky');\n } else {\n jQuery('.learndash_next_prev_link').removeClass('sticky');\n }\n }\n });\n});", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "mobile-view-hide-the-groups-widget", | |
| "version": "1.0.0", | |
| "name": "Mobile View: Hide the Groups Widget", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-hide-the-groups-widget/", | |
| "css_code": "/* For mobile view */ @media (max-width: 767px) { .single-item.groups.has-sidebar .widget-area:not(.widget-area-secondary) { display: none; } }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-users-link-not-clickable-when-sending-invites-within-the-group", | |
| "version": "1.0.0", | |
| "name": "Make the User’s Link Not Clickable When Sending Invites Within the Group", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-users-link-not-clickable-when-sending-invites-within-the-group/", | |
| "css_code": "div.list-title.member-name {\n pointer-events: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-website-header-transparent", | |
| "version": "1.0.0", | |
| "name": "Make Website Header Transparent", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-website-header-transparent/", | |
| "css_code": ".site-header {\n background-color: rgba(0, 10, 40, 0);\n box-shadow: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-course-includes-text-in-the-learndash-course", | |
| "version": "1.0.0", | |
| "name": "Hide the Course Includes Text in the LearnDash Course", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/mobile-view-hide-the-course-includes-text-in-the-learndash-course/", | |
| "css_code": ".bb-course-volume h4 {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-sidebar-in-activity-feed-non-sticky", | |
| "version": "1.0.0", | |
| "name": "Make the Sidebar in Activity Feed Non-sticky", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-sidebar-in-activity-feed-non-sticky/", | |
| "css_code": ".bb-sticky-sidebar {\n position: static !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "making-card-rows-increased-from-3-to-4-in-members-directory", | |
| "version": "1.0.0", | |
| "name": "Making Card rows increased from 3 to 4 in Members’ directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/making-card-rows-increased-from-3-to-4-in-members-directory/", | |
| "css_code": "@media screen and (min-width: 75em) {\n .buddypress-wrap .grid.bp-list > li {\n flex: 0 0 25%;\n }\n}\n\n#buddypress .members-list > li {\n min-width: 25%;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-buddypanel-on-specific-pages", | |
| "version": "1.0.0", | |
| "name": "How to Hide the BuddyPanel on Specific Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-remove-the-buddypanel-on-specific-pages/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Remove BuddyPanel on certain pages\n\nfunction bb_remove_buddypanel_menu() { \n\n // Replace the numbers in the array with the Page IDs where you want to remove BuddyPanel\n\n if( is_page( array( 1, 2, 3, 4 ) ) ) {\n\n unregister_nav_menu('buddypanel-loggedin'); \n\n unregister_nav_menu('buddypanel-loggedout'); \n\n } \n\n}\n\nadd_action( 'template_redirect', 'bb_remove_buddypanel_menu', 20 );" | |
| }, | |
| { | |
| "remote_id": "how-to-show-website-footer-in-learndash-lessons-topics-and-quizzes", | |
| "version": "1.0.0", | |
| "name": "How to Show Website Footer in LearnDash Lessons, Topics, and Quizzes", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/show-website-footer-in-learndash-lesson-topics-and-quizzes/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function buddyboss_theme_remove_footer_learndash() { \n\n if( buddypanel_is_learndash_inner() ) { \n\n return false; \n\n }\n\n}" | |
| }, | |
| { | |
| "remote_id": "make-the-members-directory-page-unsearchable", | |
| "version": "1.0.0", | |
| "name": "Make the Members’ Directory Page Unsearchable", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-members-directory-page-unsearchable/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bp_redirect_to_404() { if( is_page('members') ){ wp_redirect( site_url('/404/'), 301 ); exit; } } add_action( 'template_redirect', 'bp_redirect_to_404' );" | |
| }, | |
| { | |
| "remote_id": "redirect-users-to-specific-page-after-login", | |
| "version": "1.0.0", | |
| "name": "Redirect Users to Specific Page after Login", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-users-to-specific-page-after-login/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "//Redirect after login function bb_admin_default_page() { return 'INSERT URL HERE'; } add_filter('login_redirect', 'bb_admin_default_page', 100, 3);" | |
| }, | |
| { | |
| "remote_id": "stop-users-from-receiving-the-email-notice-of-email-change", | |
| "version": "1.0.0", | |
| "name": "Stop users from receiving the email “Notice of Email Change”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/stop-users-from-receiving-the-email-notice-of-email-change/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter('send_email_change_email', '__return_false');" | |
| }, | |
| { | |
| "remote_id": "how-to-use-the-username-instead-of-the-nickname-for-direct-messaging", | |
| "version": "1.0.0", | |
| "name": "How to Use the Username Instead of the Nickname for Direct Messaging", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-use-the-username-instead-of-the-nickname-for-direct-messaging/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_override_button_message() {\n return apply_filters(\n 'bp_get_send_private_message_link',\n wp_nonce_url(\n bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( bp_displayed_user_id() )\n )\n );\n}\nadd_filter( 'bp_get_send_private_message_link', 'bb_override_button_message' );" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-the-time-format-on-buddyboss-messages", | |
| "version": "1.0.0", | |
| "name": "How to Fix the Time Format on BuddyBoss Messages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-fix-the-time-format-on-buddyboss-messages/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_change_time_format_to_wp_time( $site_sent_date ) {\n\n if ( function_exists( 'bp_get_the_thread_message_date_sent' ) ) {\n\n $sent_date = bp_get_the_thread_message_date_sent();\n\n $sent_date_formatted = wp_date( 'Y-m-d h:i:s', $sent_date );\n\n $site_sent_date = get_date_from_gmt( $sent_date_formatted );\n\n $time_format = get_option( 'time_format' );\n\n $time_format = ! empty( $time_format ) ? $time_format : 'g:i a';\n\n $site_sent_date = wp_date( $time_format, strtotime( $site_sent_date ) );\n\n }\n\n return $site_sent_date;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-an-unaligned-language-switcher-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Fix an Unaligned Language Switcher on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-fix-an-unaligned-language-switcher-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_login_logo() {\n echo '<style type=\"text/css\">\n .wpml-login-ls { text-align: right !important; margin-right: 34px !important; }\n .login form { margin-top: 0px !important; }\n </style>';\n}\nadd_action('login_head', 'custom_login_logo');" | |
| }, | |
| { | |
| "remote_id": "redirect-user-after-account-creation", | |
| "version": "1.0.0", | |
| "name": "Redirect User after Account Creation", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-user-after-account-creation/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function redirect_to_page( $redirect_to_calculated, $redirect_url_specified, $user ) { return home_url() .\"/welcomepage-slug/\" ; } add_filter( 'login_redirect', 'redirect_to_page', 100, 3 );" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-wordpress-in-the-link-preview", | |
| "version": "1.0.0", | |
| "name": "How to Remove “WordPress” in the Link Preview", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-wordpress-in-the-link-preview/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'login_title', 'custom_login_title' );\n\nfunction custom_login_title() {\n\n $title = 'Log In';\n\n return get_bloginfo('name').' < '.$title;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-redirect-users-to-login-after-registration", | |
| "version": "1.0.0", | |
| "name": "How to Redirect Users to Login After Registration", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-users-to-the-login-page-after-account-creation-bypassing-the-successfully-registered-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "remove_action( 'bp_actions', 'bp_members_action_activate_account_custom' );\n\nfunction bp_members_action_activate_account_custom() {\n\n if ( ! bp_is_current_component( 'activate' ) ) {\n\n return;\n\n }\n\n if ( is_user_logged_in() ) {\n\n return;\n\n }\n\n if ( ! empty( $_POST['key'] ) ) {\n\n $key = wp_unslash( $_POST['key'] );\n\n } elseif ( ! empty( $_GET['key'] ) ) {\n\n $key = wp_unslash( $_GET['key'] );\n\n }\n\n if ( empty( $key ) ) {\n\n return;\n\n }\n\n $bp = buddypress();\n\n $user = apply_filters( 'bp_core_activate_account', bp_core_activate_signup( $key ) );\n\n // If there were errors, add a message and redirect\n\n if ( ! empty( $user->errors ) ) {\n\n bp_core_add_message( $user->get_error_message(), 'error' );\n\n bp_core_redirect( trailingslashit( bp_get_root_domain() . '/' . $bp->pages->activate->slug ) );\n\n }\n\n bp_core_add_message( __( 'Your account is now active!', 'buddyboss' ) );\n\n // Redirect users to the login page instead of the confirmation page\n\n bp_core_redirect( 'http://buddyboss.local/login/' );\n\n}\n\nadd_action( 'bp_actions', 'bp_members_action_activate_account_custom' );" | |
| }, | |
| { | |
| "remote_id": "remove-wordpress-from-a-page", | |
| "version": "1.0.0", | |
| "name": "Remove “WordPress” from a Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-wordpress-from-a-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'admin_title', 'my_admin_title', 10, 2 ); function my_admin_title( $admin_title, $title ) { return get_bloginfo('name').' • '.$title; }" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-generate-password-button-on-the-buddyboss-password-reset-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Generate Password Button on the BuddyBoss Password Reset Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-generate-password-button-on-the-password-reset-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'random_password', 'disable_random_password', 10, 2 );\nfunction disable_random_password( $password ) {\n $action = isset( $_GET['action'] ) ? $_GET['action'] : '';\n if ( 'wp-login.php' === $GLOBALS['pagenow'] && ( 'rp' == $action || 'resetpass' == $action ) ) {\n return '';\n }\n return $password;\n}\n\nfunction login_fields_border() {\n echo '<style> button.button.wp-generate-pw.hide-if-no-js { display: none !important; } </style>';\n}\nadd_action('login_head', 'login_fields_border');" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-alphabetical-sort-option-in-the-members-directory-filter", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “Alphabetical” Sort Option in the Members Directory Filter", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-alphabetical-sort-option-in-the-members-directory-filter/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_nouveau_get_members_filters', 'bb_remove_atoz_memebers_sort', 10, 2 );\n\nfunction bb_remove_atoz_memebers_sort( $filters, $context ) {\n\n unset( $filters['alphabetical'] );\n\n return $filters;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-order-courses-on-the-buddyboss-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Order Courses on the BuddyBoss Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-order-courses-on-the-buddyboss-profile-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_buddyboss_my_courses_ordering( $args, $user_id ) {\n\n // Modify the query only for the \"My Courses\" section\n\n $args['meta_key'] = 'course_order'; // Custom field for the course order\n\n $args['orderby'] = 'meta_value_num'; // Sorting by the course order value (numeric)\n\n $args['order'] = 'ASC'; // Change to 'DESC' if you want descending order\n\n return $args;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-email-verification-and-manually-activate-a-newly-registered-user", | |
| "version": "1.0.0", | |
| "name": "How to Disable email verification and manually activate a newly registered user", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-disable-email-verification-and-manually-activate-a-newly-registered-user/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_core_signup_send_activation_key', 'ps_disable_activation_email' );\n\nfunction ps_disable_activation_email() { \n\n return false; \n\n}\n\nadd_filter( 'gettext', 'ps_change_activation_message', 20, 3 );\n\nfunction ps_change_activation_message( $translated_text, $text, $domain ) {\n\n switch ( $translated_text ) {\n\n case 'Before you can login, you need to confirm your email address via the email we just sent to you.' :\n\n $translated_text = __( 'Your membership account is awaiting approval by the site administrator.', 'buddypress' );\n\n break;\n\n }\n\n return $translated_text;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-restrict-users-to-the-wordpress-admin-page", | |
| "version": "1.0.0", | |
| "name": "How to Restrict Users to the WordPress Admin Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-restrict-users-to-the-wordpress-admin-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_restrict_admin_only() {\n\n if ( ! current_user_can( 'manage_options' ) && ( ! wp_doing_ajax() ) ) {\n\n wp_safe_redirect( site_url() );\n\n exit;\n\n }\n\n}\n\nadd_action( 'admin_init', 'bb_restrict_admin_only', 1 );" | |
| }, | |
| { | |
| "remote_id": "how-to-set-forum-discussion-replies-to-descending-order", | |
| "version": "1.0.0", | |
| "name": "How to Set Forum Discussion Replies to Descending Order", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-set-forum-discussion-replies-to-descending-order/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bbp_before_has_replies_parse_args', 'buddyboss__change_replies_order' );\n\nfunction buddyboss__change_replies_order( $r ) {\n\n $r['order'] = 'DESC';\n\n return $r;\n\n}\n\nadd_filter( 'bb_get_parent_reply_position', 'buddyboss__get_parent_reply_position', 10, 3 );\n\nfunction buddyboss__get_parent_reply_position( $reply_position, $reply_id, $topic_id ) {\n\n if ( empty( $reply_id ) ) {\n\n return false;\n\n }\n\n $top_level_reply_id = bbp_get_reply_ancestor_id( $reply_id );\n\n $parent_replies_ids = bb_get_parent_replies_ids( $topic_id, bbp_get_reply_post_type() );\n\n if ( ! empty( $parent_replies_ids ) ) {\n\n $reply_position = array_search( (string) $top_level_reply_id, $parent_replies_ids );\n\n $reply_position++;\n\n }\n\n return $reply_position;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-restrict-logged-in-users-from-accessing-the-home-page", | |
| "version": "1.0.0", | |
| "name": "How to Restrict Logged-in Users From Accessing the Home Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-restrict-logged-in-users-from-accessing-the-home-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function redirect_logged_in_user_to_profile() {\n\n // Check if the user is logged in and trying to access the home page\n\n if ( is_user_logged_in() && is_front_page() ) {\n\n // Redirect to the page (replace 'profile' with the actual slug of your target page)\n\n wp_redirect( site_url('/profile') );\n\n exit;\n\n }\n\n}" | |
| }, | |
| { | |
| "remote_id": "set-the-group-default-load-page-to-discussions", | |
| "version": "1.0.0", | |
| "name": "Set the Group Default Load Page to Discussions", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/set-the-group-default-load-page-to-discussions/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bbg_set_group_default_extension( $ext ) {\n\n return 'forum';\n\n}\n\nadd_filter( 'bp_groups_default_extension', 'bbg_set_group_default_extension' );" | |
| }, | |
| { | |
| "remote_id": "how-to-create-a-username-shortcode-on-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Create a Username Shortcode on BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-create-a-username-shortcode-on-buddyboss/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Add [bb-print-username] shortcode\n\nfunction bb_print_username() {\n\n ob_start();\n\n $user = wp_get_current_user();\n\n echo $user->user_nicename;\n\n return ob_get_clean();\n\n}\n\nadd_shortcode( 'bb-print-username', 'bb_print_username' );" | |
| }, | |
| { | |
| "remote_id": "how-to-set-up-redirect-to-profile-after-login", | |
| "version": "1.0.0", | |
| "name": "How to Set up Redirect to Profile After Login", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-to-profile-after-login-2/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function redirect_to_page( $redirect_to_calculated, $redirect_url_specified, $user ) { if ( ! $user || is_wp_error( $user ) ) { return $redirect_to_calculated; } // If the redirect is not specified, assume it to be dashboard. if ( empty( $redirect_to_calculated ) ) { $redirect_to_calculated = admin_url(); } // if the user is not site admin, redirect to his/her profile. if ( function_exists( 'bp_core_get_user_domain' ) && ! is_super_admin( $user->ID ) ) { return \"https://your-domain.com/your-link/\"; } // if site admin or not logged in, do not do anything much. return $redirect_to_calculated; } add_filter( 'login_redirect', 'redirect_to_page', 100, 3 );" | |
| }, | |
| { | |
| "remote_id": "how-to-redirect-all-users-to-the-profile-page-after-login-including-admins", | |
| "version": "1.0.0", | |
| "name": "How to Redirect All Users to the Profile Page After Login (Including Admins)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/redirect-all-users-including-admin-to-profile-page-after-login/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function redirect_to_profile( $redirect_to_calculated, $redirect_url_specified, $user ) {\n\n if ( ! $user || is_wp_error( $user ) ) {\n return $redirect_to_calculated;\n }\n\n // If the redirect is not specified, assume it to be dashboard\n if ( empty( $redirect_to_calculated ) ) {\n $redirect_to_calculated = admin_url();\n }\n\n // Redirect all users (including admins) to their BuddyBoss profile\n if ( function_exists( 'bp_core_get_user_domain' ) ) {\n return bp_core_get_user_domain( $user->ID ) . '/activity/';\n }\n\n return $redirect_to_calculated;\n}\nadd_filter( 'login_redirect', 'redirect_to_profile', 100, 3 );" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-a-missing-theme-options-tab-in-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Fix a Missing Theme Options Tab in BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/missing-theme-options-tab/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'buddyboss_theme_redux_is_theme', '__return_true', 999 );\n\n/**\n * Get path from template directory to current file.\n *\n * @param string $file_path Current file path\n *\n * @return string\n */\nfunction buddyboss_theme_dir_to_current_file_path( $file_path ) {\n $file_path = trailingslashit( $file_path );\n $file_path = str_replace( '\\', '/', $file_path );\n $file_path = str_replace( '//', '/', $file_path );\n\n $chunks = explode( '/', $file_path );\n if ( ! is_array( $chunks ) ) {\n $chunks = array();\n }\n\n $chunks = array_reverse( $chunks );\n $template = get_template();\n $tmp_file = array();\n\n foreach ( $chunks as $path ) {\n if ( empty( $path ) ) {\n continue;\n }\n if ( $path == $template ) {\n break;\n }\n $tmp_file[] = $path;\n }\n\n $tmp_file = array_reverse( $tmp_file );\n $tmp_file = implode( '/', $tmp_file );\n\n return $tmp_file;\n}\n\n/**\n * Filter Redux URL\n *\n * @param string $url Redux url.\n *\n * @return string\n */\nfunction buddyboss_theme_redux_url( $url ) {\n if ( strpos( Redux_Helpers::cleanFilePath( __FILE__ ), Redux_Helpers::cleanFilePath( get_template_directory() ) ) !== false ) {\n return $url;\n } else if ( strpos( Redux_Helpers::cleanFilePath( __FILE__ ), Redux_Helpers::cleanFilePath( get_stylesheet_directory() ) ) !== false ) {\n return $url;\n }\n\n $tem_dir = trailingslashit( get_template_directory_uri() );\n $file_dir = buddyboss_theme_dir_to_current_file_path( $url );\n $redux_url = trailingslashit( $tem_dir . $file_dir );\n\n if ( filter_var( $redux_url, FILTER_VALIDATE_URL ) ) {\n return $redux_url;\n }\n\n return $url;\n}\nadd_filter( 'redux/_url', 'buddyboss_theme_redux_url' );\n\nadd_filter( 'style_loader_src', 'bb_fix_theme_option_for_custom_wp_installation' );\n\nadd_filter( 'script_loader_src', 'bb_fix_theme_option_for_custom_wp_installation' );\n\nfunction bb_fix_theme_option_for_custom_wp_installation( $url ) {\n\n if ( is_admin() ) {\n\n $url = str_replace( 'plugins/bitnami/wordpress/wp-content/themes/buddyboss-theme/', 'themes/buddyboss-theme/', $url );\n\n }\n\n return $url;" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-jetengine-listings-editing-issue-with-elementor-on-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Fix JetEngine Listings Editing Issue with Elementor on BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/jetengine-listings-cannot-be-edited-with-elementor/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Prevent listing errors with JetEngine and BuddyBoss\nadd_filter('bp_is_current_component', function( $is_current_component) {\n global $post;\n\n if ( ! $post || ! is_object( $post ) || ! isset( $post->post_type ) ) {\n return $is_current_component;\n }\n\n if ( $post->post_type === 'jet-engine' ) {\n return false;\n }\n\n return $is_current_component;\n});" | |
| }, | |
| { | |
| "remote_id": "how-to-prevent-gifs-from-being-posted-in-comments", | |
| "version": "1.0.0", | |
| "name": "How to Prevent GIFs from Being Posted in Comments", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/prevent-gifs-from-being-posted-in-the-story/", | |
| "css_code": "li.blogs .activity-comments .post-elements-buttons-item.post-gif {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-export-data-in-account-settings", | |
| "version": "1.0.0", | |
| "name": "How to Remove Export Data in Account Settings", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-export-data-in-account-settings/", | |
| "css_code": "li#export-personal-li {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-featured-image-single-blog-page", | |
| "version": "1.0.0", | |
| "name": "Remove Featured Image – Single Blog Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-featured-image-single-blog-page/", | |
| "css_code": ".single .post.full-fi figure.entry-img, .single .post.full-fi-invert figure.entry-img { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-the-sign-in-and-sign-up-buttons-look-similar", | |
| "version": "1.0.0", | |
| "name": "Make the “Sign in” and “Sign up” Buttons Look Similar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-the-sign-in-and-sign-up-buttons-look-similar/", | |
| "css_code": ".bb-header-buttons .button.link.signin-button {\n padding: 0 20px;\n border-radius: var(--bb-button-radius);\n background: #6EC1E4 !important;\n color: #FFFFFF !important;\n border-color: #FFFFFF;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-side-padding-for-mobile", | |
| "version": "1.0.0", | |
| "name": "Remove Side Padding for Mobile", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-side-padding-for-mobile-2/", | |
| "css_code": "@media only screen and (max-width:649px) { .container { padding: 0px; } .site-content, #bbpress-forums .activity-list.bp-list .activity-item, #buddypress .activity-list.bp-list .activity-item, #buddypress .activity-lists.bp-list .activity-item { padding: 0px; } }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-featured-images-on-the-blog-directory-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove Featured Images on the Blog Directory Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-featured-image-on-the-blog-page/", | |
| "css_code": ".blog .ratio-wrap {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-all-page-titles-centered", | |
| "version": "1.0.0", | |
| "name": "Make All Page Titles Centered", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-all-page-titles-centered/", | |
| "css_code": ".entry-header h1.entry-title {\n text-align: center;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "reduce-the-size-of-images-in-activity-feed", | |
| "version": "1.0.0", | |
| "name": "Reduce the Size of Images in Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/reduce-the-size-of-images-in-activity-feed/", | |
| "css_code": ".reign-user-preview .reign-user-preview-cover img { width: 50%; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-social-network-icons-in-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of Social Network Icons in Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/profile-field-change-background-color-of-social-network-icons/", | |
| "css_code": ".social-networks-wrap .social a {\n\n color: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "registration-page-that-has-no-classes-that-can-be-customize-from-header-to-footer", | |
| "version": "1.0.0", | |
| "name": "Registration Page That Has no Classes That Can be Customize From Header to Footer", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/registration-page-that-has-no-classes-that-can-be-customize-from-header-to-footer/", | |
| "css_code": "/* buddy boss mods */ .page-id-877 #content{padding:0 !important;margin:0 !important;width:100% !important;} .page-id-877 .site-content{padding:0 !important;margin:0 !important;width:100% !important;} .page-id-877 .container{padding:0 !important;margin:0 !important;width:100% !important;max-width:100% !important;} .page-id-877 .bb-grid{display:block !important;} .page-id-877 .site-content-grid{padding:0 !important;margin:0 !important;width:100% !important;flex:0 1 100% !important;} .page-id-877 img {padding:0 !important;} .page-id-877 .buddypanel {display:none !important;} .page-id-877 #page {margin:0 !important;} .page-id-877 .site-header-container {height:0px !important;position:fixed !important;margin:-100px 0 0 0 !important;} .page-id-877 .footer-bottom {display:none !important;}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-send-message-to-instructor-after-the-lessons", | |
| "version": "1.0.0", | |
| "name": "Remove “Send Message to Instructor” After the Lessons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-send-message-to-instructor-after-the-lessons/", | |
| "css_code": ".bb-instructor-message { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-prevent-users-from-editing-their-nickname-in-profile-settings", | |
| "version": "1.0.0", | |
| "name": "How to Prevent Users from Editing Their Nickname in Profile Settings", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/prevent-users-from-editing-their-nickname-in-their-profile-settings/", | |
| "css_code": "#profile-edit-form .field_nickname input {\n\n pointer-events: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-prevent-users-from-editing-their-nicknames-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Prevent Users from Editing Their Nicknames on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/prevent-users-from-editing-their-nicknames-on-mobile-view/", | |
| "css_code": "@media (max-width: 768px) {\n\n #profile-edit-form .field_nickname input {\n\n pointer-events: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-profile-and-member-page-profile-pictures-from-round-to-square", | |
| "version": "1.0.0", | |
| "name": "How to Change Profile and Member Page Profile Pictures from Round to Square", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/profile-and-member-pages-profile-picture-change-from-round-to-square/", | |
| "css_code": "#buddypress .users-header .centered #item-header-cover-image.bb-enable-cover-img #item-header-avatar img {\n\n border-radius: 0px !important;\n\n}\n\n#friend-list.item-list .item-avatar img,\n\n#members-list.item-list .item-avatar img {\n\n border-radius: 0;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-privacy-status-background-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Privacy Status Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/privacy-status-background-color/", | |
| "css_code": "#whats-new-form #bp-activity-privacy-point {\n\n background: #000000 !important;\n\n}\n\nReplace #000000 with any hex color code you prefer.", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "make-course-image-sizes-square", | |
| "version": "1.0.0", | |
| "name": "Make course image sizes square", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/make-course-image-sizes-square/", | |
| "css_code": ".bb-course-items .bb-cover-wrap {\n padding-top: 100%;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-prevent-users-from-editing-their-first-name-last-name-and-nickname", | |
| "version": "1.0.0", | |
| "name": "How to Prevent Users from Editing Their First Name, Last Name, and Nickname", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/prevent-users-from-editing-their-first-name-last-name-and-nickname/", | |
| "css_code": "#profile-edit-form .field_nickname input,\n\n#profile-edit-form .field_first-name input,\n\n#profile-edit-form .field_last-name input {\n\n pointer-events: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "left-aligned-the-logo-mobile-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Left Aligned the Logo (Mobile) For Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/left-aligned-the-logo-mobile-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .bb-mobile-header .flex-1 {\n -webkit-box-pack: flex-start !important;\n -ms-flex-pack: flex-start !important;\n justify-content: flex-start !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "learndash-centered-mark-complete-button", | |
| "version": "1.0.0", | |
| "name": "LearnDash: Centered “Mark Complete” Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/learndash-centered-mark-complete-button/", | |
| "css_code": ".learndash-wrapper .ld-content-actions .ld-content-action {\n margin: 0 auto;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "lessen-the-space-between-the-all-updates-and-first-activity-in-news-feed-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Lessen the Space Between the All Updates and First Activity in News Feed (Mobile View)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/lessen-the-space-between-the-all-updates-and-first-activity-in-news-feed-mobile-view/", | |
| "css_code": "@media (max-width: 799px) {\n .flex.actvity-head-bar div#subnav-filters {\n display: none;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "lessen-the-space-between-the-vimeo-video-and-caption", | |
| "version": "1.0.0", | |
| "name": "Lessen the Space Between the Vimeo Video and Caption", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/lessen-the-space-between-the-vimeo-video-and-caption/", | |
| "css_code": "figcaption.vimeo-create__video-caption {\n margin-top: -36px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "increase-font-size-of-post-description-in-activity-feed", | |
| "version": "1.0.0", | |
| "name": "Increase Font Size of Post Description in Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-font-size-of-post-description-in-activity-feed/", | |
| "css_code": ".buddypress-wrap .activity-inner {\n font-size: 20px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "increase-group-tabs-font-size", | |
| "version": "1.0.0", | |
| "name": "Increase Group Tabs Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-group-tabs-font-size/", | |
| "css_code": "nav#object-nav a {\n font-size: 28px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "increase-groups-font-size", | |
| "version": "1.0.0", | |
| "name": "Increase Groups Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-groups-font-size/", | |
| "css_code": "body.buddypress article.page > .entry-header .entry-title {\n font-size: 32px;\n}\n\n.buddypress-wrap ul.bp-list.groups-dir-list .list-wrap .item .list-title a {\n font-size: 22px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-show-all-sub-forums-in-the-forum-directory", | |
| "version": "1.0.0", | |
| "name": "How to Show All Sub-Forums in the Forum Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/show-all-sub-forums-in-the-forum-directory-forum-cards/", | |
| "css_code": ".forums-meta > span {\n\n display: inline-block !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "increase-the-displayed-members-per-row-in-members-page", | |
| "version": "1.0.0", | |
| "name": "Increase the Displayed Members Per Row in Members Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-the-displayed-members-per-row-in-members-page/", | |
| "css_code": "#buddypress .members-list > li {\n min-width: 220px;\n}\n\n@media screen and (min-width: 1310px) {\n #buddypress .members-list > li {\n width: 25%;\n flex: 0 0 25%;\n max-width: 25%;\n }\n}\n\n@media screen and (min-width: 1090px) and (max-width: 1310px) {\n #buddypress .members-list > li {\n width: 33.33%;\n flex: 0 0 33.33%;\n max-width: 33.33%;\n }\n}\n\n@media screen and (min-width: 900px) and (max-width: 1089px) {\n #buddypress .members-list > li {\n width: 50%;\n flex: 0 0 50%;\n max-width: 50%;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "justify-the-forum-widget", | |
| "version": "1.0.0", | |
| "name": "Justify the Forum widget", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/justify-the-forum-widget/", | |
| "css_code": ".widget_display_topics li > .bbp-forum-title {\n display: block;\n margin-bottom: 5px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "learndash-quiz-result-change-the-text-and-background-color", | |
| "version": "1.0.0", | |
| "name": "LearnDash Quiz Result: Change the Text and Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/learndash-quiz-result-change-the-text-and-background-color/", | |
| "css_code": ".bb-sfwd-aside.bb-dark-theme .learndash-wrapper .wpProQuiz_points {\n background-color: #1d1d1d;\n color: #ffffff;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-set-learndash-course-page-filter-default-to-my-progress", | |
| "version": "1.0.0", | |
| "name": "How to Set LearnDash Course Page Filter Default to “My Progress”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/learndash-course-page-filter-default-my-progress/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Make course default sorting as My Progress\nfunction ldcourse_orderby_recent( $order_by_options ) {\n $order_by_options = array(\n 'recent' => __( 'Newly Created', 'buddyboss-theme' ),\n 'alphabetical' => __( 'Alphabetical', 'buddyboss-theme' ),\n );\n\n if ( is_user_logged_in() ) {\n $order_by_options[ 'my-progress' ] = __( 'My Progress', 'buddyboss-theme' );\n }\n\n return $order_by_options;\n}\nadd_filter( 'BuddyBossTheme/Learndash/Archive/OrderByOptions', 'ldcourse_orderby_recent' );\n\nfunction modify_default_orderby( $default_order_by ) {\n return 'my-progress';\n}\nadd_filter( 'BuddyBossTheme/Learndash/Archive/DefaultOrderBy', 'modify_default_orderby' );" | |
| }, | |
| { | |
| "remote_id": "missing-icons-on-login-page-when-not-using-buddyboss-platform", | |
| "version": "1.0.0", | |
| "name": "Missing Icons on login page when not using BuddyBoss Platform", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/missing-icons-on-login-page-when-not-using-buddyboss-platform/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'login_enqueue_scripts', function() {\n // Determine if minified CSS should be used.\n $mincss = buddyboss_theme_get_option( 'boss_minified_css' ) ? '.min' : '';\n\n\n // Don't enqueue icons if BuddyBoss Platform 1.4.0 or higher is activated.\n if (\n ! function_exists( 'buddypress' ) ||\n ( function_exists( 'buddypress' ) &&\n defined( 'BP_PLATFORM_VERSION' ) &&\n version_compare( BP_PLATFORM_VERSION, '1.4.0', '<' ) )\n ) {\n wp_enqueue_style(\n 'buddyboss-theme-icons-map',\n get_template_directory_uri() . '/assets/css/icons-map' . $mincss . '.css',\n [],\n buddyboss_theme()->version()\n );\n\n\n wp_enqueue_style(\n 'buddyboss-theme-icons',\n get_template_directory_uri() . '/assets/icons/css/bb-icons' . $mincss . '.css',\n [],\n buddyboss_theme()->version()\n );\n }\n}, 20 );" | |
| }, | |
| { | |
| "remote_id": "how-to-set-the-send-invites-tab-as-the-default-group-navigation-tab", | |
| "version": "1.0.0", | |
| "name": "How to Set the Send Invites Tab as the Default Group Navigation Tab", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-set-send-invites-tab-as-the-default-group-navigation-tab/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bbg_set_group_default_extension( $ext ) {\n return 'invite'; // Set the default extension to 'invites'\n}\nadd_filter( 'bp_groups_default_extension', 'bbg_set_group_default_extension' );" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-email-footer-block", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Email Footer Block", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-email-footer-block/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function remove_email_footer( $content ) {\n\n // Remove the entire Email Footer block\n $pattern = '/<!-- Email Footer : BEGIN -->(.*?)<!-- Email Footer : END -->/s';\n $content = preg_replace( $pattern, '', $content );\n\n return $content;\n}\nadd_filter( 'wp_mail', 'remove_email_footer' );" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-auto-generated-password-during-password-reset", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Auto-Generated Password During Password Reset", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-auto-generated-password-when-resetting-password/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Remove auto-generated password\nfunction bb_generate_password( $user, $new_pass ) {\n return '';\n}\nadd_filter( 'random_password', 'bb_generate_password', 10, 2 );" | |
| }, | |
| { | |
| "remote_id": "how-to-increase-the-login-page-image-height-for-mobile-view-in-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Increase the Login Page Image Height for Mobile View in BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-the-login-page-image-height-for-mobile-view/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function the_boss_custom_login_css() {\n echo '<style type=\"text/css\">\n @media (max-width: 544px){\n body.login.login-split-page .login-split .login-split__entry {\n height: 275px;\n }\n }\n </style>';\n}\nadd_action( 'login_enqueue_scripts', 'the_boss_custom_login_css' );" | |
| }, | |
| { | |
| "remote_id": "how-to-increase-upload-limit-for-cover-photos-and-avatar-in-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Increase Upload Limit for Cover Photos and Avatar in BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-upload-limit-for-cover-photos-and-avatar/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bbp_cover_image_file_size( $fileupload_maxk, $type ) {\n if ( 'avatar' == $type ) {\n $fileupload_maxk = 10485760; // in bytes, 10MB\n }\n\n if ( 'cover_image' == $type ) {\n $fileupload_maxk = 10485760; // in bytes, 10MB\n }\n\n return $fileupload_maxk;\n}\nadd_filter( 'bp_attachments_get_max_upload_file_size', 'bbp_cover_image_file_size', 10, 2 );" | |
| }, | |
| { | |
| "remote_id": "how-to-move-the-members-directory-search-filter-to-the-top-on-desktop-view", | |
| "version": "1.0.0", | |
| "name": "How to Move the Members Directory Search Filter to the Top on Desktop View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/move-the-members-directory-search-filter-to-the-top-on-desktop-view/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'bp_before_directory_members_page', 'show_filter_on_top_members_page' );\n\nfunction show_filter_on_top_members_page() {\n\n if ( bp_disable_advanced_profile_search() ) {\n\n return false;\n\n }\n\n $form_id = bp_profile_search_main_form();\n\n $template = bp_locate_template( 'common/search/profile-search.php', false, false );\n\n include $template;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-moderation-component-pop-up-on-memberpress-pages", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Moderation Component Pop-up on MemberPress Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-moderation-components-pop-up-being-rendered-on-memberpress-pages/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'template_redirect', 'remove_moderation_popup_on_memberpress_course' );\nfunction remove_moderation_popup_on_memberpress_course() {\n\n global $post;\n\n if (\n $post instanceof WP_Post &&\n (\n 'mpcs-course' === $post->post_type ||\n 'mpcs-lesson' === $post->post_type ||\n 'memberpressgroup' === $post->post_type\n )\n ) {\n if ( is_single() || is_post_type_archive( 'mpcs-course' ) ) {\n remove_action( 'wp_footer', 'bb_moderation_content_report_popup' );\n }\n }\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-retain-the-original-quality-of-uploaded-images-disable-image-compression", | |
| "version": "1.0.0", | |
| "name": "How to Retain the Original Quality of Uploaded Images (Disable Image Compression)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-not-compress-retain-original-quality-of-the-uploaded-images/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Retain original image quality by disabling additional image sizes\nadd_filter( 'bp_media_add_image_sizes', function ( $sizes ) {\n return array();\n});" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-if-you-dont-want-to-receive-these-emails-in-the-future-please-unsubscribe-text-in-the-email-footer", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “If you don’t want to receive these emails in the future, please unsubscribe.” Text in the Email Footer", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-if-you-dont-want-to-receive-these-emails-in-the-future-please-unsubscribe-text-in-the-email-footer/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function remove_email_footer_paragraph( $content ) {\n // Define the paragraph to be removed\n $pattern = '/<p style=\"margin: 5px 0;\">.*?</p>/s';\n\n // Remove the specific paragraph from the email content\n $content = preg_replace( $pattern, '', $content );\n\n return $content;\n}\nadd_filter( 'wp_mail', 'remove_email_footer_paragraph' );" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-auto-fill-password-on-the-reset-password-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Auto-Fill Password on the Reset Password Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-auto-fill-password-on-the-reset-password-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'random_password', 'custom_disable_random_password', 999, 2 );\nfunction custom_disable_random_password( $password ) {\n $action = isset( $_GET['action'] ) ? $_GET['action'] : '';\n if ( 'rp' == $action || 'resetpass' == $action ) {\n return '';\n }\n return $password;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-members-menu-in-a-group", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Members Menu in a Group", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-members-menu-in-a-group-using-function-code/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_remove_groups_members_menu_item() {\n\n if ( bp_is_group() ) {\n\n global $bp;\n\n bp_core_remove_subnav_item(\n\n $bp->groups->current_group->slug,\n\n 'members',\n\n 'groups'\n\n );\n\n }\n\n}\n\nadd_action( 'bp_setup_nav', 'bb_remove_groups_members_menu_item', 10 );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-default-uploaded-image-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Default Uploaded Image Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-default-uploaded-image-size/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Change the size of uploaded images\nadd_filter( 'bp_media_add_image_sizes', function ( $sizes ) {\n foreach ( $sizes as $size => &$custom_width ) {\n $custom_width['width'] = 500; // Update the width of image size to 500px\n }\n return $sizes;\n});" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-create-an-account-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “Create an Account” on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-create-an-account-in-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_customs() { ?>\n <style>\n .login-heading span > a { \n display: none; \n }\n </style>\n<?php }\nadd_action( 'login_enqueue_scripts', 'bb_login_customs');" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-subgroups-the-default-group-tab", | |
| "version": "1.0.0", | |
| "name": "How to Make the Subgroups the Default Group Tab", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-subgroups-as-the-default-group-tab/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_groups_default_extension','bb_custom_sub_group_tab');\n\nfunction bb_custom_sub_group_tab( $default_tab ) {\n\n $group = groups_get_current_group(); // Get the current group\n\n if ( empty( $group ) ) {\n\n return $default_tab;\n\n }\n\n // Check if the group has subgroups and enable the Subgroups tab as default\n\n if ( bp_enable_group_hierarchies() ) {\n\n $descendant_groups = bp_get_descendent_groups( bp_get_current_group_id(), bp_loggedin_user_id() );\n\n if ( count( $descendant_groups ) > 0 ) {\n\n return 'subgroups';\n\n }\n\n }\n\n return $default_tab;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-dequeue-unnecessary-scripts-and-styles", | |
| "version": "1.0.0", | |
| "name": "How to Dequeue Unnecessary Scripts and Styles", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-dequeue-unnecessary-scripts-and-styles/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function tirarScripts() { wp_dequeue_style( 'slate-js' ); } add_action( 'login_enqueue_scripts', 'tirarScripts' );" | |
| }, | |
| { | |
| "remote_id": "how-to-force-password-field-masking-on-the-reset-password-page", | |
| "version": "1.0.0", | |
| "name": "How to Force Password Field Masking on the Reset Password Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-password-by-default-when-setting-a-new-password-on-reset-password/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_hook_enqueue_scripts() { ?>\n <script>\n document.addEventListener(\"DOMContentLoaded\", (event) => {\n setTimeout(() => {\n document.getElementById('pass1').type = 'password';\n }, 200);\n });\n </script>\n<?php }\nadd_action( 'login_enqueue_scripts', 'bb_hook_enqueue_scripts', 1 );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-wordpress-author-url-slug", | |
| "version": "1.0.0", | |
| "name": "How to Change the WordPress Author URL Slug", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-wordpress-author-url-slug/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_author_base() {\n global $wp_rewrite;\n $wp_rewrite->author_base = 'members';\n}\nadd_action( 'init', 'custom_author_base' );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-color-of-username-and-password-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Color of Username and Password on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-color-of-username-and-password-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_login_css() {\n echo '<style type=\"text/css\">\n #loginform input[type=email],\n #loginform input[type=text],\n #loginform input[type=password] {\n color: #000000 !important;\n }\n </style>';\n}\nadd_action('login_head', 'custom_login_css');" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-onesignal-admin-notice", | |
| "version": "1.0.0", | |
| "name": "How to Hide the OneSignal Admin Notice", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-onesignal-admin-notice/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action('admin_head', 'wphelp_hide_notices_wp');\nfunction wphelp_hide_notices_wp() { ?>\n <style>\n .buddypress .wrap div#message,\n .buddypress .wrap div.notice {\n display: none;\n }\n </style>\n<?php }" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-borderline-of-the-login-fields", | |
| "version": "1.0.0", | |
| "name": "How to Change the Borderline of the Login Fields", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-borderline-of-the-login-fields-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_login_logo() {\n echo '<style type=\"text/css\">\n .login form#loginform .input {\n border: 1px solid #000000!important; /* Change #000000 to your preferred color */\n }\n </style>';\n}\nadd_action('login_head', 'custom_login_logo');" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-the-notify-group-members-of-these-changes-option-by-default", | |
| "version": "1.0.0", | |
| "name": "How to Disable the “Notify Group Members of These Changes” Option by Default", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-disable-the-notify-group-members-of-these-changes-option-by-default/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'wp_footer', 'modify_group_notify_members_checkbox' );\n\nfunction modify_group_notify_members_checkbox() {\n\n ?>\n\n <script>\n\n document.addEventListener('DOMContentLoaded', function() {\n\n var checkbox = document.getElementById('group-notify-members');\n\n if ( checkbox ) {\n\n checkbox.removeAttribute('checked');\n\n }\n\n });\n\n </script>\n\n <?php\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-time-and-date-format-in-messaging", | |
| "version": "1.0.0", | |
| "name": "How to Change the Time and Date Format in Messaging", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-time-and-date-format-on-the-messaging/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_change_date_format_to_wp_date( $output ) {\n $date_format = get_option( 'date_format' );\n if ( empty( $date_format ) ) {\n return $output;\n }\n return date_i18n( $date_format, strtotime( $output ) );\n}\nadd_filter( 'bb_get_thread_start_date', 'bb_change_date_format_to_wp_date' );\n\nfunction bb_change_time_format_to_wp_time( $site_sent_date ) {\n if ( function_exists( 'bp_get_the_thread_message_date_sent' ) ) {\n $sent_date = bp_get_the_thread_message_date_sent();\n $sent_date_formatted = wp_date( 'Y-m-d h:i:s', $sent_date );\n $site_sent_date = get_date_from_gmt( $sent_date_formatted );\n\n $time_format = get_option( 'time_format' );\n $time_format = ! empty( $time_format ) ? $time_format : 'g:i a';\n\n $site_sent_date = wp_date( $time_format, strtotime( $site_sent_date ) );\n }\n return $site_sent_date;\n}\nadd_filter( 'bb_get_the_thread_message_sent_time', 'bb_change_time_format_to_wp_time', 99, 1 );" | |
| }, | |
| { | |
| "remote_id": "learndash-dark-mode-removal", | |
| "version": "1.0.0", | |
| "name": "LearnDash Dark Mode Removal", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/learndash-dark-mode-removal/", | |
| "css_code": ".sfwd-dark-mode {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-profile-pictures-square-in-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Make Profile Pictures Square in BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/square-profile-picture/", | |
| "css_code": ".comment-author .avatar,\n\n.post-author-details .avatar,\n\n.entry-content-wrap .avatar,\n\nimg.avatar {\n\n border-radius: 0;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "is-it-possible-to-hide-the-profile-of-the-person-who-organizes-the-groups", | |
| "version": "1.0.0", | |
| "name": "Is it possible to hide the profile of the person who organizes the groups?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/is-it-possible-to-hide-the-profile-of-the-person-who-organizes-the-groups/", | |
| "css_code": ".groups-header .group-item-actions,\n#members-list .item-entry:first-child,\n#members-list .item-entry:nth-child(2) {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-show-a-full-size-featured-image-on-single-post-pages", | |
| "version": "1.0.0", | |
| "name": "How to Show a Full-Size Featured Image on Single Post Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/show-a-full-size-image-of-the-single-post-featured-image/", | |
| "css_code": "body.single-post .entry-content-wrap .entry-img img {\n\n position: relative;\n\n}\n\nbody.single-post .entry-content-wrap .entry-img,\n\nbody.single .post.full-fi figure.entry-img,\n\nbody.single .post.full-fi-invert figure.entry-img {\n\n padding-top: 0;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-resize-the-buddypanel-icons", | |
| "version": "1.0.0", | |
| "name": "How to Resize the BuddyPanel Icons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/resize-the-buddypanel-icons/", | |
| "css_code": ".menu-item i._mi {\n\n font-size: inherit !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-show-a-scrollbar-on-the-buddypanel", | |
| "version": "1.0.0", | |
| "name": "How to Show a Scrollbar on the BuddyPanel", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/scrollbar-to-be-shown-on-the-sidepanel-buddypanel/", | |
| "css_code": ".buddypanel {\n\n overflow: scroll !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "increase-activity-feed-font-size", | |
| "version": "1.0.0", | |
| "name": "Increase Activity Feed Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/increase-activity-feed-font-size/", | |
| "css_code": ".activity-header p {\n font-size: 18px;\n}\n\n.activity-header a {\n font-size: 18px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-margin-between-course-header-and-course-topic-title", | |
| "version": "1.0.0", | |
| "name": "How to Remove Margin Between Course Header and Course Topic Title", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/removing-margin-between-course-header-and-course-topic-title/", | |
| "css_code": "div.bb-lms-header .bb-position {\n\n margin-bottom: 0;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-view-the-image-only-when-someone-post-in-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to View the Image Only When Someone Post in the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-view-the-image-only-when-someone-post-in-the-activity-feed/", | |
| "css_code": ".bb-media-info-section.media {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-set-changing-backgroud-color-on-the-all-updates-tab-in-activity-page-when-hovered", | |
| "version": "1.0.0", | |
| "name": "How to Set Changing Backgroud Color on the All Updates Tab in Activity Page when Hovered", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-set-changing-backgroud-color-on-the-all-updates-tab-in-activity-page-when-hovered/", | |
| "css_code": ".bp-navs ul:not(.subnav) a:hover {\n background-color: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-resize-the-search-icon-on-the-header", | |
| "version": "1.0.0", | |
| "name": "How to Resize the Search Icon on the Header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-resize-the-search-icon-on-the-header/", | |
| "css_code": "i.bb-icon-l.bb-icon-search::before {\n font-size: 30px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-hover-underline-effect-on-the-header-menu", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Hover Underline Effect on the Header Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-underline-effect-hover-active-on-community-menu/", | |
| "css_code": ".bb-template-v2 .primary-menu > li.current-menu-item > a {\n\n border-bottom: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-discussion-lists-on-the-forum-directory-page", | |
| "version": "1.0.0", | |
| "name": "How to remove the discussion lists on the forum directory page?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-discussion-lists-on-the-forum-directory-page/", | |
| "css_code": ".forum-archive .bbp-pagination:last-of-type {\n display: none !important;\n}\n\n.forum-archive ul.bs-forums-items.list-view {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-whole-discussions-tab-on-the-forum-directory-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Whole Discussions Tab on the Forum Directory Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-whole-discussions-tab-on-the-forum-directory-page/", | |
| "css_code": ".forum-archive .bbp-pagination:nth-child(4),\n.forum-archive #bbpress-forums .bs-forums-items {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-removehide-the-course-page-title", | |
| "version": "1.0.0", | |
| "name": "How to Remove/Hide the Course Page Title", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-hide-the-course-page-title/", | |
| "css_code": "h4.bb-title {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-underline-from-the-active-footer-menu", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Underline from the Active Footer Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-underline-from-the-active-footer-menu/", | |
| "css_code": ".footer-copyright-wrap .footer-menu .current-menu-item a {\n\n border-bottom: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-removehide-the-filter-results-text-on-profile-search", | |
| "version": "1.0.0", | |
| "name": "How to Remove/Hide the “Filter Results” Text on Profile Search", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-hide-the-filter-results-text-on-profile-search/", | |
| "css_code": ".bps-form-title.widget-title {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-zoom-countdown-seconds", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Zoom Countdown (Seconds)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/removing-the-countdown-seconds-in-zoom/", | |
| "css_code": "span.countSeconds {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-header-and-footer-from-the-app-web-fallback", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Header and Footer from the App Web Fallback", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-header-and-footer-from-the-app-web-fallback/", | |
| "css_code": "body.in-bbapp nav.nav-main {\n display: none !important;\n}\n\nbody.in-bbapp #content > .content-area {\n padding-top: 0px !important;\n}\n\nbody.in-bbapp footer {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-image-download-option", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Image Download Option", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-image-download-option/", | |
| "css_code": ".bb-activity-media-wrap .bb-activity-media-elem.document-activity .document-action-wrap > a.document-action_download i {\n display: none;\n}\n\na.download-media {\n display: none;\n}\n\nli.copy_download_file_url.document-action-class {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-viewing-all-members-who-are-teachers-notice", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “Viewing all members who are Teachers” Notice", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-viewing-all-members-who-are-teachers-notice/", | |
| "css_code": "div.members-directory-content div.bp-feedback {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-or-hide-the-group-name", | |
| "version": "1.0.0", | |
| "name": "How to Remove or Hide the Group Name", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-or-hide-the-group-name/", | |
| "css_code": "body.groups h2.bb-bp-group-title,\na.bp-group-home-link,\ndiv.bp-group-title-wrap > p.bp-group-meta {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-default-file-icon-on-the-buddypanel-menu", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Default File Icon on the BuddyPanel Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-default-file-icon-on-the-buddypanel-menu/", | |
| "css_code": "i.bb-icon-file::before {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-course-directory-page-filters-and-move-the-gridlist-view-filter-to-the-left", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Course Directory Page Filters and Move the Grid/List View Filter to the Left", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-course-directory-page-filters-and-move-the-grid-list-view-filter-to-the-left/", | |
| "css_code": "div.sfwd-courses-filters.flex.push-right {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-course-progress-bar-on-the-course-directory-and-lesson-pages", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Course Progress Bar on the Course Directory and Lesson Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-the-course-progress-bar-on-the-course-directory-and-lesson-pages/", | |
| "css_code": "div.ld-progress {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-like-button-text-bold", | |
| "version": "1.0.0", | |
| "name": "How to Make the “Like” (Button) Text Bold", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-like-button-text-bold/", | |
| "css_code": ".button .like-count {\n font-weight: bold !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-public-visibility-from-the-who-can-see-your-post-list", | |
| "version": "1.0.0", | |
| "name": "How to Remove “Public” Visibility from the “Who Can See Your Post ” List", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-remove-public-visibility-from-the-who-can-see-your-post-list/", | |
| "css_code": "body.activity #activity-post-form-privacy label[for=\"public\"] {\n display: none;\n}\n\nbody.activity .bb-media-privacy-wrap .activity-privacy li[data-value=\"public\"] {\n pointer-events: none;\n opacity: 0.5;\n cursor: not-allowed;\n}", | |
| "js_code": "jQuery(document).ajaxSend(function(event, jqXHR, options) {\n if (\n options.url.includes('wp-admin/admin-ajax.php') &&\n options.type === \"POST\" &&\n options.data.includes('privacy=public') &&\n options.data.includes('action=post_update')\n ) {\n // Replace the privacy \"public\" with \"loggedin\"\n options.data = options.data.replace('privacy=public', 'privacy=loggedin');\n }\n});", | |
| "php_code": "<script type=\"text/html\" id=\"tmpl-activity-post-case-privacy\">\n <div id=\"bp-activity-privacy-point\" class=\"{{data.privacy}}\" data-bp-tooltip-pos=\"up\" data-bp-tooltip=\"<?php esc_html_e( 'Set by album privacy', 'buddyboss' ); ?>\">\n <span class=\"privacy-point-icon\"></span>\n <span class=\"bp-activity-privacy-status\">\n <# if ( data.privacy === 'group' ) { #>\n <?php esc_html_e( 'Group', 'buddyboss' ); ?>\n <# } else if ( data.privacy === 'friends' ) { #>\n <?php esc_html_e( 'My Connections', 'buddyboss' ); ?>\n <# } else if ( data.privacy === 'onlyme' ) { #>\n <?php esc_html_e( 'Only Me', 'buddyboss' ); ?>\n <# } else { #>\n <?php esc_html_e( 'All Members', 'buddyboss' ); ?>\n <# } #>\n </span>\n <i class=\"bb-icon-f bb-icon-caret-down\"></i>\n </div>\n</script>" | |
| }, | |
| { | |
| "remote_id": "how-to-make-the-comment-button-bold", | |
| "version": "1.0.0", | |
| "name": "How to Make the “Comment” Button Bold", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-make-the-comment-button-bold/", | |
| "css_code": ".button .comment-count {\n font-weight: bold !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-the-group-tab-in-the-user-profile-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Disable the Group Tab in the User Profile for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-disable-the-group-tab-in-the-user-profile-for-logged-out-users/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_remove_groups_tab_for_visitors() {\n if ( is_user_logged_in() ) {\n return;\n }\n bp_core_remove_nav_item( 'groups' );\n}\nadd_action( 'bp_ready', 'bb_remove_groups_tab_for_visitors' );" | |
| }, | |
| { | |
| "remote_id": "how-to-center-the-logo-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Center the Logo on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-center-the-logo-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_hook_login_enqueue_scripts() { ?>\n\n <style>\n\n body.login.login-split-page #login h1 a {\n\n margin-left: auto !important;\n\n }\n\n </style>\n\n<?php }\n\nadd_action( 'login_enqueue_scripts', 'bb_hook_login_enqueue_scripts', 1 );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-number-of-members-displayed-in-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "How to Change the Number of Members displayed in the Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-number-of-members-being-displayed-per-page-in-members-directory/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'bp_after_has_members_parse_args', 'bb_increase_members' );\n\nfunction bb_increase_members( $args ) {\n\n $args['per_page'] = 24; // Change this number to set the desired member count per page\n\n return $args;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-add-question-titles-for-essays-answers-from-learndash", | |
| "version": "1.0.0", | |
| "name": "How to Add Question Titles for Essays’ Answers from LearnDash", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-question-titles-for-essays-answers-from-learndash/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "<?php /** * The template for displaying single sfwd topic * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package BuddyBoss_Theme */ get_header(); ?> <div id=\"primary\" class=\"content-area bb-grid-cell\"> <main id=\"main\" class=\"site-main\"> <?php while ( have_posts() ) : the_post(); if ( 'draft' == get_post_status() ){ do_action( THEME_HOOK_PREFIX . '_single_template_part_content', get_post_type() ); } else { // Display the title above the content the_title( '<h1 class=\"content-title\">', '</h1>' ); get_template_part( 'template-parts/content', 'sfwd' ); /** * If comments are open or we have at least one comment, load up the comment template. */ if ( comments_open() || get_comments_number() ) : comments_template(); endif; } endwhile; // End of the loop. ?> </main><!-- #main --> </div><!-- #primary --> <?php get_footer();" | |
| }, | |
| { | |
| "remote_id": "how-to-add-white-underline-for-the-click-here-to-register-hyperlink", | |
| "version": "1.0.0", | |
| "name": "How to Add White Underline for the “Click here to Register” Hyperlink", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-white-underline-for-the-click-here-to-register-hyperlink/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_custom_css() { ?>\n\n <style>\n\n .login-split__entry a {\n\n color: #fff;\n\n text-decoration: underline;\n\n }\n\n </style>\n\n<?php }\n\nadd_action( 'login_enqueue_scripts', 'bb_login_custom_css' );" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-wp-language-switcher-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the WP Language Switcher on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-wp-language-switcher/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'login_display_language_dropdown', '__return_false' );" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-comments-on-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Hide Comments on the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-comments-on-the-activity-feed/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_activity_can_comment', '__return_false' );" | |
| }, | |
| { | |
| "remote_id": "how-to-add-additional-tabs-on-the-courses-page", | |
| "version": "1.0.0", | |
| "name": "How to Add Additional Tabs on the Courses Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-additional-tabs-on-the-courses-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "/** * Example usage for learndash_content_tabs filter. */ add_filter( 'learndash_content_tabs', function( $tabs = array(), $context = '', $course_id = 0, $user_id = 0 ) { // Add optional logic to show the custom tab only on certain courses. // If ( 123 === $course_id ) { // Add tab content here. // } // Add our Custom tab-1 Tab. if ( ! isset( $tabs['tab-1'] ) ) { $tabs['tab-1'] = array( 'id' => 'tab-1', // The value here is to a CSS class you control to show an icon. 'icon' => 'ld-tab-1-icon', 'label' => 'Tab 1', 'content' => '<p>Tab 1 Contents</p> ', ); } if ( ! isset( $tabs['tab-2'] ) ) { $tabs['tab-2'] = array( 'id' => 'tab-2', // The value here is to a CSS class you control to show an icon. 'icon' => 'ld-tab-2-icon', 'label' => 'Tab 2', 'content' => '<p>Tab 2 Contents</p> ', ); } if ( ! isset( $tabs['tab-3'] ) ) { $tabs['tab-3'] = array( 'id' => 'tab-3', // The value here is to a CSS class you control to show an icon. 'icon' => 'ld-tab-3-icon', 'label' => 'Tab 3', 'content' => '<p>Tab 3 Contents</p> ', ); } // Always return $tabs. return $tabs; }, 30, 4 );" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-terms-and-conditions-and-privacy-policy-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Terms and Conditions and Privacy Policy on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-terms-and-conditions-including-the-privacy-policy/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_hide_ts() { ?>\n <style>\n .privacy-policy-page-link {\n display: none;\n }\n </style>\n<?php }\nadd_action( 'login_enqueue_scripts', 'bb_login_hide_ts' );" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-a-username-and-password-must-be-provided-lost-your-password-from-the-sign-in-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide “A username and password must be provided. Lost your password?” from the Sign-in Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-a-username-and-password-must-be-provided-lost-your-password-from-the-sign-in-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_hide_msg_on_login_css() {\n\n echo '<style type=\"text/css\">\n\n div#login_error {\n\n display: none;\n\n }\n\n </style>';\n\n}\n\nadd_action('login_enqueue_scripts', 'bb_hide_msg_on_login_css');" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-member-directory-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Member Directory Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-member-directory-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bbp_hide_members_directory() {\n if ( bp_is_members_directory() ) {\n bp_do_404();\n load_template( get_404_template() );\n exit( 0 );\n }\n}\nadd_action( 'bp_template_redirect', 'bbp_hide_members_directory' );" | |
| }, | |
| { | |
| "remote_id": "how-to-exclude-certain-posts-from-the-bbp-search-feature", | |
| "version": "1.0.0", | |
| "name": "How to Exclude Certain Posts from the BBP Search Feature", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/exclude-certain-posts-from-the-bbp-search-feature/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_change_search_results_posts( $query ) {\n if ( ! is_admin() && bp_search_is_search() && ( 'post' == $query->get('post_type') ) ) {\n // IDs of posts to exclude\n $remove_items = array(281, 1794);\n\n // Get current included post IDs (if any)\n $post_ids = $query->get('post__in');\n\n // Remove specified posts from search results\n $query->set( 'post__in', array_diff( (array) $post_ids, $remove_items ) );\n }\n return $query;\n}\nadd_action( 'pre_get_posts', 'bb_change_search_results_posts', 9999 );" | |
| }, | |
| { | |
| "remote_id": "how-to-enable-the-use-of-shortcodes-in-header-menu-items", | |
| "version": "1.0.0", | |
| "name": "How to Enable the Use of Shortcodes in Header Menu Items", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/enable-the-use-of-shortcodes-in-header-menu-items/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "/**\n * Enable shortcodes for menu navigation.\n */\nif ( ! has_filter( 'wp_nav_menu', 'do_shortcode' ) ) {\n add_filter( 'wp_nav_menu', 'shortcode_unautop' );\n add_filter( 'wp_nav_menu', 'do_shortcode', 11 );\n}" | |
| }, | |
| { | |
| "remote_id": "exclude-a-specific-category-from-the-blog-page", | |
| "version": "1.0.0", | |
| "name": "Exclude a Specific Category from the Blog Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/exclude-a-specific-category-from-the-blog-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '-38' ); } } add_action( 'pre_get_posts', 'exclude_category' );" | |
| }, | |
| { | |
| "remote_id": "how-to-enable-breadcrumbs-on-forum-topics", | |
| "version": "1.0.0", | |
| "name": "How to Enable “Breadcrumbs” on Forum Topics", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/enable-breadcrumbs-on-forum-topics/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_enable_breadcrumbs_forum_topic( $param ) {\n return false;\n}\nadd_filter( 'bbp_no_breadcrumb', 'bb_enable_breadcrumbs_forum_topic', 999 );\n\n#bbpress-forums .bbp-breadcrumb {\n display: block;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-display-the-number-of-discussions-under-sub-forums-in-the-forums-list-widget", | |
| "version": "1.0.0", | |
| "name": "How to Display the Number of Discussions under Sub-Forums in the Forums List Widget", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-number-of-discussions-under-sub-forums-for-bb-forums-list-widget/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bbp_after_list_forums_parse_args', 'bb_show_sub_forum_count' );\n\nfunction bb_show_sub_forum_count( $args ) {\n\n $args['show_topic_count'] = true;\n\n return $args;\n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-display-a-fullscreen-background-image-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "How to Display a Fullscreen Background Image on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-a-fullscreen-background-image-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_custom_css() { ?>\n <style>\n @media screen and (min-width: 992px) {\n body.login.login-split-page #login {\n left: 50% !important;\n }\n body.login.login-split-page .login-split {\n width: 100% !important;\n }\n }\n </style>\n<?php }\nadd_action( 'login_enqueue_scripts', 'bb_login_custom_css' );" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-registration-validation", | |
| "version": "1.0.0", | |
| "name": "How to Disable Registration Validation", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-validation-for-registration/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function disable_validation( $user_id ) {\n global $wpdb;\n\n // Ensure the user is marked as active\n $wpdb->query(\n $wpdb->prepare(\n \"UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d\",\n $user_id\n )\n );\n\n // Get all inactive signups\n $users = $wpdb->get_results(\n \"SELECT activation_key, user_login FROM {$wpdb->prefix}signups WHERE active = '0'\"\n );\n\n foreach ( $users as $user ) {\n\n // Activate the signup\n bp_core_activate_signup( $user->activation_key );\n BP_Signup::validate( $user->activation_key );\n\n // Assign default role\n $user_id = $wpdb->get_var(\n \"SELECT ID FROM $wpdb->users WHERE user_login = '$user->user_login'\"\n );\n\n if ( $user_id ) {\n $u = new WP_User( $user_id );\n $u->add_role( 'subscriber' );\n }\n }\n}\n\nadd_action( 'bp_core_signup_user', 'disable_validation' );\nadd_filter( 'bp_registration_needs_activation', '__return_false' );\nadd_filter( 'bp_core_signup_send_activation_key', '__return_false' );" | |
| }, | |
| { | |
| "remote_id": "how-to-display-group-members-alphabetically", | |
| "version": "1.0.0", | |
| "name": "How to Display Group Members Alphabetically", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-the-members-within-a-group-alphabetically/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "/**\n * Filter the group member IDs and return them sorted alphabetically by display name.\n *\n * @param array $value The array of user IDs to be filtered.\n * @return array $sorted_users The array of sorted user IDs by display name.\n */\nadd_filter( 'bp_group_member_query_group_member_ids', 'bb_bp_group_has_members' );\n\nfunction bb_bp_group_has_members( $value ) {\n\n // Arguments for fetching users by specified IDs and ordering by display name\n $args = [\n 'include' => $value, // Include only the specified user IDs\n 'orderby' => 'display_name', // Order by display name\n 'order' => 'ASC', // Ascending order\n ];\n\n // Fetch users based on the provided arguments\n $users = get_users( $args );\n\n // Initialize an empty array to hold sorted user IDs\n $sorted_users = [];\n\n // Loop through the users and collect their IDs\n foreach ( $users as $user ) {\n $sorted_users[] = $user->ID;\n }\n\n // Return the sorted user IDs\n return $sorted_users;\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-the-learndash-course-header-menu", | |
| "version": "1.0.0", | |
| "name": "How to hide/remove the LearnDash Course Header Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-the-learndash-course-header-menu/", | |
| "css_code": "#learndash-course-header .bb-position {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-the-viewing-all-groups-that-are-group-type-text", | |
| "version": "1.0.0", | |
| "name": "How to Hide/Remove the “Viewing all groups That Are (Group type)” Text", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-the-viewing-all-groups-that-are-group-type-text/", | |
| "css_code": ".bp-feedback.info {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-strikethrough-in-learndash-courses", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Strikethrough in LearnDash Courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-strikethrough-in-learndash-courses/", | |
| "css_code": ".learndash-wrapper .learndash-complete .ld-item-list-item-preview .ld-item-title > span:first-child,\n\n.learndash-wrapper .ld-table-list .ld-table-list-items div.ld-table-list-item \n\na.ld-table-list-item-preview.learndash-complete .ld-topic-title,\n\n.bb-completed-item {\n\n text-decoration: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-the-long-line-in-learndash-course", | |
| "version": "1.0.0", | |
| "name": "How to hide/remove the long line in LearnDash Course", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-the-long-line-in-learndash-course/", | |
| "css_code": ".learndash-wrapper .bb-ld-info-bar .ld-breadcrumbs {\n border: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-increase-the-font-of-forum-author-details-and-replies", | |
| "version": "1.0.0", | |
| "name": "How to Increase the Font of Forum Author Details and Replies", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-increase-the-font-of-forum-author-details-and-replies/", | |
| "css_code": ".item-meta span.bs-replied {\n font-size: 18px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-increase-the-size-of-the-header-menu-icons", | |
| "version": "1.0.0", | |
| "name": "How to Increase the Size of the Header Menu Icons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-increase-the-size-of-the-header-menu-icons/", | |
| "css_code": "#primary-menu .menu-item i::before,\n#primary-menu .menu-item a::after {\n font-size: 30px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-move-the-header-sub-menu-from-left-to-right", | |
| "version": "1.0.0", | |
| "name": "How to Move the Header Sub-Menu from Left to Right", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-move-the-header-sub-menu-from-left-to-right/", | |
| "css_code": ".site-header #primary-navbar .primary-menu .menu-item > .ab-submenu .bb-sub-menu .menu-item:hover .ab-submenu,\n.site-header #primary-navbar .primary-menu .menu-item > .ab-submenu .bb-sub-menu .menu-item:hover .ab-submenu {\n -webkit-transform: translateX(100%) !important;\n -ms-transform: translateX(100%) !important;\n transform: translateX(100%) !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-the-lesson-paging-in-learndash-course", | |
| "version": "1.0.0", | |
| "name": "How to hide/remove the Lesson Paging in LearnDash Course", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-the-lesson-paging-in-learndash-course/", | |
| "css_code": ".sfwd-course-position span.bb-pages {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-increase-font-size-of-the-forum-description", | |
| "version": "1.0.0", | |
| "name": "How to Increase Font Size of the Forum Description", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-increase-font-size-of-the-forum-description/", | |
| "css_code": ".replies-content .item-description {\n font-size: 16px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-title-on-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Title on the Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-title-on-the-activity-page/", | |
| "css_code": "body.directory.activity .entry-header {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-move-the-members-directory-page-search-filter-on-the-top-part-of-the-page-for-mobile-devices", | |
| "version": "1.0.0", | |
| "name": "How to move the ‘Members’ Directory Page Search Filter’ on the top part of the page for mobile devices?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-move-the-members-directory-page-search-filter-on-the-top-part-of-the-page-for-mobile-devices/", | |
| "css_code": "@media only screen and (max-width: 600px) {\n .members div#primary {\n order: 2;\n }\n .members div#secondary {\n order: 1 !important;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-the-search-bar-in-learndash-course-page", | |
| "version": "1.0.0", | |
| "name": "Remove the search bar in LearnDash course page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-search-bar-in-learndash-course-page/", | |
| "css_code": ".bb-courses-header {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-the-search-icon-and-search-form-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Remove the Search Icon and Search Form for Logged Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-search-icon-and-search-form-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) ul#primary-menu li:nth-child(6),body:not(.logged-in) a.header-search-link { display: none !important;} \n\nbody:not(.logged-in) form.search-form {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-shopping-cart-and-search-icons-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Shopping Cart and Search Icons for Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-shopping-cart-and-search-icons-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .header-aside-inner a.header-search-link,\n\nbody:not(.logged-in) .header-aside-inner div.cart-wrap {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-profile-picture-from-all-discussions", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Profile Picture from All Discussions", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-profile-picture-from-all-discussions/", | |
| "css_code": "#bbpress-forums#bbpress-forums .bs-forums-items .item-avatar {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-header-on-the-homepage-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Header on the Homepage for Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-header-in-the-homepage-for-logged-out-users/", | |
| "css_code": "body.home:not(.logged-in) .site-content {\n\n padding-top: 0px;\n\n}\n\nbody.home:not(.logged-in) header#masthead {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-the-share-whats-on-your-mindshare-something-with-the-group-text", | |
| "version": "1.0.0", | |
| "name": "How to Hide/Remove the “Share what’s on your mind/Share something with the group” Text", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-the-share-whats-on-your-mind-share-something-with-the-group-text/", | |
| "css_code": "div#whats-new-textarea { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-side-panel-on-a-single-products-on-a-woocommerce-shop", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Side Panel on a Single Products on a WooCommerce Shop", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-side-panel-on-a-single-products-on-a-woocommerce-shop/", | |
| "css_code": ".single-product div#secondary { display: none; } .single-product div#primary { max-width: 100% !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-terms-and-conditions-on-the-registration-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Terms and Conditions on the Registration Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-terms-and-conditions-on-the-registration-page/", | |
| "css_code": ".register-privacy-info { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-location-on-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Location on the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-location-on-the-profile-page/", | |
| "css_code": ".profile-fields .field_location { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-name-image-and-nickname-on-the-profile-drop-down-menu", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Name, Image, and Nickname on the Profile Drop-Down Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-name-image-and-nickname-on-the-profile-drop-down-menu/", | |
| "css_code": "#header-aside .header-aside-inner .sub-menu .wrapper ul.sub-menu-inner li:first-child {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-profile-tab-in-profile-page-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Profile Tab in Profile Page for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-profile-tab-in-profile-page-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) li#xprofile-personal-li.bp-personal-tab { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-woocommerce-shop-breadcrumb", | |
| "version": "1.0.0", | |
| "name": "How to Hide the WooCommerce Shop Breadcrumb", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-woocommerce-shop-breadcrumb/", | |
| "css_code": "Nav.woocommerce-breadcrumb { Display: none!important }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-timestamp-on-discussions", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Timestamp on Discussions?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-timestamp-on-discussions/", | |
| "css_code": ".bs-replied a { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-user-role-from-the-forum-discussion-page", | |
| "version": "1.0.0", | |
| "name": "How to hide the user role from the forum discussion page?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-user-role-from-the-forum-discussion-page/", | |
| "css_code": ".bs-reply-header .bbp-author-role { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hideremove-course-category-in-course-cover-image", | |
| "version": "1.0.0", | |
| "name": "How to Hide/Remove Course Category in Course Cover Image", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-remove-course-category-in-course-cover-image/", | |
| "css_code": ".single-sfwd-courses .bb-course-category { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-forum-discussion-revision-log", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Forum Discussion Revision Log", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-forum-discussion-revision-log/", | |
| "css_code": ".bbp-reply-revision-log {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-gap-between-the-course-page-title-and-the-header-menu", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Gap Between the Course Page Title and the Header Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-gap-between-course-page-title-and-the-header-menu/", | |
| "css_code": ".post-type-archive-sfwd-courses .content-area {\n\n padding-top: 0;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "configure-the-activity-tabs-into-a-dropdown", | |
| "version": "1.0.0", | |
| "name": "Configure the “Activity Tabs” into a Dropdown", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/configure-the-activity-tabs-into-a-dropdown/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "<select class=\"component-navigation <?php bp_nouveau_directory_list_class(); ?>\" onchange=\"location = this.value;\"> <?php while ( bp_nouveau_nav_items() ) : bp_nouveau_nav_item(); ?> <option id=\"<?php bp_nouveau_nav_id(); ?>\" class=\"<?php bp_nouveau_nav_classes(); ?>\" <?php bp_nouveau_nav_scope(); ?> data-bp-object=\"<?php bp_nouveau_directory_nav_object(); ?>\" value=\"<?php bp_nouveau_nav_link(); ?>\"> <?php bp_nouveau_nav_link_text(); ?> <?php if ( bp_nouveau_nav_has_count() ) : ?> (<?php bp_nouveau_nav_count(); ?>) <?php endif; ?> </option> <?php endwhile; ?> </select><!-- .component-navigation -->" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-login-error-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Login Error Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-login-error-color/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_custom_css() { ?>\n\n <style>\n\n .login #login #login_error {\n\n background-color: #ddd;\n\n border-left-color: #ddd;\n\n color: #000;\n\n }\n\n </style>\n\n<?php }\n\nadd_action( 'login_enqueue_scripts', 'bb_login_custom_css' );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-login-text-color-for-jetpack-sso", | |
| "version": "1.0.0", | |
| "name": "How to Change the Login Text Color for Jetpack SSO", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-login-text-color-in-jetpack/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_jetpack_login_color() { ?>\n\n <style type=\"text/css\">\n\n #loginform #jetpack-sso-wrap p {\n\n color: white !important;\n\n }\n\n </style>\n\n<?php }\n\nadd_action( 'login_enqueue_scripts', 'bb_jetpack_login_color' );" | |
| }, | |
| { | |
| "remote_id": "how-to-customize-the-reset-your-password-email-template", | |
| "version": "1.0.0", | |
| "name": "How to Customize the “Reset your Password” Email Template", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/customizing-reset-your-password-email-template/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "<?php\n// Customize the subject of the reset password email\nadd_filter( 'retrieve_password_title', 'custom_reset_password_subject' );\nfunction custom_reset_password_subject( $title ) {\n // Custom subject\n $title = 'Your Custom Subject for Password Reset';\n return $title;\n}\n\n// Customize the message body of the reset password email\nadd_filter( 'retrieve_password_message', 'custom_reset_password_message', 10, 4 );\nfunction custom_reset_password_message( $message, $key, $user_login, $user_data ) {\n // Create a custom password reset link\n $reset_link = network_site_url( \"wp-login.php?action=rp&key=$key&login=\" . rawurlencode( $user_login ), 'login' );\n\n // Custom message body\n $message = \"Hi \" . $user_data->display_name . \",nn\";\n $message .= \"It seems like you've requested a password reset for your account on \" . get_bloginfo( 'name' ) . \".nn\";\n $message .= \"To reset your password, please click the link below:n\";\n $message .= $reset_link . \"nn\";\n $message .= \"If you did not request this change, please ignore this email.nn\";\n $message .= \"Thank you,n\";\n $message .= get_bloginfo( 'name' ) . \" Team\";\n\n return $message;\n}\n?>" | |
| }, | |
| { | |
| "remote_id": "how-to-add-custom-yoast-seo-meta-data-for-a-members-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Add Custom Yoast SEO Meta Data for a Member’s Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/custom-yoast-seo-meta-data-for-members-profile-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "<?php\n\n// Create the members page's meta description using the Bio profile field\n\nadd_filter( 'wpseo_metadesc', 'bb_custom_metadata_member_page' );\n\nfunction bb_custom_metadata_member_page( $desc ) {\n\n // Exclude blog pages and directories\n\n if ( bp_is_blog_page() || bp_is_directory() ) {\n\n return $desc;\n\n }\n\n // Only modify for user profile pages\n\n if ( bp_is_user() ) {\n\n $args = array(\n\n 'field' => 'Bio', // Name of the profile field\n\n );\n\n $bio = bp_get_profile_field_data( $args );\n\n if ( empty( $bio ) ) {\n\n $bio = \"Some default description. Please fill your Bio in Profiles → Edit → Bio.\";\n\n }\n\n // Format meta description: \"John Doe - Bio text\"\n\n $desc = sprintf( '%s - %s', bp_get_displayed_user_fullname(), $bio );\n\n }\n\n return $desc;\n\n}\n\n?>" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-upload-limit-of-profile-and-cover-images", | |
| "version": "1.0.0", | |
| "name": "How to Change the Upload Limit of Profile and Cover Images", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-the-upload-limit-of-profile-and-cover-images/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "/* Adjust PROFILE COVER upload limit */\n\nfunction bbp_cover_image_max_upload_file_size( $fileupload_maxk, $type ) {\n\n if ( 'cover_image' == $type ) {\n\n $fileupload_maxk = 10485760; // in bytes, 10MB\n\n }\n\n return $fileupload_maxk;\n\n}\n\nadd_filter( 'bp_attachments_get_max_upload_file_size', 'bbp_cover_image_max_upload_file_size', 10, 2 );\n\n/* Adjust PROFILE AVATAR upload limit */\n\nadd_filter( 'bp_core_avatar_original_max_filesize', function() {\n\n return 10485760; // in bytes, 10MB\n\n} );" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-comments-for-a-specific-user", | |
| "version": "1.0.0", | |
| "name": "How to Disable Comments for a Specific User", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-comments-for-a-specific-user/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function remove_comment_activity( $return ) {\n\n $current_user_id = bbp_get_current_user_id();\n\n $member_type = bp_get_member_type($current_user_id, true);\n\n // Change 'individual' to the member type you want to restrict\n\n if ( $member_type == 'individual' ) {\n\n unset( $return['activity_conversation'] );\n\n }\n\n return $return;\n}" | |
| }, | |
| { | |
| "remote_id": "different-logo-on-the-login-page", | |
| "version": "1.0.0", | |
| "name": "Different Logo on the Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/different-logo-on-the-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function my_login_logo_one() { ?> <style type=\"text/css\"> body.login div#login h1 a { background-image: url(https://yourdomain/wordpress/My_logo.png);padding-bottom: 30px; } </style> <?php } add_action( 'login_enqueue_scripts', 'my_login_logo_one' );" | |
| }, | |
| { | |
| "remote_id": "change-the-email-address-to-a-business-name", | |
| "version": "1.0.0", | |
| "name": "Change the Email Address to a Business Name", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-email-address-to-a-business-name/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function wpb_sender_email( $original_email_address ) {\n\n return '\n[email protected]\n';\n\n}\n\nadd_filter( 'wp_mail_from', 'wpb_sender_email' );" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-direct-message-email-notifications-for-logged-in-users", | |
| "version": "1.0.0", | |
| "name": "How to Disable Direct Message Email Notifications for Logged-In Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-email-notification-for-direct-message-for-a-logged-in-use/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bp_set_notification_default( $user_id ) {\n\n $keys = array(\n\n 'notification_messages_new_message',\n\n 'notification_messages_new_notice'\n\n );\n\n foreach ( $keys as $key ) {\n\n update_user_meta( $user_id, $key, 'no' );\n\n }\n\n}\n\nadd_action( 'bp_core_signup_user', 'bp_set_notification_default', 100, 1 );" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-mention-functionality", | |
| "version": "1.0.0", | |
| "name": "How to Disable @ Mention Functionality", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-mention-using-functionality/", | |
| "css_code": ".atwho-container {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_activity_do_mentions', '__return_false' );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-message-box-on-the-password-reset-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the Message Box on the Password Reset Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-color-of-the-message-box-on-the-password-reset-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'login_head', 'customLoginStyle' ); \n\nfunction customLoginStyle() { \n\n echo \"<style type='text/css'> \n\n .login:not(.login-action-lostpassword) .message:not(.reset-pass), \n\n .login.login-action-lostpassword .message > .message { \n\n background-color: #000 !important; \n\n border-color: #000 !important; \n\n } \n\n </style>\"; \n\n}" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-group-description-excerpt-length", | |
| "version": "1.0.0", | |
| "name": "How to Change the Group Description Excerpt Length", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-group-description-excerpt-length/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_get_group_description_excerpt', 'custom_bp_get_group_description_excerpt', 100, 2 );\n\nfunction custom_bp_get_group_description_excerpt($excerpt, $group) {\n\n $group_link = '... <a href=\"' . esc_url( bp_get_group_permalink( $group ) ) . '\" class=\"bb-more-link\">' . esc_html__( 'View more', 'buddyboss-theme' ) . '</a>';\n\n if ( bp_is_single_item() ) {\n\n $group_link = '... <a href=\"#group-description-popup\" class=\"bb-more-link show-action-popup\">' . esc_html__( 'View more', 'buddyboss-theme' ) . '</a>';\n\n }\n\n return bp_create_excerpt( $group->description, 2000, array( 'ending' => $group_link ) );\n\n}\n\n/code\nadd_filter( 'bp_get_group_description_excerpt', 'custom_show_entire_bb_get_group_description', 999, 2 );\n\nfunction custom_show_entire_bb_get_group_description( $excerpt, $group ) {\n\n if ( empty( $group ) ) {\n\n return $excerpt;\n\n }\n\n return wpautop($group->description);\n\n}" | |
| }, | |
| { | |
| "remote_id": "change-the-default-login-page", | |
| "version": "1.0.0", | |
| "name": "Change the Default Login Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-default-login-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function my_login_page( $login_url ) {\n\n // Replace 'YOUR_URL_HERE' with the URL of your custom login page\n\n return 'YOUR_URL_HERE';\n\n}\n\nadd_filter( 'login_url', 'my_login_page', 10 );" | |
| }, | |
| { | |
| "remote_id": "change-the-display-name-format-to-last-name-and-then-first-name", | |
| "version": "1.0.0", | |
| "name": "Change the Display Name Format to Last Name and then First Name", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-display-name-format-to-last-name-and-then-first-name/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function change_display_name_format($display_name_format) {\n\n // Change the display name format to 'last_name - first_name'\n\n $display_name_format = '%last_name% - %first_name%';\n\n return $display_name_format;\n\n}\n\nadd_filter('bp_core_display_name_format', 'change_display_name_format');" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-newsactivity-feed-title-header-on-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the News/Activity Feed Title Header on the Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-news-activity-feed-title-header-on-the-activity-page/", | |
| "css_code": "body.directory.activity header.entry-header { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-lesson-sidebar", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Lesson Sidebar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-lesson-sidebar/", | |
| "css_code": ".lms-topic-sidebar-wrapper { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-the-black-overlay-on-top-of-the-cover-photo-for-learndash-courses", | |
| "version": "1.0.0", | |
| "name": "Remove the black overlay on top of the cover photo for LearnDash courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-black-overlay-on-top-of-the-cover-photo-for-learndash-courses/", | |
| "css_code": ".bb-learndash-banner:before { content: unset !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-enrolled-users-on-the-course-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Enrolled Users on the Course Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-enrolled-users-on-the-course-page/", | |
| "css_code": "Div.bb-course-member-wrap.flex.align-items-center { Display: none!important }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-all-groups-tab-on-the-groups-directory", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “All Groups” Tab on the Groups Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-all-groups-tab-on-the-groups-directory/", | |
| "css_code": "#groups-all { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-activity-feed-post-updater-name", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Activity Feed Post Updater Name", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-activity-feed-post-updater-name/", | |
| "css_code": ".activity-header p:first-child { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-course-category-on-courses", | |
| "version": "1.0.0", | |
| "name": "How to Hide Course Category on Courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-course-category-on-courses/", | |
| "css_code": ".bb-course-banner-inner .bb-course-category span.course-category-item a { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-search-photos-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “Search Photos” for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-search-photos-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) form#dir-media-search-form.bp-dir-search-form { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-number-of-lesson-in-course-grid", | |
| "version": "1.0.0", | |
| "name": "How to hide number of Lesson in Course Grid", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-number-of-lesson-in-course-grid/", | |
| "css_code": ".course-lesson-count { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-delete-option-from-the-group-manage-settings", | |
| "version": "1.0.0", | |
| "name": "How to hide the delete option from the Group > Manage settings", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-delete-option-from-the-group-manage-settings/", | |
| "css_code": "a#delete-group { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-create-a-group-tab-on-the-groups-directory", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “Create a Group” Tab on the Groups Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-create-a-group-tab-on-the-groups-directory/", | |
| "css_code": "#groups-create { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-leave-group-button-on-the-group-directory-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “Leave Group” Button on the Group Directory Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-leave-group-button-on-the-group-directory-page/", | |
| "css_code": "button.group-button.leave-group.button.bp-toggle-action-button { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-date-and-month-profile-search-using-date-field", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Date and Month (Profile Search) using Date Field", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-date-and-month-profile-search-using-date-field/", | |
| "css_code": "/* HIDE THE DATE AND MONTH - PROFILE SEARCH */ .bp-profile-search-widget .date-wrapper select:first-child, .bp-profile-search-widget .date-wrapper select:nth-child(2) { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-login-information-tab-in-the-account-settings-page", | |
| "version": "1.0.0", | |
| "name": "How to hide “Login Information” tab in the “Account Settings” page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-login-information-tab-in-the-account-settings-page/", | |
| "css_code": ".bp-settings-container a#general { display:none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-all-the-page-titles-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Hide All the Page Titles for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-all-the-page-titles-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in).page.buddyboss-theme header.entry-header { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-photos-tab-from-the-group-page", | |
| "version": "1.0.0", | |
| "name": "How to Remove the “Photos” Tab from the Group Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-photos-tab-from-the-group-page/", | |
| "css_code": "#photos-groups-li.bp-groups-tab {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-my-groups-tab-on-the-groups-directory", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “My Groups” Tab on the Groups Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-my-groups-tab-on-the-groups-directory/", | |
| "css_code": "#groups-personal { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-download-button-for-photosvideos-posted-in-the-news-feed-and-groups-feed", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Download Button for Photos/Videos Posted in the News Feed and Groups Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-download-button-for-photos-videos-posted-in-the-news-feed-and-groups-feed/", | |
| "css_code": ".activity-list a.download-media, a.download-video { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-course-status-section-for-unenrolled-users-in-a-learndash-course-page", | |
| "version": "1.0.0", | |
| "name": "How to Hide the Course Status Section for Unenrolled Users in a LearnDash Course Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-course-status-section-for-unenrolled-users-in-a-learndash-course-page/", | |
| "css_code": ".learndash-wrapper .ld-course-status.ld-course-status-not-enrolled { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-the-course-status-ribbon-in-learndash-courses", | |
| "version": "1.0.0", | |
| "name": "How to Remove the Course Status Ribbon in LearnDash Courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-start-course-in-progress-completed-ribbon-in-courses/", | |
| "css_code": ".bb-course-cover .ld-status {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-the-my-connections-widget-activated-via-gutenberg-plugin", | |
| "version": "1.0.0", | |
| "name": "How to Fix the My Connections Widget (Activated via Gutenberg Plugin)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-fix-the-my-connections-widget-activated-via-gutenberg-plugin/", | |
| "css_code": "/** MY CONNECTIONS WIDGET WITH GUTENBERG PLUGIN **/ .widget_bp_core_friends_widget .item-title.fn { text-indent: 0; } .widget_bp_core_friends_widget .item-title.fn:after { display: none; } /** END **/", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-topics-icon-under-course-includes-on-the-lesson-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Topics Icon under “Course Includes” on the Lesson Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-topics-icon-under-course-includes-on-the-lesson-page/", | |
| "css_code": "I.bb-icon-l.bb-icon-text:before{ content: 'eeb2';}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-twitter-logo-on-the-profile-page-to-the-new-x-logo", | |
| "version": "1.0.0", | |
| "name": "How to Change the Twitter Logo on the Profile Page to the New “X” Logo", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-twitter-logo-on-the-profile-page-to-the-new-x-logo/", | |
| "css_code": "i.bb-icon-rf.bb-icon-brand-twitter:before { content: \"\"; display: inline-block; width: 15px; height: 15px; background-image: url('https://about.twitter.com/content/dam/about-twitter/x/brand-toolkit/logo-black.png.twimg.1920.png'); background-size: cover; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-twitter-social-share-icon-to-the-new-x-logo", | |
| "version": "1.0.0", | |
| "name": "How to Change the Twitter Social Share Icon to the New “X” Logo", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-twitter-social-share-icon-to-the-new-x-logo/", | |
| "css_code": "i.fa.fa-twitter.jssocials-share-logo:before { content: \"\"; display: inline-block; width: 15px; height: 15px; background-image: url('https://about.twitter.com/content/dam/about-twitter/x/brand-toolkit/logo-black.png.twimg.1920.png'); background-size: cover; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-user-hover-color-on-the-header", | |
| "version": "1.0.0", | |
| "name": "How to change the user hover color on the header?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-user-hover-color-on-the-header/", | |
| "css_code": ".bb-template-v2 .site-header .user-wrap.menu-item-has-children>.user-link:hover:before{ background-color: #bab6a7; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-username-font-color-in-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Change the Username Font Color in the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-username-font-color-in-the-activity-feed/", | |
| "css_code": ".activity .activity-header p:not([class]) a:first-child { color: red; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-username-font-size-in-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Change the Username Font Size in the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-username-font-size-in-the-activity-feed/", | |
| "css_code": ".activity .activity-header p:not([class]) a:first-child { font-size: 30px; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-forgot-your-password", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the “Forgot Your Password?”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-color-of-the-forgot-your-password-text/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_login_custom_css() { ?>\n\n <style>\n\n .login.login-action-lostpassword.bb-login #login > p.message > div {\n\n color: #F397BF;\n\n }\n\n </style>\n\n<?php }\n\nadd_action( 'login_enqueue_scripts', 'bb_login_custom_css' );" | |
| }, | |
| { | |
| "remote_id": "how-to-change-eye-icon-for-show-or-hide-in-password-field", | |
| "version": "1.0.0", | |
| "name": "How to Change Eye Icon for Show or Hide in Password Field", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-eye-icon-for-show-or-hide-in-password-field/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action( 'login_enqueue_scripts', 'bbTheme_loginStyle' ); \n\nfunction bbTheme_loginStyle() { \n\n $styles = '<style>\n\n body.login .user-pass-wrap .wp-pwd .dashicons-visibility:before { content: \"ee6a\"; }\n\n body.login .user-pass-wrap .wp-pwd .dashicons-hidden:before { content: \"ee69\"; }\n\n </style>'; \n\n echo $styles; \n\n}\n\n.user-pass-wrap .wp-pwd .dashicons-visibility:before { content: \"ee6a\"; }\n\n.user-pass-wrap .wp-pwd .dashicons-hidden:before { content: \"ee69\"; }" | |
| }, | |
| { | |
| "remote_id": "how-to-add-google-tag-manager-script", | |
| "version": "1.0.0", | |
| "name": "How to Add Google Tag Manager Script", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-google-tag-manager-script/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bb_custom_head() { ?>\n\n <script>\n\n // your Google Tag Manager script code goes here\n\n </script>\n\n<?php }\n\nadd_action('wp_head', 'bb_custom_head');" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-login-page-width", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the Login Page Width", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-the-login-page-width/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function custom_login_logo() {\n\n echo '<style> \n\n body.login.login-split-page #login { \n\n width: 370px; \n\n } \n\n </style>';\n\n}\n\nadd_action('login_head', 'custom_login_logo');" | |
| }, | |
| { | |
| "remote_id": "how-to-add-a-forum-description-on-a-single-forum-page", | |
| "version": "1.0.0", | |
| "name": "How to Add a Forum Description on a Single-Forum Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-a-forum-description-on-a-single-forum-page/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "function bbp_singleforum_description() {\n\n echo '<div class=\"bb-forum-content-wrap\"><div class=\"bb-forum-content\">';\n\n echo bbp_forum_content();\n\n echo '</div></div>';\n\n}\n\nadd_action( 'bbp_template_before_single_forum', 'bbp_singleforum_description');" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-url-slug-for-the-profile-navigation-tabs", | |
| "version": "1.0.0", | |
| "name": "How to Change the URL Slug for the Profile Navigation Tabs", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-url-slug-for-the-profile-navigation-tabs/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "define( 'BP_ACTIVITY_SLUG', 'streams' ); \n\ndefine( 'BP_BLOGS_SLUG', 'journals' ); \n\ndefine( 'BP_MEMBERS_SLUG', 'users' ); \n\ndefine( 'BP_FRIENDS_SLUG', 'peeps' ); \n\ndefine( 'BP_GROUPS_SLUG', 'gatherings' ); \n\ndefine( 'BP_MESSAGES_SLUG', 'notes' ); \n\ndefine( 'BP_WIRE_SLUG', 'pinboard' ); \n\ndefine( 'BP_XPROFILE_SLUG', 'info' ); \n\n/* Some other non-component slugs */ \n\ndefine( 'BP_REGISTER_SLUG', 'signup' ); \n\ndefine( 'BP_ACTIVATION_SLUG', 'enable' ); \n\ndefine( 'BP_SEARCH_SLUG', 'find' ); \n\ndefine( 'BP_HOME_BLOG_SLUG', 'news' );" | |
| }, | |
| { | |
| "remote_id": "how-to-disable-the-download-features-on-my-site", | |
| "version": "1.0.0", | |
| "name": "How to Disable the Download Features on my Site", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-disable-the-download-features-on-my-site/", | |
| "css_code": "a.document-action_download { display: none; }", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bb_media_user_can_access', 'remove_document_download_globally_bb', 10, 4 ); function remove_document_download_globally_bb( $data, $id, $type, $media_group_id ){ if( 'document' == $type || 'folder' == $type ){ $data['can_download'] = false; } return $data; }" | |
| }, | |
| { | |
| "remote_id": "how-to-enable-full-width-search-area-under-the-search-bar", | |
| "version": "1.0.0", | |
| "name": "How to Enable Full Width Search Area Under the Search Bar?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-enable-full-width-search-area-under-the-search-bar/", | |
| "css_code": "body.bp-search .bp-search-ac-header { max-width: 100% !important; transform: translate(-30%,10px) !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-all-groups-text-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the “All Groups” Text Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-all-groups-text-font-size/", | |
| "css_code": "li#groups-all.selected { font-size: 50px; } /* Replace 50px with your preferred size */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-activity-feed-groups-and-members-page-title-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the “Activity Feed, Groups, and Members” Page Title Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-activity-feed-groups-and-members-page-title-font-size/", | |
| "css_code": ".entry-title {\n\n font-size: 40px !important; /* Change this value to your desired font size */\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-activated-page-login-button-to-match-the-activation-page-button", | |
| "version": "1.0.0", | |
| "name": "How to Change the “Activated” Page Login Button to Match the “Activation” Page Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-activated-page-login-button-to-match-the-activation-page-button/", | |
| "css_code": "#activate-page p a {\n\n background-color: var(--bb-login-register-button-background-color-regular);\n\n color: var(--bb-login-register-button-text-color-regular);\n\n border-color: var(--bb-login-register-button-border-color-regular);\n\n border-radius: 100px;\n\n border-width: 1px;\n\n border-style: solid;\n\n min-height: 38px;\n\n line-height: 38px;\n\n display: block;\n\n text-align: center;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-quiz-icon-under-the-course-includes-section-on-the-lesson-page", | |
| "version": "1.0.0", | |
| "name": "How to Change Quiz Icon Under the “Course Includes” Section on the Lesson Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-quiz-icon-under-the-course-includes-section-on-the-lesson-page/", | |
| "css_code": "i.bb-icon-rl.bb-icon-question:before {\n\n content: 'eeb2';\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-profile-page-corners-to-rounded-after-adding-padding", | |
| "version": "1.0.0", | |
| "name": "How to Change Profile Page Corners to Rounded After Adding Padding", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-profile-page-corners-to-rounded-after-adding-padding/", | |
| "css_code": "body.bbp-user-page div#cover-image-container {\n\n border-top-right-radius: 5px;\n\n border-top-left-radius: 5px;\n\n}\n\nbody.bbp-user-page div#header-cover-image {\n\n border-top-right-radius: 5px;\n\n border-top-left-radius: 5px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-folder-icons-on-group-documents", | |
| "version": "1.0.0", | |
| "name": "How to Change Folder Icons on Group Documents", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-folder-icons-on-group-documents/", | |
| "css_code": ".bb-icon-folder-stacked:before {\n\n content: 'ed94';\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-activity-post-header-and-post-text-size", | |
| "version": "1.0.0", | |
| "name": "How to Change Activity Post Header and Post Text Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-activity-post-header-and-post-text-size/", | |
| "css_code": ".activity-header p {\n\n font-size: 18px;\n\n}\n\n.activity-header a {\n\n font-size: 18px;\n\n}\n\n.buddypress-wrap .activity-inner {\n\n font-size: 20px !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-create-group-text-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the “Create Group” Text Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-create-group-text-font-size/", | |
| "css_code": "li#groups-create.no-ajax.group-create.create-button { font-size: 20px; } /* Replace 20px with your preferred size */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-my-groups-text-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the “My Groups” Text Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-my-groups-text-font-size/", | |
| "css_code": "li#groups-personal { font-size: 50px; } /* Replace 50px with your preferred size */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-overlay-on-the-cover-image-for-the-individual-forums", | |
| "version": "1.0.0", | |
| "name": "How to change the overlay on the cover image for the individual forums?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-overlay-on-the-cover-image-for-the-individual-forums/", | |
| "css_code": "body.forum-archive a.bb-cover-wrap:after {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-of-active-message-thread-background-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the of Active Message Thread Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-of-active-message-thread-background-color/", | |
| "css_code": "@media screen and (min-width: 1081px) {\n .bb-template-v2 #message-threads .current > a {\n background: #FFFF00;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-notification-bell-icon-on-the-header", | |
| "version": "1.0.0", | |
| "name": "How to change the notification bell icon on the header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-notification-bell-icon-on-the-header/", | |
| "css_code": "i.bb-icon-l.bb-icon-bell:before {\n content: 'ef30';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-modal-overlay-background-and-quick-reply-forum-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Modal Overlay Background and Quick Reply Forum Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-modal-overlay-background-and-quick-reply-forum-color/", | |
| "css_code": "body.activity .bb-modal-overlay {\n background-color: #000000;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-lessons-icon-under-course-includes-on-the-lesson-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Lessons Icon under “Course Includes” on the Lesson Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-lessons-icon-under-course-includes-on-the-lesson-page/", | |
| "css_code": "i.bb-icon-l.bb-icon-book:before {\n content: 'eeb2';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-lesson-progress-bar-text-label-font-size-and-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Lesson Progress Bar Text Label Font Size and Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-lesson-progress-bar-text-label-font-size-and-color/", | |
| "css_code": "div.ld-progress {\n font-size: 25px !important;\n color: red;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-lesson-progress-bar-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Lesson Progress Bar Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-lesson-progress-bar-font-size/", | |
| "css_code": "div.ld-progress {\n font-size: 30px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-lesson-progress-bar-font-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Lesson Progress Bar Font Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-lesson-progress-bar-font-color/", | |
| "css_code": "div.ld-progress {\n color: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-profile-menu-text-on-hover", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the Profile Menu Text on Hover", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-profile-menu-text-on-hover/", | |
| "css_code": "nav#object-nav ul li a:hover {\n\n color: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-align-uploaded-images-in-the-middle-of-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "How to Align Uploaded Images in the Middle of the Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-align-uploaded-images-in-the-middle-of-the-activity-page/", | |
| "css_code": "body.activity .bb-activity-media-elem.media-activity {\n\n text-align: center;\n\n display: block;\n\n flex: auto !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-hover-color-background-of-the-profile-dropdown-menu", | |
| "version": "1.0.0", | |
| "name": "How to change the hover color background of the profile dropdown menu?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-hover-color-background-of-the-profile-dropdown-menu/", | |
| "css_code": ".site-header .sub-menu li:hover > a {\n background: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-header-logo-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Header Logo Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-header-logo-size/", | |
| "css_code": "#site-logo .site-title img.bb-logo {\n width: 380px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-header-activity-feed-icon-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Header Activity Feed Icon Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-header-activity-feed-icon-color/", | |
| "css_code": "I._mi._before.bb-icon-l.buddyboss.bb-icon-activity {\ncolor: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-group-type-label-background-color-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Group Type Label Background Color on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-group-type-label-background-color-on-mobile-view/", | |
| "css_code": "@media only screen and (max-width: 767px) {\n .item-header-wrap .bp-group-meta .group-type {\n background-color: #ff0000 !important;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-group-title-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Group Title Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-group-title-font-size/", | |
| "css_code": "h2.bb-bp-group-title {\n font-size: 40px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-group-title-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Group Title Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-group-title-color/", | |
| "css_code": "h2.bb-bp-group-title {\n color: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-size-of-the-buddypanellogged-out-users", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Size of the BuddyPanel(Logged-out Users)?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-the-buddypanellogged-out-users/", | |
| "css_code": "body:not(.logged-in) .buddypanel-menu a {\n font-size: 16px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-size-of-my-connections-tab-and-span-count-on-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Size of “My Connections” Tab and Span Count on the Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-my-connections-tab-and-span-count-on-the-members-directory/", | |
| "css_code": "#members-personal {\n font-size: 25px;\n}\n\n#members-personal > a > span {\n font-size: 25px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-hover-color-of-the-submenu-on-the-header", | |
| "version": "1.0.0", | |
| "name": "How to Change the Hover Color of the Submenu on the Header?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-hover-color-of-the-submenu-on-the-header/", | |
| "css_code": ".bb-template-v2 .site-header #primary-navbar .menu-item > .ab-submenu .bb-sub-menu .menu-item a:hover {\n background: #FFEBC2;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-hover-color-of-user-profile-dropdown", | |
| "version": "1.0.0", | |
| "name": "How to Change the Hover Color of User-Profile Dropdown", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-hover-color-of-user-profile-dropdown/", | |
| "css_code": ".bb-template-v2 .site-header .user-wrap.menu-item-has-children > .user-link:hover:before {\n background-color: #4291dd;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-align-the-profile-search-sidebar-with-the-members-directory-on-grid-view", | |
| "version": "1.0.0", | |
| "name": "How to Align the Profile Search Sidebar with the Members Directory on Grid View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-align-the-profile-search-sidebar-with-the-members-directory-on-grid-view/", | |
| "css_code": "/** MEMBERS PAGE SIDEBAR **/\n\n@media (min-width: 991px) { \n\n body.members aside#bp-profile-search-form-outer { \n\n margin-top: 177px; \n\n } \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-yoast-seo-breadcrumbs-width", | |
| "version": "1.0.0", | |
| "name": "How to Adjust Yoast SEO Breadcrumbs Width", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-yoast-seo-breadcrumbs-width/", | |
| "css_code": ".bb-yoast-breadcrumbs { \n\n max-width: 1800px; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-padding-size-of-the-blog-post-image", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the Padding Size of the Blog Post Image", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-the-padding-size-of-the-blog-post-image/", | |
| "css_code": ".single .entry-img { \n\n padding-top: 75%; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-learndash-mark-complete-button", | |
| "version": "1.0.0", | |
| "name": "How to Change the LearnDash “Mark Complete” Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-learndash-mark-complete-button/", | |
| "css_code": ".learndash-wrapper .learndash_content_wrap .learndash_mark_complete_button {\n background-color: #FF0000;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-icon-for-the-list-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Icon for the List View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-icon-for-the-list-view/", | |
| "css_code": "i.bb-icon-l.bb-icon-bars:before {\n content: 'ee9b';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-icon-for-the-grid-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Icon for the Grid View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-icon-for-the-grid-view/", | |
| "css_code": "i.bb-icon-l.bb-icon-grid-large:before {\n content: 'eeae';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-icon-before-the-course-topic-title-on-the-course-navigation-page", | |
| "version": "1.0.0", | |
| "name": "How to change the icon before the course topic title on the course navigation page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-icon-before-the-course-topic-title-on-the-course-navigation-page/", | |
| "css_code": ".lms-topic-item .bb-title .bb-icon-text:before {\n content: 'ee3f';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-size-of-all-members-tab-and-span-count-on-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Size of “All Members” Tab and Span Count on the Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-all-members-tab-and-span-count-on-the-members-directory/", | |
| "css_code": "#members-all {\n font-size: 25px;\n}\n\n#members-all > a > span {\n font-size: 25px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-color-of-the-name-and-text-color-of-the-username-on-the-profile-dropdown-menu", | |
| "version": "1.0.0", | |
| "name": "How to change the font color of the name and text color of the username on the profile dropdown menu?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-color-of-the-name-and-text-color-of-the-username-on-the-profile-dropdown-menu/", | |
| "css_code": ".user-wrap.menu-item-has-children .sub-menu .sub-menu-inner .user-link .user-name {\n color: #d36b88;\n}\n\n.site-header .header-aside .sub-menu a .user-mention {\n color: #008CAC !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-size-of-following-tab-and-span-count-on-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Size of “Following” Tab and Span Count on the Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-following-tab-and-span-count-on-the-members-directory/", | |
| "css_code": "#members-following {\n font-size: 25px;\n}\n\n#members-following > a > span {\n font-size: 25px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-ellipsis-icon", | |
| "version": "1.0.0", | |
| "name": "How to Change the Ellipsis Icon", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-ellipsis-icon/", | |
| "css_code": "i.bb-icon-f.bb-icon-ellipsis-h:before {\n content: 'eef9';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-the-apply-coupon-code-button-on-the-woocommerce-cart-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of the Apply Coupon Code Button on the WooCommerce Cart Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-the-apply-coupon-code-button-on-the-woocommerce-cart-page/", | |
| "css_code": ".coupon button.button { \n\n background: #007CFF !important; /* Change #007CFF to your preferred color */\n\n}\n\n.coupon button.button:hover { \n\n background: #005BBB !important; \n\n}\n\n.coupon button.button { \n\n background: linear-gradient(to right, #007CFF, #005BBB) !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-the-submenu-on-the-header", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of the Submenu on the Header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-the-submenu-on-the-header/", | |
| "css_code": ".bb-template-v2 .site-header #primary-navbar .menu-item > .ab-submenu .bb-sub-menu .menu-item a:hover { \n\n background: #FFEBC2; /* Change #FFEBC2 to your preferred color */\n\n}\n\n.bb-template-v2 .site-header #primary-navbar .menu-item > .ab-submenu .bb-sub-menu .menu-item a { \n\n background: #FFEBC2; \n\n}\n\nbackground: linear-gradient(to right, #FFEBC2, #FFD18C);", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-warnings", | |
| "version": "1.0.0", | |
| "name": "How to change the background color of warnings", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-warnings/", | |
| "css_code": "body #buddypress p.warning {\n background-color: #ff0000;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-line-height", | |
| "version": "1.0.0", | |
| "name": "How to Adjust Line Height", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-line-height/", | |
| "css_code": ".home h1.entry-title { \n\n line-height: 1.5em; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-of-subscribe-icon-bell-when-hovered", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background of Subscribe Icon (Bell) when Hovered", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-of-subscribe-icon-bell-when-hovered/", | |
| "css_code": "i.bb-icon-l.bb-icon-bell:hover {\n color: red;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-boy-font-size-of-single-post-pages", | |
| "version": "1.0.0", | |
| "name": "How to change the boy font size of single post pages?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-boy-font-size-of-single-post-pages/", | |
| "css_code": ".single-post .entry-content p {\n font-size: 16px;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-filter-result-text-on-the-profile-search", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the “Filter Result” Text on the Profile Search", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-filter-result-text-on-the-profile-search/", | |
| "css_code": "h2.bps-form-title.widget-title {\n color: #FF0000; \n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-leave-group-button-on-the-group-directory", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the “Leave Group” Button on the Group Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-leave-group-button-on-the-group-directory/", | |
| "css_code": "#groups-list.bp-list .item-entry .list-wrap .group-footer-wrap .footer-button-wrap .group-button:not(.generic-button):hover {\n background-color: #FF0000;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-ellipsis-on-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the Ellipsis on Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-ellipsis-on-activity-feed/", | |
| "css_code": "I.bb-icon-f.bb-icon-ellipsis-h {\n color: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-reply-text-on-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "How to change the color of the Reply text on the Activity page?", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-reply-text-on-the-activity-page/", | |
| "css_code": "#buddypress .bp-list .activity-comments .bp-generic-meta .generic-button a {\n color: #930097;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-text-when-searching", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the Text When Searching", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-text-when-searching/", | |
| "css_code": ".search-field-top::placeholder {\n\n color: red; /* Placeholder text color */\n\n}\n\n.search-field-top {\n\n color: red; /* Default text color */\n\n}\n\n.search-field-top:focus {\n\n color: #f00; /* Color while typing */\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-course-certificate-icon-under-course-includes-on-the-lesson-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Course Certificate Icon under “Course Includes” on the Lesson Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-course-certificate-icon-under-course-includes-on-the-lesson-page/", | |
| "css_code": "I.bb-icon-l.bb-icon-certificate:before {\n content: 'eeb2';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-footer-padding", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the Footer Padding", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-the-footer-padding/", | |
| "css_code": "#page .footer-bottom { \n\n padding-top: 12px; \n\n padding-bottom: 50px; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-course-directory-page-title-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Course Directory Page Title Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-course-directory-page-title-font-size/", | |
| "css_code": "h4.bb-title {\n font-size: 35px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-discussion-background-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Discussion Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-discussion-background-color/", | |
| "css_code": ".bb-modal-overlay {\n background-color: rgba(0, 0, 0, 0.8);\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-add-top-padding-and-make-cover-image-round-corners-in-groups", | |
| "version": "1.0.0", | |
| "name": "How to Add Top Padding and Make Cover Image Round Corners in Groups", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-top-padding-and-make-cover-image-round-corners-in-groups/", | |
| "css_code": "body.groups div#cover-image-container { \n\n margin-top: 0; \n\n border-top-right-radius: 5px !important; \n\n border-top-left-radius: 5px !important; \n\n}\n\nbody.groups #buddypress #item-header #header-cover-image.has-cover-image { \n\n border-top-right-radius: 5px !important; \n\n border-top-left-radius: 5px !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hiding-page-title", | |
| "version": "1.0.0", | |
| "name": "Hiding Page Title", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-page-title/", | |
| "css_code": ".page .entry-header {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hiding-learndash-course-navigation", | |
| "version": "1.0.0", | |
| "name": "Hiding LearnDash Course Navigation", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-learndash-course-navigation/", | |
| "css_code": ".bb-lms-header .learndash_next_prev_link { \n\n display: none !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "highlight-the-correct-answer-on-learndash-quizzes", | |
| "version": "1.0.0", | |
| "name": "Highlight the Correct Answer on LearnDash Quizzes", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/highlight-the-correct-answer-on-learndash-quizzes/", | |
| "css_code": ".learndash-wrapper .wpProQuiz_content \n\n.wpProQuiz_questionListItem.wpProQuiz_answerCorrectIncomplete { \n\n border: 1px solid green !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hiding-the-header-and-buddypanel-on-a-single-page", | |
| "version": "1.0.0", | |
| "name": "Hiding the Header and BuddyPanel on a Single Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-header-and-buddypanel-in-a-single-page/", | |
| "css_code": ".page-id-6 .site-header { \n\n display: none; \n\n}\n\n.page-id-6 aside.buddypanel { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-text-editor-tab", | |
| "version": "1.0.0", | |
| "name": "Hide the “Text” Editor Tab", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-text-editor-tab/", | |
| "css_code": ".wp-editor-tools .wp-editor-tabs { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-activity-update-form-background-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Activity Update Form Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-activity-update-form-background-color/", | |
| "css_code": ".activity-update-form-overlay { \n\n background-color: #000000; /* Change hex code to your preferred color or use RGBA for transparency */\n\n}\n\nbackground-color: rgba(0,0,0,0.5);\n\nbackground: linear-gradient(to right, #000000, #333333);", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-add-both-padding-and-top-rounded-corners-to-groups-and-forums", | |
| "version": "1.0.0", | |
| "name": "How to Add Both Padding and Top Rounded Corners to Groups and Forums", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-both-padding-and-top-rounded-corners-to-groups-and-forums/", | |
| "css_code": "body.groups div#cover-image-container { \n\n margin-top: 0; \n\n border-top-right-radius: 5px !important; \n\n border-top-left-radius: 5px !important; \n\n} \n\nbody.groups #buddypress #item-header #header-cover-image.has-cover-image { \n\n border-top-right-radius: 5px !important; \n\n border-top-left-radius: 5px !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hiding-lesson-progress-bar-in-course-topic", | |
| "version": "1.0.0", | |
| "name": "Hiding Lesson Progress Bar in Course Topic", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hiding-lesson-progress-bar-in-course-topic/", | |
| "css_code": ".learndash_content_wrap .ld-progress {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-x-button-for-the-site-notices", | |
| "version": "1.0.0", | |
| "name": "How to Change the “X” Button for the Site Notices", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-x-button-for-the-site-notices/", | |
| "css_code": "span.bb-icon-rl.bb-icon-times:before { content: 'e876'; } /* Replace 'e876' with your preferred icon code */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-add-padding-at-the-top-of-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Add Padding at the Top of the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-padding-at-the-top-of-the-profile-page/", | |
| "css_code": "body.bbp-user-page .bb-grid.site-content-grid { \n\n padding-top: 30px; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-texts-sub-forums-and-this-forum-category-has", | |
| "version": "1.0.0", | |
| "name": "Hide the Texts “Sub Forums” and “This Forum Category Has …”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-texts-sub-forums-and-this-forum-category-has/", | |
| "css_code": ".bp-feedback.info,\n\n.bb-sub-forum-title {\n\n display: none;\n\n}\n\n#forum-123 .bp-feedback.info, #forum-123 .bb-sub-forum-title { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hides-search-icon-for-non-logged-in-people", | |
| "version": "1.0.0", | |
| "name": "Hides Search Icon for Non-logged-in People", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hides-search-icon-for-non-logged-in-people/", | |
| "css_code": "body:not(.logged-in) .header-search-link {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hideremove-sign-in-and-sign-up-buttons", | |
| "version": "1.0.0", | |
| "name": "Hide/remove Sign In and Sign Up buttons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-remove-sign-in-and-sign-up-buttons/", | |
| "css_code": ".bb-header-buttons .button.signin-button {\n display: none;\n}\n\n.bb-header-buttons .button.signup {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-widgets-from-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide Widgets From Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-widgets-from-logged-out-users/", | |
| "css_code": "body:not(.logged-in) div#secondary,\n\nbody:not(.logged-in) div#secondary-right {\n\n display: none;\n\n}\n\nbody:not(.logged-in) div.bb-grid {\n\n justify-content: center;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-or-display-activity-in-separate-tabs-based-on-activity-type", | |
| "version": "1.0.0", | |
| "name": "Hide or Display Activity in Separate Tabs Based on Activity Type", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-display-activity-in-separate-tabs-based-on-activity-type/", | |
| "css_code": "#activity-all,\n\n#activity-groups,\n\n#activity-mentions,\n\n#activity-following,\n\n#activity-favorites {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hideremove-activity-form-from-activity-page", | |
| "version": "1.0.0", | |
| "name": "Hide/Remove Activity Form from Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-remove-activity-form-from-activity-page/", | |
| "css_code": "form.activity-form {\n display: none !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-triple-dots-on-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Triple Dots on the Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-triple-dots-on-the-activity-page/", | |
| "css_code": ".bb-activity-more-options-wrap.action { \n\n display: none !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-or-remove-the-members-list-in-a-group", | |
| "version": "1.0.0", | |
| "name": "Hide or Remove the Members List in a Group", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-remove-members-list-in-the-group/", | |
| "css_code": ".groups li#members-groups-li { \n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-page-titles", | |
| "version": "1.0.0", | |
| "name": "Hide Page Titles", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-page-titles/", | |
| "css_code": ".page.buddyboss-theme header.entry-header {\n\n display: none;\n\n}\n\n.page-id-6 .entry-header,\n\n.page-id-13171 .entry-header,\n\n.page-id-7910 .entry-header {\n\n display: none;\n\n}\n\n.page-id-xxxx .entry-header {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-number-of-replies-for-a-groupforum-discussions", | |
| "version": "1.0.0", | |
| "name": "Hide number of replies for a group/forum discussions", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-number-of-replies-for-a-group-forum-discussions/", | |
| "css_code": "span.bs-replies {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-page-titles-in-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide Page Titles in Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-page-titles-in-mobile-view/", | |
| "css_code": "@media (max-width: 768px) {\n\n .page.buddyboss-theme header.entry-header {\n\n display: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-or-remove-the-blog-sidebar", | |
| "version": "1.0.0", | |
| "name": "Hide or Remove the Blog Sidebar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-or-remove-the-blog-sidebar/", | |
| "css_code": ".blog div#secondary {\n\n display: none;\n\n}\n\n.blog div#primary {\n\n max-width: 100% !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-profile-dropdown-and-buddypanel-on-404-error-page", | |
| "version": "1.0.0", | |
| "name": "Hide Profile Dropdown and BuddyPanel on 404 Error Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-profile-dropdown-and-buddypanel-on-404-error-page/", | |
| "css_code": "body.error404 div.header-aside-inner,\n\nbody.error404 div#primary-navbar,\n\nbody.error404 aside.buddypanel {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-search-icon-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide Search Icon for Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-search-icon-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) ul#primary-menu li:nth-child(6),\n\nbody:not(.logged-in) a.header-search-link {\n\n display: none !important;\n\n}\n\n.header-style-4:not(.logged-in) .search-form {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-password-strength-verification-or-notification-in-the-registration-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Password Strength Verification or Notification in the Registration Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-password-strength-verification-or-notification-in-the-registration-page/", | |
| "css_code": "body.registration div#pass-strength-result { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-photos-tab-on-the-profile-page-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Photos Tab on the Profile Page for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-photos-tab-in-profile-page-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) li#media-personal-li.bp-personal-tab { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-profile-search-in-the-members-directory-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Profile Search in the Members Directory for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-profile-search-in-the-members-directory-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) aside#bp-profile-search-form-outer.bp-profile-search-widget.widget { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-search-bar-in-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide the Search Bar in Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-search-bar-in-mobile-view/", | |
| "css_code": "@media (max-width: 768px) {\n\n .dir-search.activity-search.bp-search {\n\n display: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-search-in-forums-directory-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Search in Forums Directory for Logged-Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-search-in-forums-directory-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) div#forums-dir-search.bs-dir-search.bs-forums-search { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-progress-display-on-learndash-courses", | |
| "version": "1.0.0", | |
| "name": "Hide the Progress Display on LearnDash Courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-progress-display-on-learndash-courses/", | |
| "css_code": ".ld-progress-stats { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-pagination-on-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "Hide the Pagination on the Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-pagination-on-the-members-directory/", | |
| "css_code": ".directory.members .pag-count.bottom { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-membership-level-on-the-reactions-pop-up", | |
| "version": "1.0.0", | |
| "name": "Hide Membership Level on the Reactions Pop Up", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-membership-level-on-the-reactions-pop-up/", | |
| "css_code": ".activity-state_user__role {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-option-to-move-split-spam-a-discussionforum-reply", | |
| "version": "1.0.0", | |
| "name": "Hide the option to Move, Split, Spam a Discussion/Forum reply", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-option-to-move-split-spam-a-discussion-forum-reply/", | |
| "css_code": "#bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-reply-move-link, #bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-topic-split-link, #bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-reply-spam-link { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-learndash-progress-bar", | |
| "version": "1.0.0", | |
| "name": "Hide LearnDash Progress Bar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-learndashs-progress-bar/", | |
| "css_code": ".learndash_content_wrap .ld-progress {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-lessons-on-the-course-sidebar", | |
| "version": "1.0.0", | |
| "name": "Hide Lessons on the Course Sidebar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-lessons-on-the-course-sidebar/", | |
| "css_code": ".bb-single-course-sidebar .bb-course-volume-list li:nth-child(2) {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-member-details-on-profile-page", | |
| "version": "1.0.0", | |
| "name": "Hide Member Details on Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-member-details-on-profile-page/", | |
| "css_code": ".group-separator-block:first-child {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-members-tab-in-groups-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Members Tab in Groups for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-members-tab-in-groups-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) #members-groups-li.bp-groups-tab { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-name-and-image-on-the-profile-drop-down-menu", | |
| "version": "1.0.0", | |
| "name": "Hide the Name and Image on the Profile Drop Down Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-name-and-image-on-the-profile-drop-down-menu/", | |
| "css_code": ".header-aside-inner a.user-link img, .header-aside-inner a.user-link span span.user-name { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-author-name-and-published-date-from-the-blog-directory", | |
| "version": "1.0.0", | |
| "name": "Hide the Author Name and Published Date from the Blog Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-name-of-the-authors-and-publised-date-from-the-blog-directory/", | |
| "css_code": ".bb-user-avatar-wrap {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-members-text-members-count-and-member-search", | |
| "version": "1.0.0", | |
| "name": "Hide Members Text, Members Count, and Member Search", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-members-text-members-count-and-member-search/", | |
| "css_code": ".directory.members .subnav-search.members-search,\n\n.directory.members header.entry-header,\n\n.directory.members .members-type-navs {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-move-option-for-a-discussion-or-forum-reply", | |
| "version": "1.0.0", | |
| "name": "Hide the “Move” Option for a Discussion or Forum Reply", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-option-to-move-a-discussion-forum-reply/", | |
| "css_code": "#bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-reply-move-link {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-option-to-split-a-discussionforum-reply", | |
| "version": "1.0.0", | |
| "name": "Hide the option to “Split” a discussion/forum reply", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-option-to-split-a-discussion-forum-reply/", | |
| "css_code": "#bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-topic-split-link { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-option-to-mark-a-discussionforum-reply-as-spam", | |
| "version": "1.0.0", | |
| "name": "Hide the Option to Mark a Discussion/Forum Reply as “Spam”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-option-to-mark-a-discussion-forum-reply-as-spam/", | |
| "css_code": "#bbpress-forums .bs-dropdown .bbp-admin-links a.bbp-reply-spam-link { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-learndash-lesson-breadcrumbs-in-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide LearnDash Lesson Breadcrumbs in Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-learndash-lesson-breadcrumbs-in-mobile-view/", | |
| "css_code": "@media (max-width: 768px) {\n\n .ld-breadcrumbs, a.course-entry-link {\n\n display: none !important;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-groups-tabs", | |
| "version": "1.0.0", | |
| "name": "Hide Groups Tabs", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-groups-tabs/", | |
| "css_code": "#activity-groups-li.bp-groups-tab, #members-groups-li.bp-groups-tab, #photos-groups-li.bp-groups-tab, #albums-groups-li.bp-groups-tab, #documents-groups-li.bp-groups-tab, #nav-forum-groups-li.bp-groups-tab, #invite-groups-li.bp-groups-tab, #group-messages-groups-li.bp-groups-tab, #admin-groups-li.bp-groups-tab, #videos-groups-li.bp-groups-tab { display: none !important; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-full-name-beside-dropdown-in-menu-header", | |
| "version": "1.0.0", | |
| "name": "Hide Full Name Beside Dropdown in Menu Header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-full-name-beside-dropdown-in-menu-header/", | |
| "css_code": ".header-aside .user-name {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-following-on-profile", | |
| "version": "1.0.0", | |
| "name": "Hide Following on Profile", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-following-on-profile/", | |
| "css_code": ".single-headers .following-wrap {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-download-for-photosvideos-on-news-feed-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide Download for Photos/Videos on News Feed for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-download-for-photos-videos-on-news-feed-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .activity-list a.download-media { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-featured-image-in-blog-posts", | |
| "version": "1.0.0", | |
| "name": "Hide Featured Image in Blog Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-featured-photos-in-blog-posts/", | |
| "css_code": ".blog .post .entry-img,\n\n.single-post .post .entry-img {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-first-name-last-name-and-nickname-from-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "Hide First Name, Last Name, and Nickname from the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-first-name-last-name-and-nickname-from-the-profile-page/", | |
| "css_code": ".field_first-name,\n\n.field_nickname,\n\n.field_last-name {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-discussion-super-sticky", | |
| "version": "1.0.0", | |
| "name": "Hide Discussion Super Sticky", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-discussion-super-sticky/", | |
| "css_code": "i.bb-topic-status.bb-super-sticky.super-sticky.unsticky {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-documents-download-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide Documents Download for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-documents-download-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) #media-folder-document-data-table .media-folder_action__list .download_file,\n\nbody:not(.logged-in) #media-folder-document-data-table .media-folder_action__list .copy_download_file_url,\n\nbody:not(.logged-in) #buddypress.bb-media-model-wrapper.document-theatre .activity-list.bp-list .download-document {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-deleted-message-display-on-private-messaging", | |
| "version": "1.0.0", | |
| "name": "Hide Deleted Message Display on Private Messaging", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-deleted-text-message-display-on-private-messaging/", | |
| "css_code": ".bp-single-message-wrap:has(.deleted-message) {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-breadcrumbs", | |
| "version": "1.0.0", | |
| "name": "Hide Breadcrumbs", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-breadcrumbs/", | |
| "css_code": "div#breadcrumbs {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-members-count-in-a-group", | |
| "version": "1.0.0", | |
| "name": "Hide the Members count in a group", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-members-count-in-a-group/", | |
| "css_code": "#members-groups-li .count { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-breadcrumbs-on-the-lesson-page", | |
| "version": "1.0.0", | |
| "name": "Hide Breadcrumbs on the Lesson Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-breadcrumbs-on-the-lesson-page/", | |
| "css_code": ".ld-breadcrumbs,\n\na.course-entry-link {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-breadcrumbs-in-woocommerce", | |
| "version": "1.0.0", | |
| "name": "Hide Breadcrumbs in WooCommerce", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-breadcrumbs-in-woocomerce/", | |
| "css_code": ".woocommerce-breadcrumb {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-members-count-in-the-members-directory", | |
| "version": "1.0.0", | |
| "name": "Hide the Members Count in the Member’s Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-members-count-in-the-members-directory/", | |
| "css_code": ".directory.members .bp-navs ul li .count, .buddypress-wrap .bp-navs li.dynamic a .count { display: none }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-list-filter-of-courses", | |
| "version": "1.0.0", | |
| "name": "Hide the List Filter of Courses", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-list-filter-of-courses/", | |
| "css_code": "#bb-course-list-grid-filters { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-information-about-email-and-the-email-column-in-notification-settings", | |
| "version": "1.0.0", | |
| "name": "Hide the Information About Email and the Email Column in Notification Settings", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-information-about-email-and-the-email-column-in-the-notification-settings/", | |
| "css_code": "div.notification_type.email_notification,\n\ntd.email,\n\nth.email {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-author-and-date-when-searching-on-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "Hide Author and Date When Searching on the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-author-and-date-when-search-on-the-activity-feed/", | |
| "css_code": "body.bp-search div.entry-meta {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-members-count-in-a-group-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Member’s Count in a Group for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-members-count-in-a-group-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) #members-groups-li .count { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-last-activity-in-the-members-directory-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Last Activity in the Member’s Directory for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-last-activity-in-the-members-directory-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .buddypress-wrap .members-list li .list-wrap .last-activity { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-member-filters-in-the-members-directory-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Member Filters in the Member’s Directory for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-member-filters-in-the-members-directory-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) body .buddypress-wrap .subnav-filters .component-filters select, \n\nbody .buddypress-wrap .subnav-filters .last select { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-joined-date-in-members-directory", | |
| "version": "1.0.0", | |
| "name": "Hide the Joined Date in Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-joined-date-in-members-directory/", | |
| "css_code": "p.item-meta.last-activity { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-group-description-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide the Group Description on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-groups-description-on-mobile-view/", | |
| "css_code": "@media (max-width: 767px) {\n\n .groups-header #cover-image-container #item-header-content .group-description p {\n\n display: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-group-type-within-groups-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide the Group Type Within Groups on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-group-type-within-the-groups-on-mobile-view/", | |
| "css_code": "@media (max-width: 767px) {\n\n .item-header-wrap .bp-group-meta .group-type {\n\n display: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-featured-image-on-blog-posts", | |
| "version": "1.0.0", | |
| "name": "Hide the Featured Image on Blog Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-featured-image-on-blog-posts/", | |
| "css_code": ".single-post figure.entry-img { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-categories-section-beneath-the-post", | |
| "version": "1.0.0", | |
| "name": "Hide the Categories Section Beneath the Post", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-categories-section-beneath-the-post/", | |
| "css_code": ".single-post .post-meta-wrapper { display: none; }\n\n.postid-123 .post-meta-wrapper { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-course-status-in-course-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Course Status in Course Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-course-status-in-course-page/", | |
| "css_code": ".learndash-wrapper .ld-course-status.ld-course-status-not-enrolled {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-download-button-for-photos-and-videos-in-news-and-group-feeds-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Download Button for Photos and Videos in News and Group Feeds for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-download-button-for-photos-and-videos-posted-in-the-news-and-group-feed-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .activity-list a.download-media,\n\nbody:not(.logged-in) a.download-video {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-search-feed-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Search Feed for Logged Out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-search-feed-for-logout-users/", | |
| "css_code": "body:not(.logged-in) button.subnav-filters-opener {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-certificates-sub-tab-in-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Certificates Sub Tab in the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-certificates-sub-tab-in-the-profile-page/", | |
| "css_code": "li#certificates-personal-li.bp-personal-sub-tab { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-connection-tab-in-the-profile-page-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Connection Tab in the Profile Page for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-connection-tab-in-the-profile-page-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) li#friends-personal-li.bp-personal-tab { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-share-whats-on-your-mind-box", | |
| "version": "1.0.0", | |
| "name": "Hide the “Share what’s on your mind” Box", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-share-whats-on-your-mind-box/", | |
| "css_code": "div#bp-nouveau-activity-form {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-author-role-in-discussions-replies-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Author Role in Discussions Replies for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-author-role-in-discussions-replies-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .bs-reply-header .bbp-author-role { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-email-field-under-account-settings-login-information", | |
| "version": "1.0.0", | |
| "name": "Hide the Email Field Under Account Settings – Login Information", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-email-field-under-account-settings-login-information/", | |
| "css_code": ".bb-bp-settings-content label[for=\"email\"],\n\n.bb-bp-settings-content input[type=\"email\"] {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-forum-selection-box-when-using-the-bbp-topic-form-shortcode", | |
| "version": "1.0.0", | |
| "name": "Hide the Forum Selection Box When Using the [bbp-topic-form] Shortcode", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-forum-selection-box-when-using-shortcode-bbp-topic-form/", | |
| "css_code": "body.single-forum #new-post .bbp_topic_form_forum_wrapper {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-group-type-and-privacy-in-the-groups-directory-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Group Type and Privacy in the Groups Directory for Logged out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-group-type-and-privacy-in-the-groups-directory-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .buddypress-wrap .groups-list li span.group-type,\n\nbody:not(.logged-in) .buddypress-wrap .item-list.groups-list span.group-visibility {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-forum-and-groups-tabs-on-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Forum and Groups Tabs on the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-forum-and-groups-tabs-on-the-profile-page/", | |
| "css_code": "body.bbp-user-page li#groups-personal-li,\n\nbody.bbp-user-page li#forums-personal-li {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-edit-history-on-forum-discussion-posts", | |
| "version": "1.0.0", | |
| "name": "Hide the Edit History on Forum Discussion Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-edit-history-on-forum-discussion-post/", | |
| "css_code": ".bbp-topic-revision-log { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-avatar-photos-on-discussions-for-logged-out-users", | |
| "version": "1.0.0", | |
| "name": "Hide the Avatar Photos on Discussions for Logged-out Users", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-avatar-photos-on-discussions-for-logged-out-users/", | |
| "css_code": "body:not(.logged-in) .bs-forums-items .item-avatar { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-course-banner-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Hide the Course Banner on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-course-banner-on-mobile-view/", | |
| "css_code": "@media screen and (max-width: 767px) {\n\n .bb-learndash-banner {\n\n display: none;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-search-feed", | |
| "version": "1.0.0", | |
| "name": "Hide the Search Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-search-feed/", | |
| "css_code": "button.subnav-filters-opener {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-buddypanel-on-certain-pages", | |
| "version": "1.0.0", | |
| "name": "Hide the BuddyPanel on Certain Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-buddypanel-on-certain-pages/", | |
| "css_code": ".page-id-4798 .buddypanel { display: none; } \n\n.page-id-4798.bb-buddypanel:not(.register) .site, \n\n.page-id-4798.bb-buddypanel:not(.activate) .site { margin: 0; } \n\n.page-id-4798.bb-buddypanel.sticky-header:not(.bb-sfwd-aside) .site-header { width: 100%; }\n\n.page-id-4798 .buddypanel, .page-id-123 .buddypanel { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-course-content-section-in-learndash", | |
| "version": "1.0.0", | |
| "name": "Hide the Course Content Section in LearnDash", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-course-content-section-in-learndash/", | |
| "css_code": "div.ld-item-list.ld-lesson-list {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-sign-in-button-on-the-register-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Sign In Button on the Register Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-sign-in-button-on-the-register-page/", | |
| "css_code": ".bp_register .entry-header > span {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-create-folder-button-on-the-documents-page", | |
| "version": "1.0.0", | |
| "name": "Hide the Create Folder Button on the Documents Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-create-folder-button-on-the-documents-page/", | |
| "css_code": "#bb-create-folder.bb-create-folder.button.small {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-courses-tab-on-the-manage-group-page", | |
| "version": "1.0.0", | |
| "name": "Hide the ‘Courses’ Tab on the ‘Manage Group’ Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-courses-tab-on-the-manage-group-page/", | |
| "css_code": ".bp-manage-group-container #courses-groups-li {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-reactions-tab-from-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "Hide the “Reactions” Tab from the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-reactions-tab-from-the-activity-feed/", | |
| "css_code": "li#activity-favorites {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-all-members-privacy-option-when-uploading-photos-videos-and-documents", | |
| "version": "1.0.0", | |
| "name": "Hide the All Members Privacy Option When Uploading Photos, Videos, and Documents", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-the-all-members-privacy-option-when-uploading-photos-videos-and-documents/", | |
| "css_code": "#bb-media-privacy option[value=loggedin],\n\n#bb-video-privacy option[value=loggedin],\n\n#bb-document-privacy option[value=loggedin] {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-viewing-all-members-who-are-text-on-profile-type-pages", | |
| "version": "1.0.0", | |
| "name": "Hide “Viewing All Members Who Are” Text on Profile Type Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-viewing-all-members-who-are/", | |
| "css_code": "div.bp-feedback {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-activity-tabs-like-all-activity-and-like", | |
| "version": "1.0.0", | |
| "name": "Hide Activity Tabs like “All Activity” and “Like”", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-activity-tabs-like-all-activity-and-like/", | |
| "css_code": "#activity-all,\n#activity-favorites {\n display: none;\n}\n\n.dir-search.activity-search.bp-search {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-a-profile-tabs", | |
| "version": "1.0.0", | |
| "name": "Hide a Profile tab(s)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-a-profile-tabs/", | |
| "css_code": "#activity-personal-li,\n#media-personal-li,\n#xprofile-personal-li,\n#friends-personal-li,\n#groups-personal-li,\n#forums-personal-li,\n#invites-personal-li,\n#courses-personal-li,\n#document-personal-li {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-author-and-date-in-blog-posts", | |
| "version": "1.0.0", | |
| "name": "Hide Author and Date in Blog Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-author-and-date-in-blog-posts/", | |
| "css_code": ".single-post .entry-meta {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-my-groups-navigation-in-the-groups-directory", | |
| "version": "1.0.0", | |
| "name": "Hide My Groups Navigation in the Groups Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-my-groups-navigation-in-the-groups-directory/", | |
| "css_code": "li#groups-personal {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-all-members-privacy-option-when-uploading-videos", | |
| "version": "1.0.0", | |
| "name": "Hide “All Members” Privacy Option When Uploading Videos", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-all-members-privacy-option-when-uploading-videos/", | |
| "css_code": "#bb-video-privacy option[value=\"loggedin\"] {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-organizer-from-a-group-box", | |
| "version": "1.0.0", | |
| "name": "Hide “Organizer” from a Group Box", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-organizer-from-a-group-box/", | |
| "css_code": "button.group-button.leave-group.button.bp-toggle-action-button {\n\n display: none !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-all-members-privacy-option-when-uploading-documents", | |
| "version": "1.0.0", | |
| "name": "Hide “All Members” Privacy Option When Uploading Documents", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-all-members-privacy-option-when-uploading-documents/", | |
| "css_code": "label.bb-radio-style.bp-activity-privacy__label.bp-activity-privacy__label-loggedin {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-all-members-my-connections-following-navigation-in-members-directory", | |
| "version": "1.0.0", | |
| "name": "Hide “All Members, My Connections, Following” Navigation in Members Directory", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-all-members-my-connections-following-navigation-in-members-directory-page/", | |
| "css_code": "ul.component-navigation.members-nav {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "fit-portrait-image-in-the-activity-feed-post", | |
| "version": "1.0.0", | |
| "name": "Fit Portrait Image in the Activity Feed Post", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/fit-portrait-image-in-the-activity-feed-post/", | |
| "css_code": ".media-activity .bb-open-media-theatre img {\n\n width: 543px !important;\n\n height: 543px !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-export-data-tab-under-the-account-settings-page", | |
| "version": "1.0.0", | |
| "name": "Hide Export Data Tab Under the Account Settings Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/hide-export-data-tab-under-the-account-settings-page/", | |
| "css_code": "li#export-personal-li.bp-personal-sub-tab {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "flip-the-question-mark-for-rtl-in-learndash", | |
| "version": "1.0.0", | |
| "name": "Flip the Question Mark (?) for RTL in LearnDash", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/flip-the-question-mark-for-rtl-in-learndash/", | |
| "css_code": ".learndash-wrapper .ld-item-list-item-quiz .ld-item-name .ld-item-title:before {\n\n transform: scaleX(-1);\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "fix-page-movement-when-checking-my-connections-on-the-send-invites-page", | |
| "version": "1.0.0", | |
| "name": "Fix page movement when checking “My Connections” on the Send Invites page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/fix-page-movement-when-checking-my-connections-on-the-send-invites-page/", | |
| "css_code": "#bp-invites-dropdown-options-loader {\n line-height: 1rem;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "header-issue-on-learndash-lesson", | |
| "version": "1.0.0", | |
| "name": "Header Issue on LearnDash Lesson", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/header-issue-on-learndash-lesson/", | |
| "css_code": "body.ld-in-focus-mode.admin-bar {\n padding-top: 0;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "forum-discussion-reply-button-always-visible", | |
| "version": "1.0.0", | |
| "name": "Forum Discussion Reply Button Always Visible", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/forum-discussion-reply-button-always-visible/", | |
| "css_code": "#bbpress-forums#bbpress-forums .bs-forums-items.list-view .bs-dropdown-wrap .bs-dropdown-wrap-inner {\n\n opacity: 1;\n\n visibility: visible;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "get-gamipress-points-and-ranks-on-the-same-line", | |
| "version": "1.0.0", | |
| "name": "Get GamiPress Points and Ranks on the same line", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/get-gamipress-points-and-ranks-on-the-same-line/", | |
| "css_code": "#buddypress .users-header .gamipress-buddypress-achievements,\n#buddypress .users-header .gamipress-buddypress-ranks {\n position: absolute;\n margin-left: 130px;\n margin-top: -40px !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-more-sub-forums-in-forum-directory-grid", | |
| "version": "1.0.0", | |
| "name": "Display More Sub-Forums in Forum Directory Grid", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-more-sub-forums-in-forum-directory-grid/", | |
| "css_code": ".forums-meta span:nth-child(n+3) {\n\n display: inline-block;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-the-submenu-in-the-header-horizontally", | |
| "version": "1.0.0", | |
| "name": "Display the Submenu in the Header Horizontally", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-the-submenu-in-the-header-horizontally/", | |
| "css_code": ".bb-template-v2 .site-header #primary-navbar .menu-item>.ab-submenu .bb-sub-menu .menu-item {\n\n display: inline-flex;\n\n}\n\n.site-header #primary-navbar .primary-menu .menu-item>.ab-submenu .bb-sub-menu {\n\n max-width: none;\n\n}\n\n.site-header #primary-navbar .primary-menu .menu-item>.ab-submenu {\n\n left: -180px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-the-profile-dropdown-menu-by-hovering", | |
| "version": "1.0.0", | |
| "name": "Display the Profile Dropdown Menu by Hovering", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-the-profile-dropdown-menu-by-hovering/", | |
| "css_code": ".user-wrap.user-wrap-container:hover > .sub-menu {\n\n opacity: 1;\n\n visibility: visible;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-the-learndash-course-table", | |
| "version": "1.0.0", | |
| "name": "Hide the LearnDash Course Table", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/edit-the-learndash-course-table/", | |
| "css_code": ".bb-course-preview-content .bb-course-volume {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "expand-the-submenu-on-the-title-bar-under-the-ellipsis", | |
| "version": "1.0.0", | |
| "name": "Expand the Submenu on the Title Bar under the Ellipsis", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/expand-the-submenu-on-the-title-bar-under-the-ellipsis/", | |
| "css_code": ".site-header .sub-menu {\n\n min-width: 300px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-the-gamipress-icons-horizontally-on-the-users-profile-page", | |
| "version": "1.0.0", | |
| "name": "Display the Gamipress Icons Horizontally on the User’s Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-the-gamipress-icons-horizontally-on-the-users-profile-page/", | |
| "css_code": ".gamipress-buddypress-user-details {\n\n display: flex;\n\n flex-wrap: wrap;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-text-on-the-icons-of-the-create-a-post-option", | |
| "version": "1.0.0", | |
| "name": "Display Text on the Icons of the Create a Post Option", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-text-on-the-icons-of-the-create-a-post-option/", | |
| "css_code": ".post-elements-buttons-item a i:after {\n\n font-family: \"Roboto\";\n\n font-size: 13px;\n\n font-weight: bold;\n\n vertical-align: middle;\n\n}\n\n.media-support > a i:after { content: \"Photo\"; }\n\n.video-support > a i:after { content: \"Video\"; }\n\n.document-support > a i:after { content: \"Document\"; }\n\n.post-gif i:after { content: \"GIF\"; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "enlarge-the-video-on-learndash-course", | |
| "version": "1.0.0", | |
| "name": "Enlarge the Video on LearnDash Course", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/enlarge-the-video-on-learndash-conte/", | |
| "css_code": "@media (min-width: 1024px) {\n\n body .learndash-wrapper .learndash_content_wrap {\n\n max-width: 98%;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "design-change-profile-header-active-status", | |
| "version": "1.0.0", | |
| "name": "Design Change – Profile Header Active Status", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/design-change-profile-header-active-status/", | |
| "css_code": "body.bbp-user-page span.member-status.online {\n\n width: 185px;\n\n height: 185px;\n\n z-index: 1;\n\n right: -7px;\n\n top: -7px;\n\n}\n\nbody.bbp-user-page #buddypress #item-header-cover-image #item-header-avatar img.avatar {\n\n z-index: 999;\n\n position: inherit;\n\n border: 0 !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-lookbook-notification", | |
| "version": "1.0.0", | |
| "name": "Disable LookBook Notification", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-lookbook-notification/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "// Disable LookBook notifications\n\nfunction disable_lookbook_notifications() { \n\n remove_action( 'bp_activity_add_notification', 'bp_buddyboss_profile_add_notification' ); \n\n} \n\nadd_action( 'bp_init', 'disable_lookbook_notifications' );" | |
| }, | |
| { | |
| "remote_id": "disable-header-display-except-on-homepage", | |
| "version": "1.0.0", | |
| "name": "Disable Header Display Except on Homepage", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-header-display-except-on-homepage/", | |
| "css_code": "body:not(.home) .site-header { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-the-buddypanel-in-the-desktop-version-only", | |
| "version": "1.0.0", | |
| "name": "Disable the BuddyPanel in the Desktop Version Only", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-the-buddypanel-in-the-desktop-version-only/", | |
| "css_code": "@media (min-width: 800px) { \n\n .buddypanel { \n\n display: none; \n\n } \n\n .bb-buddypanel .site { \n\n margin-left: 0px; \n\n } \n\n .site-header { \n\n width: 100% !important; \n\n } \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-admin-notification-after-registration", | |
| "version": "1.0.0", | |
| "name": "Disable Admin Notification after Registration", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-admin-notification-after-registration/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "remove_action( 'register_new_user', 'wp_send_new_user_notifications' );\n\nremove_action( 'edit_user_created_user', 'wp_send_new_user_notifications', 10 );\n\nadd_action( 'register_new_user', 'bb_wp_send_new_user_notifications', 10, 2 );\n\nadd_action( 'edit_user_created_user', 'bb_wp_send_new_user_notifications', 10, 2 );\n\nfunction bb_wp_send_new_user_notifications( $user_id, $notify = 'user' ) {\n\n switch($notify) {\n\n case 'admin':\n\n $notify = 'none';\n\n break;\n\n case 'both':\n\n $notify = 'user';\n\n break;\n\n }\n\n wp_new_user_notification($user_id, null, $notify);\n\n}" | |
| }, | |
| { | |
| "remote_id": "display-forums-in-list-view", | |
| "version": "1.0.0", | |
| "name": "Display Forums In List View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-forums-in-list-view/", | |
| "css_code": "div#bbpress-forums .grid-view {\n\n display: block;\n\n}\n\ndiv#bbpress-forums .grid-view li {\n\n max-width: 100% !important;\n\n}\n\ndiv#bbpress-forums .grid-view li .bb-cover-wrap {\n\n padding-top: 15% !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-buddypanel-display-except-homepage", | |
| "version": "1.0.0", | |
| "name": "Disable BuddyPanel Display Except Homepage", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-buddypanel-display-except-homepage/", | |
| "css_code": ".buddypanel { \n\n display: none !important; \n\n}\n\n.home-page .buddypanel { \n\n display: block !important; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-default-footer-menu-icons", | |
| "version": "1.0.0", | |
| "name": "Disable Default Footer Menu Icons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-default-footer-menu-icons/", | |
| "css_code": "ul#menu-footer-menu i.bb-icon-file {\ndisplay: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "disable-the-strength-meter-in-the-sign-up-and-registration-page", | |
| "version": "1.0.0", | |
| "name": "Disable the Strength Meter in the Sign Up and Registration Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/disable-the-strength-meter-in-the-sign-up-and-registration-page/", | |
| "css_code": "#pass-strength-result.show { \n\n display: none; \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-2-products-per-row-with-elementor", | |
| "version": "1.0.0", | |
| "name": "Display 2 Products Per Row with Elementor", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-2-products-per-row-with-elementor/", | |
| "css_code": "@media (max-width: 767px) {\n .woocommerce-shop .elementor-widget-container {\n max-width: unset;\n width: unset;\n }\n}\n\n@media (max-width: 480px) {\n .woocommerce-shop #content .elementor-element.elementor-products-grid ul.products.products {\n grid-template-columns: repeat(2, 1fr) !important;\n }\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-a-sidebar-on-the-shop-page-but-not-on-the-single-product-page", | |
| "version": "1.0.0", | |
| "name": "Display a sidebar on the Shop page but not on the single product page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-a-sidebar-on-the-shop-page-but-not-on-the-single-product-page/", | |
| "css_code": ".single-product div#secondary {\n display: none;\n}\n\n.single-product div#primary {\n max-width: 100% !important;\n}\n\n.product_meta .pr-atts-row {\n display: block !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-activity-feed-widgets-above-activity-posts-in-mobile", | |
| "version": "1.0.0", | |
| "name": "Display Activity Feed Widgets Above Activity Posts in Mobile", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-activity-feed-widgets-above-activity-posts-in-mobile/", | |
| "css_code": "@media only screen and (max-width: 767px) { \n\n body.activity #primary { \n\n order: 2; \n\n } \n\n body.activity #secondary { \n\n order: 1; \n\n } \n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "customer-wish-to-change-message-and-bell-icon-on-the-header", | |
| "version": "1.0.0", | |
| "name": "Customer wish to change Message and Bell icon on the header", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/customer-wish-to-change-message-and-bell-icon-on-the-header/", | |
| "css_code": "bb-icon-inbox:before {\ncontent: 'ee62';\n}\n\n.bb-icon-bell:before {\ncontent: 'edc7';\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "display-full-featured-images-on-blog-archive-page", | |
| "version": "1.0.0", | |
| "name": "Display Full Featured Images on Blog Archive Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/display-full-featured-images-on-blog-archive-page/", | |
| "css_code": ".post-grid article .entry-img {\n\n display: contents;\n\n}\n\n.post-grid article .entry-img > img {\n\n position: inherit;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "css-code-to-remove-the-discussion-box-in-forums-page", | |
| "version": "1.0.0", | |
| "name": "CSS Code to Remove the Discussion Box in Forums Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/css-code-to-remove-the-discussion-box-in-forums-page/", | |
| "css_code": "#bbpress-forums > div:nth-child(4) {\n\n display: none;\n\n}\n\nul#bbp-forum-0.bbp-topics1.bs-item-list.bs-forums-items.list-view {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-notification-side-edge-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Notification Side Edge Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-notification-side-edge-color/", | |
| "css_code": ".bb-onscreen-notification-enable \n\n.bb-onscreen-notification \n\n.notification-list \n\n.read-item.recent-item:before {\n\n background: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "changing-the-font-size-of-the-group-name-mobile-view", | |
| "version": "1.0.0", | |
| "name": "Changing the Font Size of the Group Name Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-the-font-size-of-the-group-name-mobile-view/", | |
| "css_code": "@media only screen and (max-width: 767px) {\n\n h2.bb-bp-group-title {\n\n font-size: 50px !important; /* Adjust the size as needed */\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "changing-the-image-on-the-on-screen-notification", | |
| "version": "1.0.0", | |
| "name": "Changing the Image on the On-Screen Notification", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-the-image-on-the-on-screen-notification/", | |
| "css_code": "/* Adding a background image */\n\n.bb-onscreen-notification-enable .bb-onscreen-notification .notification-list .read-item,\n\n.bb-onscreen-notification-enable .bb-onscreen-notification .notification-list .read-item:hover {\n\n background-image: url('https://picsum.photos/200.jpg');\n\n}\n\n/* Changing the color according to the background */\n\n.notification-content a,\n\n.notification-list.bb-nouveau-list .actions a {\n\n color: white;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "hide-specific-activity-tabs", | |
| "version": "1.0.0", | |
| "name": "Hide Specific Activity Tabs", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/customer-activated-the-activity-tabs-but-wanted-to-keep-only-the-all-updates-connections-and-groups-and-hide-the-rest/", | |
| "css_code": "div.actvity-head-bar li#activity-mentions,\n\nli#activity-following,\n\nli#activity-favorites {\n\n display: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "changing-the-color-of-search-text-and-the-text-while-searching", | |
| "version": "1.0.0", | |
| "name": "Changing the Color of “Search” Text and the Text while Searching", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-the-color-of-search-text-and-the-text-while-searching/", | |
| "css_code": ".search-field-top::placeholder { color: red; /* Placeholder text color */ } .search-field-top { color: red; /* Default text color */ } .search-field-top:focus { color: #f00; /* Color while typing */ }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-thumbnail-in-blog-masonry", | |
| "version": "1.0.0", | |
| "name": "How to Change the Thumbnail in Blog Masonry", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-thumbnail-in-blog-masonry/", | |
| "css_code": ".post-grid.bb-masonry .has-post-thumbnail.first .entry-img img {\n\n min-height: auto !important;\n\n width: 100% !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-username-font-size-in-the-header-bar", | |
| "version": "1.0.0", | |
| "name": "How to Change the Username Font Size in the Header Bar", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-username-font-size-in-header-bar/", | |
| "css_code": ".bb-template-v2 .site-header .user-wrap.menu-item-has-children .user-link .user-name {\n\n font-size: 24px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-learndash-quiz-icon", | |
| "version": "1.0.0", | |
| "name": "How to Change the LearnDash Quiz Icon", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-learndash-quiz-icon/", | |
| "css_code": ".learndash-wrapper .ld-item-list-item-quiz .ld-item-name .ld-item-title:before,\n\n.bb-icon-question:before {\n\n content: 'ef01';\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-colors-of-the-profile-completion-widget", | |
| "version": "1.0.0", | |
| "name": "How to Change the Colors of the Profile Completion Widget", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/changing-colors-of-the-profile-completion-widget/", | |
| "css_code": ".pc_progress_wrap .pc_progress_rate {\n\n stroke: red !important;\n\n}\n\n.widget.widget_bp_profile_completion_widget \n\n.pc_detailed_progress \n\n.single_section_wrap.completed \n\n.section_ico {\n\n border-color: red;\n\n background: red;\n\n}\n\n.widget.widget_bp_profile_completion_widget \n\n.pc_detailed_progress \n\n.single_section_wrap.completed \n\n.progress * {\n\n color: red;\n\n}\n\n.pc_detailed_progress_wrap \n\n.single_section_wrap.completed + \n\n.single_section_wrap.completed \n\n.section_ico:before {\n\n background-color: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-username-hover-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Username Hover Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-username-hover-color/", | |
| "css_code": "/* Change hover color */\n\n.bb-template-v2 .site-header .user-wrap.menu-item-has-children .user-link .user-name:hover {\n\n color: red;\n\n}\n\n/* Change default text color */\n\n.bb-template-v2 .site-header .user-wrap.menu-item-has-children .user-link .user-name {\n\n color: blue;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-username-and-date-in-the-activity-feed-to-a-different-font-size", | |
| "version": "1.0.0", | |
| "name": "Change the Username and Date in the Activity Feed to a Different Font size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-username-and-date-in-the-activity-feed-to-a-different-font-size/", | |
| "css_code": ".activity .activity-header p a { font-size: 16px; }\n\n.activity .activity-header .activity-date a { font-size: 12px; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-text-color-in-blockquotes", | |
| "version": "1.0.0", | |
| "name": "How to Change the Text Color in Blockquotes", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-text-color-in-the-blockquote/", | |
| "css_code": "blockquote,\nq {\n color: #f03030 !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-text-color-of-an-active-emoji", | |
| "version": "1.0.0", | |
| "name": "How to Change the Text Color of an Active Emoji", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-text-color-of-an-active-emoji/", | |
| "css_code": "span.like-count.reactions_item {\n\n color: #0029ff !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-title-background-and-text-on-the-blog-list", | |
| "version": "1.0.0", | |
| "name": "How to Change the Title, Background, and Text on the Blog List", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-title-background-and-text-on-the-blog-list/", | |
| "css_code": ".entry-header .entry-title a {\n\n color: #333;\n\n}\n\n.archive .entry-content-wrap .entry-content {\n\n color: #000;\n\n}\n\n.post-grid.bb-standard .post-inner-wrap {\n\n background: #f2f2f2;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-text-color-in-the-share-whats-on-your-mind-box", | |
| "version": "1.0.0", | |
| "name": "How to Change the Text Color in the “Share What’s on Your Mind” Box", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-text-color-in-the-share-whats-on-your-mind-box/", | |
| "css_code": "#whats-new-textarea [contenteditable=true]:empty:before,\n\n#whats-new-textarea-placeholder [contenteditable=true]:empty:before {\n\n color: #fff !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-text-and-hover-color-for-the-create-account-forgot-password-and-terms-of-service-links", | |
| "version": "1.0.0", | |
| "name": "How to Change the Text and Hover Color for the “Create Account,” “Forgot Password,” and “Terms of Service” Links", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-text-and-hover-color-for-the-create-account-forgot-password-and-terms-of-service-links/", | |
| "css_code": "/* Forgot password link */\n\n.login a.privacy-policy-link,\n\n.login form .lostmenot a,\n\nform#lostpasswordform a.bs-sign-in {\n\n color: red;\n\n}\n\n/* Forgot password link on hover */\n\n.login a.privacy-policy-link:hover,\n\n.login form .lostmenot a:focus,\n\n.login form .lostmenot a:hover,\n\nform#lostpasswordform a.bs-sign-in:hover {\n\n color: black;\n\n}\n\n/* Create account (sign-up) link */\n\nbody.login .login-heading a {\n\n color: red;\n\n}\n\n/* Create account link on hover */\n\nbody.login .login-heading a:focus,\n\nbody.login .login-heading a:hover {\n\n color: black;\n\n}\n\n/* Terms of Service link */\n\nbody.login .privacy-policy-page-link a {\n\n color: red;\n\n}\n\n/* Terms of Service link on hover */\n\nbody.login .privacy-policy-page-link a:hover {\n\n color: black;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-sign-up-page-width", | |
| "version": "1.0.0", | |
| "name": "How to Change the Sign-Up Page Width", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-sign-up-page-width/", | |
| "css_code": "body.register .buddypress-wrap {\n\n max-width: 990px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-linkedin-icon", | |
| "version": "1.0.0", | |
| "name": "Change the LinkedIn Icon", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-linkedin-icon/", | |
| "css_code": ".bb-icon-brand-linkedin:before { content: 'edee'!important;", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-member-role-label-on-the-forum-replies-to-profile-field-data", | |
| "version": "1.0.0", | |
| "name": "Change the Member Role Label on the Forum Replies to Profile Field Data", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/431299/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bbp_get_reply_author_role', 'bb_replace_role_to_profile_field', 10, 2 ); function bb_replace_role_to_profile_field( $author_role, $args ) { $reply_id = bbp_get_reply_id( $args['reply_id'] ); $user_id = bbp_get_reply_author_id( $reply_id ); $profile_field = bp_get_profile_field_data( array( 'field' => 21, 'user_id' => $user_id ) ); if( $profile_field ) { $profile_field = sprintf( '%1$s<div class=\"%2$s\">%3$s</div>%4$s', $args['before'], esc_attr( $args['class'] ), esc_html( $profile_field ), $args['after'] ); return $profile_field; } return $author_role; }" | |
| }, | |
| { | |
| "remote_id": "change-the-members-avatar-from-circle-to-square", | |
| "version": "1.0.0", | |
| "name": "Change the Member’s Avatar from Circle to Square", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-members-avatar-from-circle-to-square/", | |
| "css_code": "#members-list.item-list .item-avatar img { border-radius: 0 !important; /* Set border-radius to 0 to make the image square */ }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-message-icon", | |
| "version": "1.0.0", | |
| "name": "Change the Message icon", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-message-icon/", | |
| "css_code": ".messages-wrap i.bb-icon-inbox:before { content: 'ee62'; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-mouse-hover-shadow-effect-on-the-shop-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Mouse Hover Shadow Effect on the Shop Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-mouse-hover-shadow-effect-on-the-shop-page/", | |
| "css_code": ".woocommerce li.product:hover {\n\n box-shadow: none;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-profile-dropdown-username-text-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Profile Dropdown Username Text Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-profile-dropdown-username-text-color/", | |
| "css_code": ".bb-template-v2 .site-header .user-wrap.menu-item-has-children .user-link .user-name {\n\n color: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-registration-page-privacy-policy-modal-background-color", | |
| "version": "1.0.0", | |
| "name": "Change the Registration Page Privacy Policy Modal Background color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-registration-page-privacy-policy-modal-background-color/", | |
| "css_code": "div#privacy-modal { background-color: #000000; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-registration-page-terms-of-service-modal-background-color", | |
| "version": "1.0.0", | |
| "name": "Change the Registration Page Terms of Service Modal Background color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-registration-page-terms-of-service-modal-background-color/", | |
| "css_code": "div#terms-modal { background-color: #000000; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-shape-of-the-login-button-to-a-rectangle", | |
| "version": "1.0.0", | |
| "name": "Change the shape of the Login button to a rectangle", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-shape-of-the-login-button-to-a-rectangle/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_action('admin_head', 'my_custom_login_btn_rad'); function my_custom_login_btn_rad() { echo '<style> #loginform input#wp-submit { border-radius: 0!important; } </style>'; }" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-color-of-the-display-name-on-the-profile-page", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Color of the Display Name on the Profile Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-color-of-the-display-name-on-the-profile-page/", | |
| "css_code": "h2.user-nicename {\n\n color: #ff0000 !important;\n\n /* Replace #ff0000 with your desired color code */\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-default-tab-on-the-group-to-forums", | |
| "version": "1.0.0", | |
| "name": "Change the Default tab on the Group to Forums", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-default-tab-on-the-group-to-forums/", | |
| "css_code": "", | |
| "js_code": "", | |
| "php_code": "add_filter( 'bp_groups_default_extension','bb_custom_group_forum_default_tab'); function bb_custom_group_forum_default_tab( $default_tab ){ $group = groups_get_current_group();//get the current group if( empty( $group ) ) { return $default_tab; } // Make sure it has a forum attached to it. if ( bbp_get_group_forum_ids( $group->id ) ) { return 'forum'; } return $default_tab; }" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-color-of-the-profile-dropdown-menu", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Color of the Profile Dropdown Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-color-of-the-profile-dropdown-menu/", | |
| "css_code": ".user-wrap.menu-item-has-children .sub-menu a {\n\n color: #colorcode;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-profile-name-color-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Profile Name Color on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-profile-name-color-on-mobile-view/", | |
| "css_code": "@media (max-width: 767px) {\n\n h2.user-nicename {\n\n color: red !important;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-the-profile-dropdown-menu", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of the Profile Dropdown Menu", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-the-profile-dropdown-menu/", | |
| "css_code": ".header-aside .wrapper {\n\n background-color: #color;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-font-size-of-the-name-on-the-profile-page-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Font Size of the Name on the Profile Page (Mobile View)", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-the-name-on-the-profile-page-mobile-view/", | |
| "css_code": "@media (max-width: 767px) {\n\n h2.user-nicename {\n\n font-size: 50px !important;\n\n /* Adjust the font size as needed */\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-font-used-style-size-color-in-the-forum-but-also-on-the-walls", | |
| "version": "1.0.0", | |
| "name": "Change the Font Used (Style, Size, Color) in the Forum but also on the Walls", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-font-used-style-size-color-in-the-forum-but-also-on-the-walls/", | |
| "css_code": "#bbpress-forums .bbp-topic-title .bbp-topic-started-in { font-size: 14px!important; } #bbpress-forums .bbp-topic-freshness .bbp-topic-meta span { font-size: 14px !important; } #bbpress-forums .bbp-replies p { font-size: 14px; } #bbpress-forums .bbp-topic-content strong { font-size: 14px; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-footer-menu-font-to-uppercase-case", | |
| "version": "1.0.0", | |
| "name": "How to Change the Footer Menu Font to UpperCase Case", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-footer-menu-font-to-uppercase-case/", | |
| "css_code": ".bb-footer .footer-menu a {\n\n text-transform: uppercase;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-hover-color-of-header-icons", | |
| "version": "1.0.0", | |
| "name": "How to Change the Hover Color of Header Icons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-hover-color-of-header-icons/", | |
| "css_code": ".primary-menu a:hover i {\n\n color: purple !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-headers-submenu-color", | |
| "version": "1.0.0", | |
| "name": "Change the Header’s Submenu Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-headers-submenu-color/", | |
| "css_code": ".site-header #primary-navbar .primary-menu .menu-item>.ab-submenu { background: transparent;}.site-header #primary-navbar .primary-menu .menu-item>.ab-submenu .bb-sub-menu .menu-item:hover>a { color: #000000 !important;} /*add codes here*/", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-hover-color-of-the-log-in-button", | |
| "version": "1.0.0", | |
| "name": "Change the Hover Color of the “Log In” button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-hover-color-of-the-log-in-button/", | |
| "css_code": ".mepr-form .submit .button-primary:hover {", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-icon-of-the-messaging-feature", | |
| "version": "1.0.0", | |
| "name": "Change the icon of the Messaging feature", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-icon-of-the-messaging-feature/", | |
| "css_code": ".messages-wrap i.bb-icon-inbox-small:before { content: 'e979'; }", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-buddyboss-view-my-profile-button", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the BuddyBoss “View My Profile” Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-view-my-profile-button/", | |
| "css_code": "#buddypress a.button.outline,\n\n#buddypress a.button.outline:hover {\n\n background-color: #469482;\n\n color: #fff;\n\n border-color: #469482;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-header-menu-background-color-on-mobile-devices", | |
| "version": "1.0.0", | |
| "name": "How to Change the Header Menu Background Color on Mobile Devices", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-buddyboss-header-menu-background-color-on-mobile-devices/", | |
| "css_code": "@media only screen and (max-width: 640px) {\n\n .site-header {\n\n background-color: green;\n\n }\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-icons-in-the-buddypanel", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of Icons in the BuddyPanel", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-icons-in-the-buddypanel/", | |
| "css_code": ".bb-template-v2 .buddypanel-menu > li > .bb-menu-item > i:not(.bb-icon-angle-down) {\n\n color: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-header-message-and-bell-icons", | |
| "version": "1.0.0", | |
| "name": "Change Header Message and Bell Icons", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-bell-icon-to-check-for-subscribed-group/", | |
| "css_code": ".bb-icon-inbox:before {\n\n content: 'ee62';\n\n}\n\n.bb-icon-bell:before {\n\n content: 'edc7';\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-the-background-color-of-the-activity-feed-replies", | |
| "version": "1.0.0", | |
| "name": "Change the Background Color of the Activity Feed Replies", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-the-background-color-of-the-activity-feed-replies/", | |
| "css_code": ".bb-media-model-wrapper .activity-comments .acomment_inner .acomment-content_block, .buddypress-wrap .activity-comments .acomment_inner .acomment-content_block {", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-for-all-blog-posts", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color for All Blog Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-for-all-blog-posts/", | |
| "css_code": "body.blog,\n\nbody.single-post {\n\n background: #ddd;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-and-text-color-of-the-signup-hover-button", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background and Text Color of the Signup Hover Button", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-and-text-color-of-the-signup-hover-button/", | |
| "css_code": "/* Hover state */\n\n.site-header .button.signup:hover {\n\n background: red;\n\n border: red;\n\n color: white;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-site-title-color-on-mobile-view", | |
| "version": "1.0.0", | |
| "name": "How to Change the Site Title Color on Mobile View", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-site-title-color-on-mobile-view/", | |
| "css_code": ".site-title a {\n\n color: #FF00FF;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-ribbon-color-when-a-user-is-not-enrolled", | |
| "version": "1.0.0", | |
| "name": "Change ribbon color when a user is not enrolled", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-ribbon-color-when-a-user-is-not-enrolled/", | |
| "css_code": ".ld-status.ld-status-incomplete.ld-third-background {\nbackground-color: #eeee22;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-privacy-policy-terms-of-service-modal-background-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the Privacy Policy & Terms of Service Modal Background Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-privacy-policy-terms-of-service-modal-background-color/", | |
| "css_code": "div#terms-modal {\n\n background-color: #000000;\n\n}\n\ndiv#privacy-modal {\n\n background-color: #000000;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-font-color-in-activation-page", | |
| "version": "1.0.0", | |
| "name": "Change Font Color in Activation Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-font-color-in-activation-page/", | |
| "css_code": "body.activation h1,\nbody.activation p {\ncolor: #FFFFFF !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-font-color-on-registration-and-activation-pages", | |
| "version": "1.0.0", | |
| "name": "Change Font Color on Registration and Activation Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-font-color-on-registration-and-activation-pages/", | |
| "css_code": "body.activation h1,\nbody.activation p {\ncolor: #FFFFFF !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-username-and-date-font-size-in-the-activity-feed", | |
| "version": "1.0.0", | |
| "name": "How to Change the Username and Date Font Size in the Activity Feed", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-font-size-of-username-on-the-activity-page/", | |
| "css_code": ".activity .activity-header p a {\n\n font-size: 16px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-gamipress-points-and-achievements-thumbnail-size", | |
| "version": "1.0.0", | |
| "name": "How to Change GamiPress Points and Achievements Thumbnail Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-gamipress-points-and-achievements-thumbnail-size/", | |
| "css_code": "#buddypress .users-header .gamipress-buddypress-points span.activity,\n\n#buddypress .users-header .gamipress-buddypress-achievement-thumbnail {\n\n width: 64px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-gamipress-points-thumbnail-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the GamiPress Points Thumbnail Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/https-www-buddyboss-com-docs-change-gamipress-points-thumbnail-size/", | |
| "css_code": "#buddypress .users-header .gamipress-buddypress-points span.activity {\n\n width: 64px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-hover-and-active-links-color-of-profile-menus", | |
| "version": "1.0.0", | |
| "name": "How to Change Hover and Active Links Color of Profile Menus", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-hover-and-active-links-color-of-profile-menus/", | |
| "css_code": ".bp-user .bp-navs ul li.selected a,\n\n.bp-user nav#object-nav .selected > a {\n\n border-bottom-color: green;\n\n color: green;\n\n}\n\n/* Hover link styling */\n\n.bp-user .bp-navs ul li a:hover,\n\n.bp-user nav#object-nav a:hover,\n\n.bp-user .buddypress-wrap .bp-navs li:not(.current) a:hover,\n\n.bp-user .buddypress-wrap .bp-navs li:not(.selected) a:hover {\n\n color: green;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "change-learndash-badge-colors", | |
| "version": "1.0.0", | |
| "name": "Change LearnDash Badge Colors", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/change-learndash-badge-colors/", | |
| "css_code": ".bb-cover-list-item .ld-status {\nbackground-color: var(--bb-primary-color) !important;\n}\n\n.bb-cover-list-item .ld-status {\nbackground-color: red !important;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-the-header-search-field", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of the Header Search Field", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-the-header-search-field/", | |
| "css_code": "input.search-field-top.ui-autocomplete-input {\n\n background: red;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-background-color-of-the-mobile-menu-display", | |
| "version": "1.0.0", | |
| "name": "How to Change the Background Color of the Mobile Menu Display", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-background-color-of-the-mobile-menu-display/", | |
| "css_code": ".bb-mobile-panel-wrapper .bb-mobile-panel-inner {\n\n background: #AFAFAF;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-blog-category-page-title-font-size", | |
| "version": "1.0.0", | |
| "name": "How to Change the Blog Category Page Title Font Size", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-blog-category-page-title-font-size/", | |
| "css_code": "body.archive header.page-header h1 {\n\n font-size: 28px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-buddyboss-header-height", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the BuddyBoss Header Height", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/adjust-the-header-height/", | |
| "css_code": ".site-header,\n\n.site-branding,\n\n.header-aside > *,\n\n.user-link,\n\n.header-aside .notification-wrap,\n\n.header-aside .notification-link,\n\n.default-header .main-navigation,\n\n.site-header .site-header-container.flex {\n\n height: 100px !important;\n\n}\n\n.primary-menu > li {\n\n line-height: 100px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "add-mobile-only-menu-items", | |
| "version": "1.0.0", | |
| "name": "Add Mobile-Only Menu Items", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/add-mobile-only-menu-items/", | |
| "css_code": "/* Start Mobile Menu Items css */\n.primary-menu .mobile-only {\n display: none;\n}\n#primary-navbar .sub-menu .mobile-only {\n display: none;\n}\n@media screen and (max-width: 799px) {\n .primary-menu .mobile-only {\n display: block;\n }\n #primary-navbar .sub-menu .mobile-only {\n display: block;\n }\n .mobile-only i {\n color: #939597;\n }\n}\n/* End Mobile Menu Items css */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-add-a-rounded-rectangular-button-around-the-sign-in-link-on-registration", | |
| "version": "1.0.0", | |
| "name": "How to Add a Rounded Rectangular Button Around the “Sign In” Link on Registration", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-add-a-rounded-rectangular-button-around-the-sign-in-link-on-registration/", | |
| "css_code": "registration .entry-header a {\n \nbackground-color: var(--bb-login-register-button-background-color-hover);\n \ncolor: #FFFFFF !important;\n \npadding: 8px 15px;\n \n border-radius: 15px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-color-of-the-members-card-connect-button-on-buddyboss", | |
| "version": "1.0.0", | |
| "name": "How to Change the Color of the Members’ Card Connect Button on BuddyBoss", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-color-of-the-members-card-connect-button-on-buddyboss/", | |
| "css_code": ".bb-icon-connected,\n\n#buddypress .button-wrap.member-button-wrap .generic-button .friendship-button.not_friends i:before {\n\n color: #009300;\n\n}\n\n.bb-icon-connection-request,\n\n#buddypress .button-wrap.member-button-wrap .generic-button .friendship-button.is_friend i:before {\n\n color: #009dff;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-margins-between-the-buddyboss-activity-feed-and-sidebars", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the Margins Between the BuddyBoss Activity Feed and Sidebars", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-the-margins-between-the-buddyboss-activity-feed-and-sidebars/", | |
| "css_code": ".directory.activity #primary {\n\n padding-left: 30px;\n\n padding-right: 30px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-the-position-of-the-search-bar-on-the-activity-page", | |
| "version": "1.0.0", | |
| "name": "How to Adjust the Position of the Search Bar on the Activity Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-the-position-of-the-search-bar-on-the-activity-page/", | |
| "css_code": ".activity-head-bar .bb-subnav-filters-search button {\n\n margin: -8px 1px 0px 11px !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-buddypanel-icon-and-label-spacing", | |
| "version": "1.0.0", | |
| "name": "How to Change the BuddyPanel Icon and Label Spacing", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-buddypanel-icon-and-label-spacing/", | |
| "css_code": ".buddypanel-menu > li > a > i:not(.bb-icon-angle-down) {\n\n text-align: center;\n\n margin: 0;\n\n min-width: 68px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-center-align-buddyboss-widget-titles", | |
| "version": "1.0.0", | |
| "name": "How to Center Align BuddyBoss Widget Titles", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-center-align-buddyboss-widget-titles/", | |
| "css_code": "aside.widget h2.widget-title {\n\n display: flex;\n\n justify-content: center;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-always-show-the-comment-bar-on-a-buddyboss-activity-posts", | |
| "version": "1.0.0", | |
| "name": "How to Always Show the Comment Bar on a BuddyBoss Activity Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-always-show-the-comment-bar-on-a-buddyboss-activity-posts/", | |
| "css_code": ".activity-comments form {\n\n display: block !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-capitalize-the-sign-in-link-on-the-registration-page", | |
| "version": "1.0.0", | |
| "name": "How to Capitalize the “Sign In” Link on the Registration Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-capitalize-the-sign-in-link-on-the-registration-page/", | |
| "css_code": ".registration .entry-header a {\n\n text-transform: capitalize;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-fix-fonts-wrapping-issue-in-the-buddypanel", | |
| "version": "1.0.0", | |
| "name": "How to Fix Fonts Wrapping Issue in the BuddyPanel", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-fix-fonts-wrapping-issue-in-the-buddypanel/", | |
| "css_code": ".buddypanel-open:not(.register) .buddypanel ul.buddypanel-menu > li > a > span {\n\n overflow: visible;\n\n white-space: nowrap;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-change-the-buddypanel-expand-icon-color", | |
| "version": "1.0.0", | |
| "name": "How to Change the BuddyPanel Expand Icon Color", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-change-the-buddypanel-expand-icon-color/", | |
| "css_code": ".bb-icon-l.bb-icon-sidebar {\n\n color: #FF0000;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-extend-buddyboss-layout-beyond-1800px", | |
| "version": "1.0.0", | |
| "name": "How to Extend BuddyBoss Layout Beyond 1800px", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-extend-buddyboss-layout-beyond-1800px/", | |
| "css_code": "/* START of WIDE-SCREEN STYLING */\n\n@media screen and (min-width:1201px) {\n\n .container {\n\n max-width: 1800px; /* stretch limit */\n\n }\n\n #primary {\n\n max-width: 100% !important;\n\n flex: 3 0 250px;\n\n }\n\n .widget-area:not(.widget-area-secondary) {\n\n flex: 1 0 180px;\n\n max-width: 550px; /* stretch limit */\n\n min-width: 280px; /* shrink limit */\n\n }\n\n /* Forum content */\n\n .activity-list li.bbp_reply_create .activity-inner,\n\n .activity-list li.bbp_topic_create .activity-inner,\n\n .activity-list li.blogs .activity-inner {\n\n max-width: 100%;\n\n }\n\n /* Forum images */\n\n .bb-media-length-1 .entry-img img {\n\n min-width: 100%;\n\n }\n\n .activity-list li.bbp_reply_create .bb-activity-media-wrap,\n\n .activity-list li.bbp_topic_create .bb-activity-media-wrap {\n\n padding: 0 10px;\n\n }\n\n /* Video & Docs */\n\n .bb-activity-media-wrap,\n\n .bb-activity-video-wrap,\n\n .activity-list .bb-video-wrapper,\n\n .video-activity-wrap {\n\n max-width: initial;\n\n }\n\n /* Photos */\n\n .bb-media-length-1 .media-activity {\n\n flex: 0 0 100%;\n\n }\n\n}\n\n/* END of WIDE-SCREEN STYLING */", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-add-a-box-background-with-the-blog-page-content", | |
| "version": "1.0.0", | |
| "name": "How to Add a Box Background with the Blog Page Content", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/blog-page-layout-showing-in-a-box-with-round-corners/", | |
| "css_code": ".entry-content-wrap {\n\n background: var(--bb-content-background-color);\n\n border: 1px solid var(--bb-content-border-color);\n\n border-radius: var(--bb-block-radius);\n\n transition: all linear .2s;\n\n padding: 20px !important;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-adjust-blog-font-size-and-paragraph-line-height", | |
| "version": "1.0.0", | |
| "name": "How to Adjust Blog Font Size and Paragraph Line Height", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-adjust-blog-font-size-and-paragraph-line-height/", | |
| "css_code": ".single-post .entry-content p {\n\n font-size: 16px;\n\n line-height: 30px;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-center-content-on-password-protected-pages", | |
| "version": "1.0.0", | |
| "name": "How to Center Content on Password-Protected Pages", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-center-content-on-password-protected-pages/", | |
| "css_code": "form.post-password-form {\n\n text-align: center;\n\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-hide-the-all-members-my-connections-and-only-me-privacy-options-in-activity-posts", | |
| "version": "1.0.0", | |
| "name": "How to Hide the “All Members,” “My Connections,” and “Only Me” Privacy Options in Activity Posts", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/how-to-hide-the-all-members-my-connections-and-only-me-privacy-options-in-activity-posts/", | |
| "css_code": "#activity-post-form-privacy label[for=\"loggedin\"],\n#activity-post-form-privacy label[for=\"friends\"],\n#activity-post-form-privacy label[for=\"onlyme\"] {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "how-to-remove-dates-from-the-buddyboss-group-feed-and-forum", | |
| "version": "1.0.0", | |
| "name": "How to Remove Dates from the BuddyBoss Group Feed and Forum", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-dates-from-the-group-feed-and-forum/", | |
| "css_code": ".bs-forums-items .bs-replied a,\n\n.bp-activity-head .activity-date {\n\n display: none;\n\n}\n\nbs-forums-items .bs-replied a {\n display: none;\n}", | |
| "js_code": "", | |
| "php_code": "" | |
| }, | |
| { | |
| "remote_id": "remove-the-header-from-the-woocommerce-checkout-page", | |
| "version": "1.0.0", | |
| "name": "Remove the Header from the Woocommerce Checkout Page", | |
| "default_active": false, | |
| "source_url": "https://buddyboss.com/docs/remove-the-header-from-the-woocommerce-checkout-page/", | |
| "css_code": "body.woocommerce-checkout div#primary-navbar, body.woocommerce-checkout div#header-aside { display: none; }", | |
| "js_code": "", | |
| "php_code": "" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment