Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,251 through 4,275 (of 22,689 total)
  • Author
    Search Results
  • #257626
    Henry Wright
    Moderator

    In order to update a custom table you’d need to use the wpdb class.

    #257620

    In reply to: Redirect does not work

    danbp
    Participant

    Hi,

    BuddyPress doesn’t handle registration. That’s WordPress territory.

    You may read about WP two step authentication:
    https://codex.wordpress.org/Two_Step_Authentication

    And here’s a tutorial from which you can built a multi step authentication:

    Building a Multi-step Registration Form for WordPress

    Good luck !

    #257607
    danbp
    Participant

    Deactivate all plugins and the theme and test registering from WP using a Twenty theme as first.
    Then activate BP and re-test.
    Then activate S2 or whatever you use for paid membership and again, test.
    And finally, you have to test your theme (if not a Twenty one).

    FYI, BuddyPress doesn’t handle the password field, but WordPress.
    You’ll probably get better answers on WP or S2 support forum.

    anonymousse2
    Participant

    Thank you @danbp for the plugin, but this one does not work. I nevertheless deactivated quite my plugins to part BP, nothing can be done we can always modify at will profile field. I also use the last version of BP and WordPress. My theme is SweetDate of SeventhQueen. What do I have to make now?

    Thanks

    #257591

    In reply to: Front-End Publishing

    Earl_D
    Participant

    This one also looks good got updated today
    https://wordpress.org/plugins/social-articles/

    #257553

    In reply to: Activation email

    Paul Wong-Gibbs
    Keymaster

    Emails not sending have many possible causes. For the sake of clear discussion, please make your own topics, don’t bundle in on the same one.


    @jtburlew
    Please check to see if your site sends WordPress emails reliably? (i.e. comment notification, password resets). Please also let me know what plugins you are using. Anything that changes POP3 or IMAP behaviour, or redeclares the wp_mail function, in particular.

    Paul Wong-Gibbs
    Keymaster

    @imath has never reported with emails not sending from his French language WordPress sites, so I am assuming this is a server configuration problem – or incompatibility with something WPML is doing – rather than it being down to some character within the email string.

    Paul Wong-Gibbs
    Keymaster

    What plugins do you have active?

    Does your site send WordPress emails reliably? (i.e. password resets, comment notifications)

    #257511
    @mercime
    Participant

    @maryt66 You’re welcome. You can subscribe to the latest BP development news at https://bpdevel.wordpress.com/ or check out https://buddypress.org/blog/

    Cheers.
    Mercime

    #257498
    dolf h
    Participant

    Thank you @mercime. My solution mentioned above is working website-wide (and I like that):

    <script type="text/javascript">
        window.onload = function(){
    var titled = document.querySelectorAll('[title]');
    var numTitled = titled.length;
    var i = 0;
    for (i=0; i<numTitled; i++){
        titled[i].removeAttribute('title');
    }
        };
    </script>

    I think I only need an Ajax refresh. Perhaps this plugin is suitable: https://wordpress.org/plugins/ajaxize/
    I ‘ll give it a try.

    #257491

    In reply to: Chinese Translation

    Paul Wong-Gibbs
    Keymaster

    (I’ve asked https://profiles.wordpress.org/petya to reach out to @idichoo to help get started with translations)

    #257474
    @mercime
    Participant

    Just to note that the “add friend and cancel friendship” tooltips, among other tooltips have been removed in BP 2.7 trunk (see #7090).

    #257467
    Georgio
    Participant

    Finally I could resolve the problem after reading this article

    This developer suggests creating a plugin. The result is a link with a dashicon but it is not responsive. To make it responsive (show on mobile), I added in the css file of the plugin a snippet I fould elsewhere:

    @media screen and (max-width: 782px) {
    		  #wpadminbar li#wp-admin-bar-XXX {
    					display: block;
    		  }
    }

    Replace XXX with your id

    #257462
    reneerodriguez
    Participant

    @djpaul

    Something to that effect. I’m using this plugin here: https://wordpress.org/plugins/bp-member-type-generator/

    #257461

    In reply to: Bug list member

    mrjarbenne
    Participant

    The BuddyPress Plugin doesn’t apply any style when you hover over a suggested @mention. When using a default WP theme (which is what the BP developers base their testing on) there is no hover effect on the suggested username. Which indicates that it is probably something in the style of the theme you are using that is applying this additional effect.

    The quickest way to see if it’s the theme or not, is to quickly change themes to one of the Twenty-xx themes that are packaged with WordPress, and if the hover effect disappears, you know where the problem is.

    That’s only part one. The next part is to figure out where in the theme the issue is and patch it.

    This might be helpful: https://www.studiopress.com/using-firebug/

    #257456
    mrjarbenne
    Participant

    I haven’t tried this plugin in a few years, and it hasn’t been updated for a while, but it once did exactly what you are talking about.

    https://wordpress.org/plugins/buddypress-activity-stream-bump-to-top/

    #257453
    mrjarbenne
    Participant

    You could customize the adminbar completely, using this snippet. I’m hiding the W menu, but you could probably hid the Sites menu and then add your own dropdown with the requisite links.

    http://www.wpbeginner.com/plugins/how-to-add-edit-re-order-or-hide-wordpress-admin-menus/

             /**
    	 * Adds custom "Home" menu to WP Adminbar.
    	 *
    	 * Also removes the "WP logo" menu.
    	 *
    	 * @param object $wp_admin_bar The WP Admin Bar object
    	 */
    	public function add_custom_parent_menu( $wp_admin_bar ) {
    
    		/**
    		 * Removing the "W" menu
    		 */
    		$wp_admin_bar->remove_menu( 'wp-logo' );
    
    		/**
    		 * Create a "Home" menu.
    		 *
    		 * First, just create the parent menu item.
    		 */
    		$wp_admin_bar->add_menu( array(
    			'id' => 'commonlinks',
    			'parent' => '0', //puts it on the left-hand side
    			'title' => 'Home',
    			'href' => ('INSERT LINK HERE')
    		) );
    
    		/**
    		 * Add submenu items to "Home" menu.
    		 */
    		// Only show the following for logged-in users
    		if ( current_user_can( 'read' ) ) {
    			// Support link
    			$wp_admin_bar->add_menu( array(
    				'id' => 'support',
    				'parent' => 'commonlinks',
    				'title' => 'Support',
    				'href' => ('INSERT LINK HERE')
    			) );
    
    			// Blog request form
    			$wp_admin_bar->add_menu( array(
    				'id' => 'blogrequest',
    				'parent' => 'commonlinks',
    				'title' => 'Stuff',
    				'href' => ('INSERT LINK HERE' )
    			) );
    
    			// Developers blog
    			$wp_admin_bar->add_menu( array(
    				'id' => 'developments',
    				'parent' => 'commonlinks',
    				'title' => 'Developments',
    				'href' => ('INSERT LINK HERE' )
    			) );
    
    		}
    
    	}
    #257451
    mrjarbenne
    Participant

    The BuddyPress login widget is just a styled version of the WordPress login page. Hackers are still hitting the same database regardless of if they are finding your login widget — or more likely — blinding hitting your /wp-login.php page. wp-login isn’t being replaced here. If you are worried about brute force attacks, you should look into mechanisms created to protect WordPress (captchas, limit login attempts, etc.)

    Replacing the WP login infrastructure with something else is a whole other matter, and something you would need to do on the WP side. As @djpaul mentioned, BP leaves that side of the site to the existing BP user management system.

    #257450
    idichoo
    Participant

    Well… I would prefer buddypress to inform user on wrong user id or password entered instead of redirect user to wordpress login. It will encourage for hacking. Do you have any ways to so that it doe not redirect to wordpress login but show wrong userid or password.
    Thanks for your help.

    #257374
    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t affect user authentication or password resets. We leave that to WordPress.

    WordPress’ lost password link can be found on the .com/wp-login.php screen. You can copy that link into your theme/navigation menu, etc, if you want it elsewhere.

    #257359
    Paul Wong-Gibbs
    Keymaster

    @skullchow To get your site back, you need to FTP (or SSH, or whatever — you should know how to do this) into your server. Go into the wp-content/plugins/ folder, and rename the buddypress plugin to buddypress-disabled. Then, visit your site’s plugins page (.com/wp-admin/plugins.php), and WordPress will fix itself.

    Then what you need to do is obtain your server’s PHP error logs. If you don’t know how to do this, ask your webhost for help. Inside it, it will be list whatever error was breaking the site. If you let us know what’s in the log, we can help figure out what broke things.

    #257358
    Paul Wong-Gibbs
    Keymaster

    Not quite! In BuddyPress 2.6, we added support for dynamic links for user profiles.

    In your template/blog post/wherever, if you wanted a link to go to the logged-in user’s activity stream (for example), create the link to <a href=http://example.com/members/me/activity">my activity stream</a>.

    See https://buddypress.trac.wordpress.org/changeset/10791 for the change.

    #257355

    In reply to: Chinese Translation

    danbp
    Participant

    Get in touch with the chinese translation team:

    Translation Teams

    You don’t need to download GlotPress, you can translate BP online. Just go to https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/zh-cn/default and log-in.

    And read the translators handbook to learn more about translating WordPress, plugins and themes.

    If you prefer to read in chinese, see here: https://cn.wordpress.org/

    #257323
    danbp
    Participant

    Have you tried to adjust the size via child theme’s CSS ?
    Some examples here: https://en.support.wordpress.com/custom-design/custom-css-media-queries/

    Kristian Yngve
    Participant

    Initial details:

    WordPress 4.5.3 running.
    BP Press: Version 2.5.10.
    WordPress as a directory, it in root.
    I have custom functions in a child bp-custom.php.
    I’m running bbPress (standalone), ersion 2.5.10.
    NOTE: Everything all works great – just this doesn’t seem to…
    ______________________________________________

    Now, I’ve seen many of the ‘[Resolved] How to create a dynamic link to “my profile”‘ forums but I need it as an image-link (in page, so not a widget), to the user’s “my friends”.

    My best guess was: having the url of the image being:-

    http://taipeiexpats.org/members/MEMBER_NAME/friends/

    and, having this code in my bp-custom.php (I’ve also tried my child theme functions):-

    add_filter( ‘bp_core_enable_root_profiles’, ‘__return_true’ );

    }

    This would allow the MEMBER_NAME (I tried adding the %username% and etc…)

    None of this works.

    Any ideas upon what I got to do?

Viewing 25 results - 4,251 through 4,275 (of 22,689 total)
Skip to toolbar