Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,726 through 6,750 (of 22,649 total)
  • Author
    Search Results
  • #230122
    bp-help
    Participant

    @dee987
    I offer a premium plugin that would work for your situation. If your interested you can contact me here: https://bphelpblog.wordpress.com/submit-comments-tips-or-tricks-or-job-inqueries/
    The name of the plugin is Private Community For BP.

    #230119
    danbp
    Participant

    Read here:

    Group Extension API

    or try this plugin (an update is planed… see support first)
    https://wordpress.org/support/plugin/buddypress-groups-extras

    #230069
    danbp
    Participant

    Possibly not the best solution, but have you tested this plugin ?
    https://wordpress.org/support/plugin/username-changer

    #230061
    Security
    Participant

    Hi @techytoo
    There is a plugin for no following all the external links on your site
    https://wordpress.org/plugins/nofollow-for-external-link/screenshots/
    May be this can help Thanks

    #230059

    In reply to: [Resolved] Error 404

    Security
    Participant

    Hi @krglok the issue seems to be with your permalink structure you have to goto your wordpress dashboard>>settings>>permalinks and select the structure something like this yoursitename.com/sample-post-name now save the settings and try vising your buddypress pages the problem should be resolved,if not make sure you have set the pages for respective components in buddypress settings for this goto dashboard>>settings>>buddypress>>pages tab and set and save the respective pages as explaned in the link provided by @danbp above.
    Note:You may have to create the pages if they are not already there thanks

    #230057
    Security
    Participant

    Hi @scrubtek i think there is a plugin to achieve this functionality
    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/screenshots/

    #230051
    tim_marston
    Participant

    Thanks @henrywright

    Here is the list:

    Admin Tweaks
    Advanced Excerpt
    Antispam Bee
    bbPress
    Bowe Codes
    BP Auto Activate Autologin Redirect To Profile On Signup
    Bp Clear Notifications
    BP Group Activities Notifier
    Broken Link Checker
    BuddyBlock
    BuddyPress
    Buddy Press Activity Ads
    BuddyPress Activity as Wire
    BuddyPress Activity Comment Notifier
    BuddyPress Activity Privacy
    BuddyPress Block Activity Stream Types
    BuddyPress Live Notification
    BuddyPress Profile Visibility Manager
    BuddyPress Security Check
    BuddyPress Usernames Only
    Delete Expired Transients
    Duplicator
    Email Login
    Facebook Like User Activity Stream For BuddyPress
    Google Analytics +
    Imsanity
    Infinite SEO
    Insert Headers and Footers
    Mailjet for WordPress
    Menu Items Visibility Control
    OPcache Dashboard
    Post Voting
    Pretty Link Lite
    Query Monitor
    Random Banner
    rtMedia for WordPress, BuddyPress and bbPress
    rtMedia Pro
    s2Member Framework
    SearchWP
    SearchWP bbPress Integration
    Social Likes
    Subscribe To Comments
    User Activity
    Wordfence Security
    WordPress FAQ Manager
    WP-DBManager
    WP-Memory-Usage
    wp-Monalisa
    WPBakery Visual Composer
    WP Better Emails
    WP External Links
    WP Maintenance Mode
    WPMU DEV Dashboard
    WP Widget Cache

    #230034
    nwfp
    Participant

    I just figured out that this problem is only when logged in as my wordpress admin. When logged as a general user things look like they are working fine.

    Kiciana
    Participant

    Thanks for that. I read through it and I wanted to add the example function for admin footer to my plugin to check how it works but it crashes wordpress when I try to access the Dashboard.

    Internal Server Error

    The server encountered an internal error or misconfiguration and was unable to complete your request.

    I used this code:

    <?php
    add_action( 'admin_footer', 'my_action_javascript' ); // Write our JS below here
    
    function my_action_javascript() { ?>
    	<script type="text/javascript" >
    	jQuery(document).ready(function($) {
    
    		var data = {
    			'action': 'my_action',
    			'whatever': 1234
    		};
    
    		// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
    		$.post(ajaxurl, data, function(response) {
    			alert('Got this from the server: ' + response);
    		});
    	});
    	</script> <?php
    }
    <?php 
    
    add_action( 'wp_ajax_my_action', 'my_action_callback' );
    
    function my_action_callback() {
    	global $wpdb; // this is how you get access to the database
    
    	$whatever = intval( $_POST['whatever'] );
    
    	$whatever += 10;
    
            echo $whatever;
    
    	die(); // this is required to terminate immediately and return a proper response
    }

    Any ideas what goes wrong here?

    #230022
    irieside
    Participant

    Thanks for replying. Where do I find the WordPress settings? Under settings in the dashboard I only have access to buddypress and general settings, along with other plugin settings.

    I’m at a very amateur level with PHP, if I can avoid it that would be best. But simple adjustments are doable.

    I’ve installed that plugin, but members still report that they are unable to post. If I can adjust the ‘spam’ filter that would be awesome, to allow nearly everything besides multiple links.

    shanebp
    Moderator

    Read re wordpress ajax.

    #230017

    In reply to: [Resolved] Error 404

    Krglok
    Participant

    I found the issue.
    i must change the permalinks to “Beitragsname” localhost/wordpress/Beispielbeitrag/

    with this option the create buddyPress groups will run.

    Puh, almost a little bit confousing about what the the right option.

    a little hint in installation or setup will be helpfull.

    thanks.

    #230003
    danbp
    Participant

    Try first by modifying the read more params in WordPress settings.

    Publishing “post” with help of the “what’s new” form is not really intended to publish long texts. And the read more link will cut it off by default after 150 char or so…

    Aside, spam settings are also to be rewieved in your WP settings. By default, any comment text containing more than 2 links are considered as spam.

    And depending the theme you use, you have also to check theme’s settings about such params…

    In case of, you could try this plugin (but not sure it already works).

    If you’re well with PHP, you can also try to play with this.

    #229954
    @mercime
    Participant

    @hypnoscribe @milenushka @style960 default notifications are posted at https://codex.buddypress.org/member-guide/notifications/ set up in your Profile Settings > Notifications panel. If the feature you need is not available, do create a ticket in BP Trac. Log in using your WP username and password.

    #229925
    Henry Wright
    Moderator

    Hi @zorro1965

    There’s a hook available in BuddyPress called messages_message_before_save which can be used to do things before a message is sent. So, you could write a function which checks to see if a member has authorisation to send a message and bail if not. You’d simply hook your function to messages_message_before_save

    See here for more info on how to utilise hooks.

    #229915
    danbp
    Participant

    Polylang plugin is intended to translate your site content

    To translate BuddyPress you have to use the translation support shipped with the plugin (buddypress.pot in bp-languages folder) and create your own version of po/mo files.

    Or to get a ready to use BP translation in your language, check out from here
    For any hints about translation, or to contribute, see here.

    #229903
    miama
    Participant
    
    
    <?php
    
    /**
    * BuddyPress – Users Home
    *
    * @package BuddyPress
    * @subpackage bp-default
    */
    
    //get theme options
    global $oswc_bp;
    
    //set theme options
    $oswc_bp_sidebar_unique = $oswc_bp[‘bp_sidebar_unique’];
    $oswc_bp_members_sidebar_unique = $oswc_bp[‘bp_members_sidebar_unique’];
    
    //setup variables
    $sidebar=”Default Sidebar”;
    if($oswc_bp_sidebar_unique) { $sidebar=”BuddyPress Default Sidebar”; }
    if($oswc_bp_members_sidebar_unique) { $sidebar=”BuddyPress Members Sidebar”; }
    
    get_header( ‘buddypress’ ); ?>
    
    <div class=”main-content-left”>
    
    <div class=”page-content” id=”content”>
    
    <?php do_action( ‘bp_before_member_home_content’ ); ?>
    
    <div id=”item-header” role=”complementary”>
    
    <?php locate_template( array( ‘members/single/member-header.php’ ), true ); ?>
    
    </div><!– #item-header –>
    
    <div id=”item-nav”>
    <div class=”item-list-tabs no-ajax” id=”object-nav” role=”navigation”>
    
        <?php bp_get_displayed_user_nav(); ?>
    
        <?php do_action( ‘bp_member_options_nav’ ); ?>
    
    </div>
    </div><!– #item-nav –>
    
    <div id=”item-body”>
    
    <?php do_action( ‘bp_before_member_body’ );
    
    if ( bp_is_user_activity() || !bp_current_component() ) :
    locate_template( array( ‘members/single/activity.php’ ), true );
    
    elseif ( bp_is_user_blogs() ) :
    locate_template( array( ‘members/single/blogs.php’ ), true );
    
    elseif ( bp_is_user_friends() ) :
    locate_template( array( ‘members/single/friends.php’ ), true );
    
    elseif ( bp_is_user_groups() ) :
    locate_template( array( ‘members/single/groups.php’ ), true );
    
    elseif ( bp_is_user_messages() ) :
    locate_template( array( ‘members/single/messages.php’ ), true );
    
    elseif ( bp_is_user_profile() ) :
    locate_template( array( ‘members/single/profile.php’ ), true );
    
    elseif ( bp_is_user_forums() ) :
    locate_template( array( ‘members/single/forums.php’ ), true );
    
    elseif ( bp_is_user_settings() ) :
    locate_template( array( ‘members/single/settings.php’ ), true );
    
    elseif ( bp_is_user_notifications() ) :
    locate_template( array( ‘members/single/notifications.php’ ), true );
    // If nothing sticks, load a generic template
    else :
    locate_template( array( ‘members/single/plugins.php’ ), true );
    
    endif;
    
    do_action( ‘bp_after_member_body’ ); ?>
    
    </div><!– #item-body –>
    
    <?php do_action( ‘bp_after_member_home_content’ ); ?>
    
    </div>
    
    </div>
    
    <div class=”sidebar”>
    
    <?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar($sidebar) ) : else : ?>
    
    <div class=”widget-wrapper”>
    
    <div class=”widget”>
    
    <div class=”section-wrapper”><div class=”section”>
    
    <?php _e(‘ Made Magazine ‘, ‘made’ ); ?>
    
    </div></div>
    
    <div class=”textwidget”>
    
    <p><?php _e( ‘This is a widget panel. To remove this text, login to your WordPress admin panel and go to Appearance >> Widgets, and drag & drop a widget into the corresponding widget panel.’, ‘made’ ); ?></p>
    
    </div>
    
    </div>
    thats what I did:
    </div>
    
    <?php endif; ?>
    
    </div>
    
    <br class=”clearer” />
    
    <?php get_footer( ‘buddypress’ ); ?>
    
    #229861
    Brent Havill
    Participant

    Thanks Henry!! Your are a huge help!

    ps – while I search for the social network notify members plugin, would you mind just having a quick look at this ‘list’ of our plugins I just happen to have on hand?:

    LIST OF PLUGINS:
    AVH Extended Categories Widgets
    Settings | Deactivate | Edit Replacement of the category widget to allow for greater customization of the category widget.
    Version 3.9.3 | By Peter van der Does | View details
    BuddyPress
    Deactivate | Edit | Settings | About Social networking in a box. Build a social network for your company, school, sports team or niche community all based on the power and flexibility of WordPress.
    Version 2.1.1 | By The BuddyPress Community | View details

    Category Order
    Deactivate | Edit The Category Order plugin allows you to easily reorder your categories the way you want via drag and drop.
    Version 1.0.3 | By Wessley Roche | View details

    Contact Form 7
    Settings | Deactivate | Edit Just another contact form plugin. Simple but flexible.
    Version 4.0.1 | By Takayuki Miyoshi | View details
    There is a new version of Contact Form 7 available. View version 4.0.2 details or update now.

    LayerSlider WP
    Deactivate | Edit LayerSlider is the most advanced responsive WordPress slider plugin with the famous Parallax Effect and over 200 2D & 3D transitions.
    Version 5.1.1 | By Kreatura Media | Visit plugin site

    Limit Login Attempts
    Deactivate | Edit Limit rate of login attempts, including by way of cookies, for each IP.
    Version 1.7.1 | By Johan Eenfeldt | View details

    Reveal IDs
    Deactivate | Edit Reveals hidden IDs in Admin interface that have been removed with WordPress 2.5 (formerly known as Entry IDs in Manage Posts/Pages View for WP 2.5). See options page for information.
    Version 1.4.5 | By Oliver Schlöbe | View details

    Sweet Captcha
    Deactivate | Edit Adds SweetCaptcha anti-spam solution to WordPress on the comment form, registration form, and other forms. Is compatible with Contact Form 7 and BuddyPress plug-ins. WordPress network is also supported.
    Version 3.0.8 | By Sweet Captcha | View details

    Vibe Course Module
    Deactivate | Edit This is the Course module for WPLMS WordPress Theme by VibeThemes
    Version 1.8.1 | By Mr.Vibe | View details
    There is a new version of Vibe Course Module available. View version 1.8.2 details or update now.

    Vibe Custom Types
    Deactivate | Edit This plugin creates Custom Post Types and Custom Meta boxes for WPLMS theme.
    Version 1.8.1 | By Mr.Vibe | View details
    There is a new version of Vibe Custom Types available. View version 1.8.2 details or update now.

    Vibe ShortCodes
    Deactivate | Edit Create unlimited shortcodes
    Version 1.8.1 | By VibeThemes | View details
    There is a new version of Vibe ShortCodes available. View version 1.8.2.1 details or update now.

    WooCommerce
    Settings | Deactivate | Edit An e-commerce toolkit that helps you sell anything. Beautifully.
    Version 2.2.8 | By WooThemes | View details | Docs | API Docs | Premium Support

    WPBakery Visual Composer
    Deactivate | Edit Drag and drop page builder for WordPress. Take full control over your WordPress site, build any layout you can imagine – no programming knowledge required.
    Version 4.2.3 | By Michael M – WPBakery.com | View details
    There is a new version of WPBakery Visual Composer available. View version 4.3.4 details. Download new version from CodeCanyon.

    WPLMS Assignments
    Activate | Edit | Delete COURSE Assignments plugin for WPLMS
    Version 1.8.1 | By VibeThemes | Visit plugin site

    WPLMS Customizer Plugin
    Deactivate | Edit A simple WordPress plugin to modify WPLMS template
    Version 1.0 | By VibeThemes | Visit plugin site

    WPLMS Dashboard
    Deactivate | Edit Student/Instructor Dashboard for WPLMS theme
    Version 1.8.1 | By VibeThemes | View details
    There is a new version of WPLMS Dashboard available. View version 1.8.2 details or update now.

    WPLMS Events
    Activate | Edit | Delete COURSE Events plugin for WPLMS
    Version 1.8.1 | By VibeThemes | Visit plugin site
    WPLMS Front End
    Deactivate | Edit FRONT END Content Creation plugin for WPLMS
    Version 1.8.1 | By VibeThemes | View details
    There is a new version of WPLMS Front End available. View version 1.8.2 details or update now.

    WP Mail From II
    Deactivate | Edit Allows you to configure the default email address and name used for emails sent by WordPress.
    Version 1.0.2 | By Ben Huson | View details

    #229843
    Paul Bursnall
    Participant

    @hypnoscribe @milenushka To be honest I deactivated and uninstalled Buddypress a few weeks ago. There was no response to this query and given it’s a key part of the BP experience I found that quite disappointing. Although at the same time, I do acknowledge the plugin is maintained by volunteers. I’m now using a different plugin for a community feature which expands on the default WordPress user accounts, and links nicely with the big social networks for good exposure. Sorry I can’t help in resolving this.

    milenushka
    Participant

    Hi @shanebp,

    Thank you for your help. I found this article by @boonebgorges about adding the comments to custom posts to the activity feed. I actually have that working already, but the text is generic- “user commented on a post”. Is there a way to add a specific slug here too?

      function bbg_record_my_custom_post_type_comments( $post_types ) {
          $post_types[] = 'dolphin'; // Add your custom post type name to the array. If you have a post type called 'dolphin' then you have a weird plugin
          return $post_types;
      }
      add_filter( 'bp_blogs_record_comment_post_types', 'bbg_record_my_custom_post_type_comments' );

    With kind regards,

    M

    #229835
    Henry Wright
    Moderator

    Hi @brent-havill

    The functionality you describe seems to be custom (not the default functionality provided by BuddyPress or WordPress) so you’ll need to provide more details on how exactly it works in order for the guys here to try to help.

    #229779
    shanebp
    Moderator

    Yes, if you enable this setting in wp-admin:
    Settings > BuddyPress > Settings > Enable BuddyPress to WordPress profile syncing

    #229778
    solokco
    Participant

    Thanks for the quick answer.

    That’s how you change the user NAME only.
    Wordpress has the option to SHOW PUBLIC NAME of specific user and it give you a drop down with all the variables:

    • Name Lastmame
    • Name
    • username
    • Lastname Name

    Is there a way to use this option in the front end?

    #229766

    In reply to: Youtube z-index

    Hugo Ashmore
    Participant

    This is not a z-index issue as such, it’s a very old problem that has been around for ages and is to do with managing the parameters for this object, the correct or intended behaviour is for flash player to hover as it were on the page independent of the natural stacking order of the dom elements. Adding the parameter wmode=”opaque” overrides this and sets the player into the page – flattens it where it should then observe the stacking order or applied z-indices.

    The issue is going to be accessing the elements to add this parameter.

    If you search around you would eventually find this post on WP forums, which includes the rather convoluted solution to forcing the iframe element to work with wmode=opaque
    https://wordpress.org/support/topic/help-adding-wmodetransparent-to-oembeds ( the post appears to suggest the question might have been asked here in the past? search?)

    I’ll copy the pastebin example function here for your convenience, use at your own risk 🙂

    
    add_filter( 'the_content' , 'mh_youtube_wmode' , 15 );
    
    function mh_youtube_wmode( $content ) {
    
    // Regex to find all <ifram ... > YouTube tags
    $mh_youtube_regex = "/\<iframe .*youtube\.com.*><\/iframe>/";
    
    // Populate the results into an array
    preg_match_all( $mh_youtube_regex , $content, $mh_matches );
    
    // If we get any hits then put the update the results
    if ( $mh_matches ) {;
    	for ( $mh_count = 0; $mh_count < count( $mh_matches[0] ); $mh_count++ )
    		{
    		// Old YouTube iframe
    		$mh_old = $mh_matches[0][$mh_count];
    
    		$mh_new = str_replace( "?feature=oembed" , "?wmode=transparent" , $mh_old );
    		$mh_new = preg_replace( '/\><\/iframe>$/' , ' wmode="Opaque"></iframe>' , $mh_new );
    
    		// make the substitution
    		$content = str_replace( $mh_old, $mh_new , $content );
    		}
    	}
    return $content;
    }
    

    This doesn’t include solutions for BP oembeds though, the whole function could do with scrutiny and perhaps updating a little.

    anndr0id
    Participant

    I am having this same issue! Linux server on MediaLayer
    Wordpress 4.0.1
    Buddypress 2.1.1
    PHP 5.3.28
    Apache 2.2.27

    No Plugins except Buddypress

    Tried several themes

Viewing 25 results - 6,726 through 6,750 (of 22,649 total)
Skip to toolbar