Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,226 through 1,250 (of 22,682 total)
  • Author
    Search Results
  • #316682
    meijioro
    Participant

    I haven’t seen any movement on it. I ended up doing a hack. In my theme’s bp template, I checked (in php) if it’s an invitation button then render a direct link instead of bp_nouveau_groups_loop_buttons()

    #316668
    JensGoro
    Participant

    I use WordPress 5.6 and Buddypress 7.1.0

    if I go to the login page on my website and want to log in, I am directed to the start page but not logged in.

    My Site:

    Registrieren

    To Test use:
    Buddypress
    Buddypress123

    #316663
    Slava Abakumov
    Moderator

    Hey Eric,

    I’ve written several plugins for that, but they haven’t been tested for years, so frankly I have no idea whether they work or not.
    Please check:
    https://github.com/slaFFik/bp-feeds
    https://github.com/slaFFik/bp-groups-rss-feed-tab

    Feel free to report any found issues on GitHub, I will see whether I can fix them.

    To install those 2 plugins from GitHub you will need to download ZIP file of the repo and install that zip as a usual plugin using your WordPress admin area.

    #316659
    rando
    Participant

    hi vapvarun and thank you for replying back (: ,

    i tried to write a code to override the main template – and i make the script run as a plugin
    here what i did

    <?php
    /*
    Plugin Name: PAGTEM
    Plugin URI: https://www.example.com
    Version: 0.0.1
    Author: NULL
    Author URI: https://www.example.com
    */
    
    class PageTemplate {
    
    	/**
    	 * A reference to an instance of this class.
    	 */
    	private static $instance;
    
    	/**
    	 * The array of templates that this plugin tracks.
    	 */
    	protected $templates;
    
    	/**
    	 * Returns an instance of this class.
    	 */
    	public static function get_instance() {
    
    		if ( null == self::$instance ) {
    			self::$instance = new PageTemplate();
    		}
    
    		return self::$instance;
    
    	}
    
    	/**
    	 * Initializes the plugin by setting filters and administration functions.
    	 */
    	private function __construct() {
    
    		$this->templates = array();
    
    		// Add a filter to the attributes metabox to inject template into the cache.
    		if ( version_compare( floatval( get_bloginfo( 'version' ) ), '4.7', '<' ) ) {
    
    			// 4.6 and older
    			add_filter(
    				'page_attributes_dropdown_pages_args',
    				array( $this, 'register_project_templates' )
    			);
    
    		} else {
    
    			add_filter(
    				'theme_page_templates', array( $this, 'add_new_template' )
    			);
    
    		}
    
    		// Add a filter to the save post to inject out template into the page cache
    		add_filter(
    			'wp_insert_post_data',
    			array( $this, 'register_project_templates' )
    		);
    
    		// template assigned and return it's path
    		add_filter(
    			'template_include',
    			array( $this, 'view_project_template')
    		);
    
    		$this->templates = array(	
    			'FullC.php' => 'Full Canvas',
    			// this file exist in the same folder as the plugin like that 
    
    		/* Plugin Template ( Folder ) ========
    		 		  |
    		 		  |
    		 		  |
    		 	Index.php (file)
    		 	FullC.php (file) 
    	================			*/
    
    		);
    
    	}
    
    	/**
    	 * Adds template to the page dropdown for v4.7+
    	 *
    	 */
    	public function add_new_template( $posts_templates ) {
    		$posts_templates = array_merge( $posts_templates, $this->templates );
    		return $posts_templates;
    	}
    
    	/**
    	 * Adds our template to the pages cache in order to trick WordPress
    	 * into thinking the template file exists where it doens't really exist.
    	 */
    	public function register_project_templates( $atts ) {
    
    		// Create the key used for the themes cache
    		$cache_key = 'page_templates-' . md5( get_theme_root() . '/' . get_stylesheet() );
    
    		// Retrieve the cache list.
    		// If it doesn't exist, or it's empty prepare an array
    		$templates = wp_get_theme()->get_page_templates();
    		if ( empty( $templates ) ) {
    			$templates = array();
    		}
    
    		// New cache, therefore remove the old one
    		wp_cache_delete( $cache_key , 'themes');
    
    		$templates = array_merge( $templates, $this->templates );
    
    		// Add the modified cache to allow WordPress to pick it up for listing
    		// available templates
    		wp_cache_add( $cache_key, $templates, 'themes', 1800 );
    
    		return $atts;
    
    	}
    
    	/**
    	 * Checks if the template is assigned to the page
    	 */
    	public function view_project_template( $template ) {
    		// Return the search template if we're searching (instead of the template for the first result)
    		if ( is_search() ) {
    			return $template;
    		}
    
    		global $post;
    
    		// Return template if post is empty
    		if ( ! $post ) {
    			return $template;
    		}
    
    		// Return default template
    		if ( ! isset( $this->templates[get_post_meta(
    			$post->ID, '_wp_page_template', true
    		)] ) ) {
    			return $template;
    		}
    
    		// Allows filtering of file path
    		$filepath = apply_filters( 'page_templater_plugin_dir_path', plugin_dir_path( __FILE__ ) );
    
    		$file =  $filepath . get_post_meta(
    			$post->ID, '_wp_page_template', true
    		);
    
    		// check if the file exist first
    		if ( file_exists( $file ) ) {
    			return $file;
    		} else {
    			echo $file;
    		}
    
    		// Return template
    		return $template;
    
    	}
    
    }
    add_action( 'plugins_loaded', array( 'PageTemplate', 'get_instance' ) );

    now if you go to
    Pages > Edit xor Add New Page > Page Attributes > A New Section Called Templates > I Click On the Full Canvas > [UPDATED]

    Nothing Changed (:
    Why’s Is That – Is There’s Wrong With The Code Or The Buddypress V that i use ?

    i use ==> Version 6.3.0 | By The BuddyPress Community

    #316644
    smgjock
    Participant

    Hello, I’m currently using bbpress 2.6.6 and buddypress 7.1.0, (wordpress 5.6, php 7.4.12, theme is siteorigin-unwind 1.6.6), and experiencing this problem as mentioned here, (members of hidden groups not being able to see the topics of the sub-forum). I’m a newbie with the background code, though my private and public groups are working. I can see the fix 7443 in buddypress.js that was indicated then, but am wondering if other people still have a problem with this, and if so if there is another fix available. Thank you.

    Varun Dubey
    Participant

    it’s using medium editor, you can try it with ACF and https://wordpress.org/plugins/acf-medium-editor-field/ and create any type of frontend form submission.

    #316568

    In reply to: BuddyPress Templates

    Varun Dubey
    Participant

    @mungbean BuddyX is live at wp.org

    #316562
    Ron Suarez
    Participant

    WordPress version 5.6
    PHP: 7.4
    BuddyPress Version 7.1.0
    https://annarborcommunitycommons.org/members/drron/messages/sentbox/
    I see posts going back many years ago reporting this problem, but I don’t see that anyone ever posted a resolution!

    Mark Argent
    Participant

    Problem
    I’m working on a site with a custom theme. The members’ list says “All members 0” and lists no members, and, below the search box “Sorry, no members found”. What do I need to do to show the actual members?

    ——

    Details
    I’ve copied wp-content/plugins/bp-templates/bp-nouveau/buddypress to wp-content/themes/my-custom-theme/buddypress. I’ve added links to discussion boards, groups and a members list to the menu and populated the site with members data by using the Buddypress Detault Data plugin (and added a few extra users, and logged in as them).

    If I insert the contents of buddypress/members/members-loop.php into the custom theme’s index.php, then the index.php shows me a listing of members (showing when the database says when they were last active). I am wondering if this means I need to set a path somewhere.

    I am seeing the same behaviour if I use the “twenty seventeen” “twenty twenty” and “twenty twentyone” themes. This is using WordPress 5.6 and Buddypress 7.1.0. I can’t provide a URL as it’s currently a development version on my NetBSD (unix) laptop.

    #316337
    Bigue Nique
    Participant

    On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/

    In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.

    It worked for me! Until when?

    Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860

    We are using this wordpress plug in – New User Approve

    Provides functionality to approve/deny new user registrations.

    Haven’t tried it yet, but it’s probably the best long-term solution.

    #316338
    Bigue Nique
    Participant

    On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/

    In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.

    It worked for me! Until when?

    Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860

    We are using this wordpress plug in – New User Approve

    Provides functionality to approve/deny new user registrations.

    Haven’t tried it yet, but it’s probably the best long-term solution.

    #316494
    unity4625
    Participant

    I have scoured Google, YouTube, and even this very forum for an answer but no one has been able to help me. I’ve even tried talking to Elegant Themes and they were of no help – blaming it on the plugin developers, even though they created the feature. Also, time is running out for me to incorporated this into the website, so I’m desperate. Plus, I KNOW I’m not the ONLY one in the world who has encountered this problem. I can’t be…

    I’m using WordPress version 5.5.3 and BuddyPress version 7.1.0. I’m building a website for an online college using Divi (version 4.7.7, developed by Elegant Themes). Out of the box, Divi is compatible with BuddyPress, except when it comes to the Theme Builder.

    I have a template I created using the Theme Builder that I associate for the pages generated by BuddyPress (User Groups, Members, Activity). On the theme, there’s a module called the Post Content Module which renders whatever content is entered in the page/post body field through the admin dashboard.

    For whatever reason, it will not render the content from the BuddyPress generated pages, or allow the children of those pages (such as profiles) from rendering within the Post Content Module. If I turn the theme template off on those BuddyPress generated pages, the content shows up. But, it’s out of theming with the rest of the website.

    I have recorded a video that shows exactly what I’m talking about that can be looked at by clicking here.

    Please, please, please can someone give me an answer and a fix for this issue. I’ve tried reaching out to Elegant Themes, the creator of Divi, and they were of absolutely no help at all.

    #316492
    alemantico
    Participant

    P.S: I’m using wordpress 5.6–de_DE & Buddypress Version 7.1.0. I hope that helps?

    #316461

    Hi there @jarkin13, sorry to hear that this is happening, and thanks for posting it here.

    Can you check your WordPress site settings and let us know what Time Zone your site is set to?

    I have a hunch BuddyPress is saving a value that is then impossible to format/convert, resulting in that output, and the most likely culprit is a Time Zone offset miscalculation.

    Sorry again, and talk soon!

    #316454

    In reply to: Mega menu for members

    terrenuit
    Participant

    Hi,
    thank you for your reply,
    I am newly in wordpress, could you tell me where will I insert this script ?
    thanks!

    #316443
    gboyer20
    Participant

    Thanks @shanebp, but I think I’m not getting the right id, it should match with WordPress user id?

    #316439
    Varun Dubey
    Participant

    @begood321 to keep logs of all sent messages you can try https://wordpress.org/plugins/email-log/

    #316401
    Mathieu Viet
    Moderator

    Thanks for your tests (and your wishes) @alersn 👌

    I’ll try to explain what’s happening in your case and I believe it also concerns most people using a plugin that is managing Group or Member types. First, I had to handle a similar case for a plugin I’ve build to manage Member Types years ago.

    These kind of plugins had to make a choice about how to ensure type properties persistency, because when BuddyPress introduced the feature only registering Types using custom code was possible. For instance, I chose a regular WordPress option. BP Create Group Type chose to use a Custom Post Type. So most Group Type properties like the one to show checkboxes into the Group create screen are saved as post metas.

    In 7.0.0, as BP Types are custom taxonomies, we decided to use term metas to store these properties. This means, properties are not saved at the same place, that’s why you’re experiencing this issue.

    I agree it’s not great for user experience to have 2 group types menu into the admin and have 2 different ways to manage Type properties: it’s confusing. Ideally, these kind of plugins should alternatively:
    a. disable Group Types menu generated by BuddyPress.
    b. use a specific upgrade routine when the plugin is used with BuddyPress 7.0.0.

    I chose b. for my plugin 😉 because I believe it’s important to enjoy the improvements brought by BuddyPress. It’s standardizing how Type properties are saved, and it will avoid users to be stuck with a BP Plugin (that might have dropped its support) in the long term.

    If BuddyPress plugin developers are interested about how I’ve migrated the Member Types properties my plugin was using so it now uses the BuddyPress way, here’s a gist about it:

    https://gist.github.com/imath/df65b7c856fbd02024a84c7ecc016090

    Best wishes to you too 🎉

    #316400
    alersn
    Participant

    Thank you very much for the quick replay and for the solution 🙂 These solution its works perfect if i start a new wordpress instalation and i create the goups type with the new release 🙂
    I didn’t understand the cause why I’m not able to set the group types of a Group during its creation process in my old wordpress instalation….So I created a test environment, with a new installation of Wordrpess and “buddypress” (with the new BP7.0.0 release) and “buddypress create groups type” plugins. My surprise was that when I created new types of groups using the new configuration panel of BP7.0.0, it worked as you said :).
    I did not understand why in my old installation it did not work for me, so I created a new installation to test, creating the types of groups from the control panel of the pluging (buddypress create groups types) and it was here where the problem occurred that I mentioned in last. The truth is that I don’t know why this happens but I comment on it in case it could be relevant …
    In the following link I explain the tests that I carry out with images in case you are interested and I can better clarify what I did:

    https://filetools8.pdf24.org/client.php?mode=inline&file=joinPdf_57c3723e98842cf01747e9d9590a3f24_12203515873474497049.pdf&action=getFile

    https://smallpdf.com/shared#st=29a5beca-08af-4a95-971d-fac24fbdd4fd&fn=Group_type_test.pdf&ct=1609183456898&tl=share-document&rf=link


    @imath
    Thanks for your contribution and the great code that you generated for the tabs … is that help me a lot for my case 🙂 .
    My best wishes.

    kapilkumar99
    Participant

    Hi,

    I am using WordPress version 4.9 and I installed buddypress also setup it. Now I am facing problem regarding user registration form. After filling all the detail and click to sign up, it show message “your account have been created please check email to activate it”. But I won’t receive any email to active my buddypress account.

    Please help me to get rid out of this problem.

    Thank you.

    #316371
    lishantha
    Participant

    Hi,

    Please see the below answers.

    1. Which version of WordPress are you running? 5.6

    2. Did you install WordPress as a directory or subdomain install? Directory

    3. If a directory install, is it in root or in a subdirectory? Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? No

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? 7.0.0

    7. Did you upgraded from a previous version of BP? If so, from which version? No

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes. But I deactivated all for testing purposes but the problem persists.

    9. Are you using a standard WordPress theme or customized theme? Customized

    10. Which theme do you use? My Listing

    11. Have you modified the core files in any way? No

    12. Do you have any custom functions in bp-custom.php? No

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.6.6

    14. Please provide a list of any errors in your server’s log files. Non

    15. Which company provides your hosting? Bluehost

    16. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache

    17. Which BP Theme are you using? Non

    18. Have you overloaded any BuddyPress template files. No

    19. Any other site customisations that might have a bearing on the issue? Non

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page. Non

    #316370
    Claudio
    Participant

    I’m using WordPress 5.6 and BuddyPress 7.1.0
    At registration page the password field is not showing up.
    And also the create password link is not being sent to the subscriber e-mail.

    Mathieu Viet
    Moderator

    Hi @mbaysf

    I’m curious, as BuddyPress doesn’t display WordPress posts written by a member into their individual page, what Theme, Plugin or custom code are you using to create this posts tab?

    Mathieu Viet
    Moderator

    Hi there,

    Although, I understand the frustration behind this need to find a new place to discuss about BuddyPress, I’m wondering if we could find ways to improve BuddyPress support forums to match everyone needs and have :

    – A place to discuss about using BuddyPress
    – A place to discuss about extending BuddyPress
    – A place to discuss about designing for BuddyPress

    If you have ideas and want to contribute about this subject, I’m totally in favor of having a specific & regular 1 hour chat into the BuddyPress slack channel.

    mbaysf
    Participant

    I am trying to find a solution to display member’s posts in member profile page at link /members/membername/ instead of default behavior of displaying the posts under posts tab at
    /members/membername/posts

    Many social media sites, member profile shows member posts upon landing. I am using wordpress and I am assuming other folks might have similar requirements.

    Thanks

Viewing 25 results - 1,226 through 1,250 (of 22,682 total)
Skip to toolbar