Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 4,301 through 4,325 (of 32,481 total)
  • Author
    Search Results
  • #192873
    Audiomonk
    Participant

    I know the subject keeps coming up, and I’ve been through the posts and I’ve added the relevant code to my functions.php all good so far.

    My visual editor is inserting tags that get filtered out by BBpress. Is there any plugin that I can say a particular user can have any html? I’m wanting to add more available tags like <h1 style=”text align:center”> etc. All my efforts have failed miserably. I like BBpress, but other forum software doesn’t have these restrictions on basic text formatting.

    Maybe if you can explain what the code does rather than link to an example, I haven’t a clue about arrays or what => etc means and the syntax. I just want users to be able to add heading tags and a few other basic text formatting options to tie in with their visual editor.

    Thanks in advance

    #192828

    In reply to: Incorrect topics count

    Andrei Surdu
    Participant

    OK. Here is how to replicate the issue.

    1. Make a forum.
    2. Add 2 topic to this forum using the front-end form.

    Now the structure of this forum is something like this:

    -> Example forum
    -> A topic example 1
    -> A topic example 2

    And the count is 2 topics.
    I get this count of 2 topics by using the function: bbp_get_forum_topic_count(0, false).
    This function is placed in bbpress/loop-single-forum.php template.

    3. Go to wp-admin to the edit screen of the topic “A topic example 1”.
    4. Under the “Topic Attributes” meta box, change the forum parent, by selecting “– No parent –“.
    5. Update.
    6. Check the forum on front-end. The count should be 1 topic but it still displays 2 topics.

    #192823

    In reply to: Incorrect topics count

    Robin W
    Moderator

    sorry I don’t understand the question.

    you start by quoting a bbpress function, and then changing a forum and then a ?specific? topic disappears.

    As a start, can you give the precise code you are using, and where you are using it, and how.

    #192822
    Andrei Surdu
    Participant

    I use this function to display the total topics count for a single forum: bbp_get_forum_topic_count

    If I change the forum parent to –No Parent —, the topic dissapears from forum section but the count does not change. See the image below:

    —————–
    bbPress version: 2.5.14
    WordPress version: 4.9.5

    #192821
    emgb_520
    Participant

    I forgot to include that I have tried editing the code without any luck.

    The file I have tried editing is /wp-content/plugins/bbpress-login-register-links-on-forum-topic-pages/bbpress-login-register-links-on-forum-topic-page.php

    Lines 26-72

    The LOGOUT link redirects to the page the user was previously on, but the LOGIN link does not.

    Please help!

    #192801
    hossamhamdy
    Participant

    I do accept that, it’s just the first time I ask was 5 days ago and I stopped working on the website coz I had to solve this problem first.

    Here’s a link to the forum page: https://www.yt-creatorcommunity.com/forums/forum/ساحة-التفاعل/

    I added a custom css to solve the picture problem, so it’s now normal but only because I edited the css codes, and about the registration the up bar still doesn’t appear so I added a widget to solve this problem, but it doesn’t look good though.

    #192794
    Robin W
    Moderator

    I hadn’t seen that plugin before – looks useful.

    Pippin is a very experienced plugin writer (better than me!), and I just loaded and tested that plugin and it works error free and fine.

    A quick look at the code shows no obvious issues with current versions of wordpress or bbpress.

    It is always a problem for plugin writers to maintain their plugins – I have over 6, and whenever wordpress updates, I have 6 to test and update.

    I don’t really want to take on anymore, else I’d offer to take that one over.

    I’d suggest you use it – worst case at some future stage you may have to stop using it, but as I know of no other plugin that does this, you’ll be no worse off than you are now.

    If it does stop working come back, and I’ll look to see how easy it is to fix, but offhand I see no reason why it will become out of date unless wordpress does some very major changes.

    #192789
    ams047
    Participant

    I am still fairly new and finding my way around, but found your fix gets rid of the error.

    However, the comments in this thread suggested that the reply comments box appears below the comment which is being replied to, which your code does not. Instead the comment box appears at the end of the thread.

    Restoring I() in reply.js to “return document.getElementById(e);” (from “tinymce.execCommand(‘mceFocus’,false,’bbp_reply_content’);”) fixes that. I tried tinymce.execCommand(‘mceFocus’,false,e); which seemed to be more appropriate but that did not work either.

    #192737
    mockendo
    Participant

    Hi,

    I’d like to remove the header from all bbPress pages on my site, but can’t quite figure it out!

    I’m using the theme Total, and advice from the theme creator was to put .ht-main-header{display:none;} in Appearance > Customise > Additional CSS. This worked, but removed the header from all pages across the website and forum. I’d like to keep the header on all main website pages and only remove it from bbPress pages.

    The main forum is here: https://economy10.com/f/

    I can remove the header from an individual page by adding .postid-994 .ht-main-header{display:none;} but this is only for a specific page. How can I do this for all forum pages?

    I’m relatively new to using wordpress/bbpress (and don’t really understand CSS tbh!) so any advice would be greatly appreciated.

    Cheers
    Mark

    #192346
    Robin W
    Moderator

    Untested, but try

    function rew_no_reply_per_forum ($reply_address) {
    	$forum_id = bbp_get_forum_id() ;
    	if $forum_id = 6 $reply_address =  'xxx@yyy.com' ;
    	if $forum_id = 7 $reply_address =  'abd@hdhd.com' ;
    	return $reply_address ;
    }
    
    add_filter ('bbp_get_do_not_reply_address', 'rew_no_reply_per_forum') ;
    #192330

    In reply to: Forum/Topics Order

    Robin W
    Moderator

    it is ‘simply’ ‘showing the forums and sub forums’ – if you want it to show topics as well, then you would use a page with a list of shortcodes eg [bbp-single-forum id=$forum_id]

    This will show all the topics – you would need to do some coding to just show topic titles.

    Codex

    #191815

    Topic: add new roles

    in forum Installation
    veepay
    Participant

    Hello,
    I would like to create new roles in bbpress.
    Since this is not easy, I have used this code

    /**
     * Neue Benutzerrollen
     */
    function add_new_roles( $bbp_roles )
    {
        /* Add a role called Super-Administrator */
        $bbp_roles['bbp_super-administrator'] = array(
            'name' => 'Super-Administrator',
            'capabilities' => custom_capabilities( 'bbp_super-administrator' )
            );
    
        /* Add a role called Administrator */
        $bbp_roles['bbp_administrator'] = array(
            'name' => 'Administrator',
            'capabilities' => custom_capabilities( 'bbp_administrator' )
            );
    
        /* Add a role called VIP-Member */
        $bbp_roles['bbp_vip-member'] = array(
            'name' => 'VIP-Member',
            'capabilities' => custom_capabilities( 'bbp_vip-member' )
            );
    
        /* Add a role called Member */
        $bbp_roles['bbp_member'] = array(
            'name' => 'Member',
            'capabilities' => custom_capabilities( 'bbp_member' )
            );
    
        /* Add a role called Trial-Member */
        $bbp_roles['bbp_trial-member'] = array(
            'name' => 'Trial-Member',
            'capabilities' => custom_capabilities( 'bbp_trial-member' )
            );
    
        /* Add a role called User */
        $bbp_roles['bbp_user'] = array(
            'name' => 'User',
            'capabilities' => custom_capabilities( 'bbp_User' )
            );
     
        return $bbp_roles;
    }
     
    add_filter( 'bbp_get_dynamic_roles', 'add_new_roles', 1 );
     
    function add_role_caps_filter( $caps, $role )
    {
        /* Only filter for roles we are interested in! */
        if( $role == 'bbp_super-administrator' )
            $caps = custom_capabilities( $role );
    
        if( $role == 'bbp_administrator' )
            $caps = custom_capabilities( $role );
    
        if( $role == 'bbp_vip-member' )
            $caps = custom_capabilities( $role );
    
        if( $role == 'bbp_member' )
            $caps = custom_capabilities( $role );
    
        if( $role == 'bbp_trial-member' )
            $caps = custom_capabilities( $role );
    
        if( $role == 'bbp_user' )
            $caps = custom_capabilities( $role );
       
        return $caps;
    }
     
    add_filter( 'bbp_get_caps_for_role', 'add_role_caps_filter', 10, 2 );
     
    function custom_capabilities( $role )
    {
        switch ( $role )
        {
     
            /* Capabilities for 'Super-Administrator' role */
            case 'bbp_super-administrator':
                return array(
                
    				// Keymasters only
    				'keep_gate'             => true,
    
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    				'moderate'              => true,
    				'throttle'              => true,
    				'view_trash'            => true,
    
    				// Forum caps
    				'publish_forums'        => true,
    				'edit_forums'           => true,
    				'edit_others_forums'    => true,
    				'delete_forums'         => true,
    				'delete_others_forums'  => true,
    				'read_private_forums'   => true,
    				'read_hidden_forums'    => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    				'edit_others_topics'    => true,
    				'delete_topics'         => true,
    				'delete_others_topics'  => true,
    				'read_private_topics'   => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    				'edit_others_replies'   => true,
    				'delete_replies'        => true,
    				'delete_others_replies' => true,
    				'read_private_replies'  => true,
    
    				// Topic tag caps
    				'manage_topic_tags'     => true,
    				'edit_topic_tags'       => true,
    				'delete_topic_tags'     => true,
    				'assign_topic_tags'     => true
                );
    
            /* Capabilities for 'Administrator' role */
            case 'bbp_administrator':
                return array(
                
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    				'moderate'              => true,
    				'throttle'              => true,
    				'view_trash'            => true,
    
    				// Forum caps
    				'publish_forums'        => true,
    				'edit_forums'           => true,
    				'read_private_forums'   => true,
    				'read_hidden_forums'    => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    				'edit_others_topics'    => true,
    				'delete_topics'         => true,
    				'delete_others_topics'  => true,
    				'read_private_topics'   => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    				'edit_others_replies'   => true,
    				'delete_replies'        => true,
    				'delete_others_replies' => true,
    				'read_private_replies'  => true,
    
    				// Topic tag caps
    				'manage_topic_tags'     => true,
    				'edit_topic_tags'       => true,
    				'delete_topic_tags'     => true,
    				'assign_topic_tags'     => true,
    			);
    
            /* Capabilities for 'VIP-Member' role */
            case 'bbp_vip-member':
                return array(
                
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    
    				// Forum caps
    				'read_private_forums'   => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    
    				// Topic tag caps
    				'assign_topic_tags'     => true,
    			);
    
            /* Capabilities for 'Member' role */
            case 'bbp_member':
                return array(
                
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    
    				// Forum caps
    				'read_private_forums'   => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    
    				// Topic tag caps
    				'assign_topic_tags'     => true,
    			);
    
            /* Capabilities for 'Trial-Member' role */
            case 'bbp_trial-member':
                return array(
                
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    
    				// Forum caps
    				'read_private_forums'   => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    
    				// Topic tag caps
    				'assign_topic_tags'     => true,
    			);
    
            /* Capabilities for 'User' role */
            case 'bbp_user':
                return array(
                
    				// Primary caps
    				'spectate'              => true,
    				'participate'           => true,
    
    				// Forum caps
    				'read_private_forums'   => true,
    
    				// Topic caps
    				'publish_topics'        => true,
    				'edit_topics'           => true,
    
    				// Reply caps
    				'publish_replies'       => true,
    				'edit_replies'          => true,
    
    				// Topic tag caps
    				'assign_topic_tags'     => true,
    			);
     
                break;
     
            default :
                return $role;
        }
    }

    Unfortunately, I have the problem that the rights are all set to deny, as soon as the user changes something in his profile.
    Can I prevent that?

    In addition I have installed the plugin “bbPress Advanced Capabilities”

    VeePay

    #191810
    kdelsimone
    Participant

    @jrevillini So here’s something curious: I dropped the code into a bp-custom.php file and it works great. However now users can’t edit their posts. When they click EDIT on a post, they’re simply redirected back to the post and not the /edit page. When I remove the code, the redirect to the /edit page works. Have you observed the same?

    #191787

    In reply to: Private Forum issue

    Pascal Casier
    Moderator

    Hi @brmbk,

    You would need to add the following function into your functions.php:

    add_filter('private_title_format', 'brmbk_remove_private_title');
    function brmbk_remove_private_title($title) {
    	return '%s';
    }

    If you don’t know how or where to add it, you can also install my bbp-toolkit plugin and you will find the option in there.

    #191786
    dheerajsharma14
    Participant

    The above code does not work. It is not part of overall_header.html BUT should be part of viewtopic.php. I was able to search all the code files and place the code in right place to make my migration successful.

    However, all user replies were not mapped to users rather imported as anonymous 🙁 … On the other hand, Topics were successfully mapped to right users. Is there any help I can get in mapping those anonymous users back to right users in bbPress?

    #191764
    makingcircuits
    Participant

    @Pippin Williamson

    Your code works like charm.

    Thank you very much!!

    #191762
    cpo1wh
    Participant

    Hello, I’m a newby and having trouble getting bbpress sidebar to show on forum page. I’ve tried the various combinations with sidebar widget populated with a couple of other widgets, but still can’t see the bbpress sidebar. I have the wp tweaks installed as well. The forum page has the bbpress shortcode on it.
    Thanks for your help. The website is oandp.link.

    #191730
    Indrekkor
    Participant

    No idea if this was the most optimal way to do it, but did it like this :

    <?php 
    
    $val2=bbp_get_user_id();
    $val3=get_current_user_id( );
    if ( current_user_can( 'moderate' ) OR $val2 == $val3 ) :
        ?>
    
    Anything you want the moderator or logged in user to see.
    <?php endif; ?>
    

    Modified all the user-*****.php files like this.

    Also in other template files I modified the code so usernames are not linkable to their profile.

    #191727
    zcoin
    Participant

    The whole logic is on how to get the notifications from your own table synch with the posts table:

    global $wpdb;
    		$results = $wpdb->get_results( "SELECT notif.*, p2.post_title, p2.post_name
    								FROM YOUR_NOTIF_TABLE notif 
    		            INNER JOIN wp_posts p on p.id = (CASE WHEN notif.parent_id > 0 THEN notif.parent_id ELSE notif.topic_id END) 
    								INNER JOIN wp_posts p2 on notif.topic_id = p2.id     
    								WHERE p.post_author = $current_user->ID
    								AND notif.user_source != $current_user->ID
    								AND notif.unread = 1");
    								
    		$reply_notifications = array(); 
    #191680
    crista007
    Participant

    So basically found that there is a syntax error be created with youtube links

    <iframe width="560" height="315" src="https://www.youtube.com/embed/pt8VYOfr8To?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen><="" ifram=""></iframe>

    
    <iframe src="https://www.youtube.com/embed/pt8VYOfr8To?rel=0" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>

    the allofulscreen and ifram

    Does anyone now where in the plug this is generated.
    wp autoembed seem to do the youtube but not sure where the iframe parameters are being generated.

    this is an issue mainly seen in mobile view only as other views seem to ignore the error.

    Pascal Casier
    Moderator

    In my plugin bbp-toolkit I have used a filter on bbp_get_title_max_length.
    Feel free to install the plugin or look at the code on the use of the filter.

    #191647
    James Revillini
    Participant

    I coded something you can add to your functions.php file which will do this.

    // ---------------------------------------- REDIRECT REPLY POSTS TO TOPIC WITH REPLY ANCHOR
    function jrevillini_reply_redirect( $wp_query ) {
      if ( !function_exists('bbp_get_reply_url') ) return;
      if ( !isset($wp_query->query['reply']) ) return;
      wp_safe_redirect( bbp_get_reply_url( $wp_query->query['reply'] ) );
    }
    add_action('pre_get_posts', 'jrevillini_reply_redirect');
    
    0be1
    Participant

    Robin;

    I have attempted to add the code you provided to my child themes functions.php file and change the length value to 120. It does not reflect that in either the text on the screen or the actual field length itself. Is there something else I can try?

    Thank you…

    Shawn

    #191614
    p1s4
    Participant

    I know this topic is very old, but is the most recent i found about this argument.

    I need different colors for authors link ( topic and replys) .

    I solved using the filters bbp_get_reply_author_link and bbp_get_topic_author_link in function.php of my child theme.

    I changed the class $link_class in $author_link, you can found the original code in bbpress/includes/topics/template.php and bbpress/includes/reply/template.php.

    This is the complete code in my function.php child’s theme:

    //custom color LINK AUTHOR roles
    add_filter( 'bbp_get_reply_author_link', 'addrole_reply_author_links', 10, 2);
    add_filter( 'bbp_get_topic_author_link', 'addrole_topic_author_links', 10, 2);
    function addrole_topic_author_links($author_link, $args) {
    // Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'post_id'    => 0,
    			'link_title' => '',
    			'type'       => 'both',
    			'size'       => 80,
    			'sep'        => '&nbsp;',
    			'show_role'  => false
    		), 'get_topic_author_link' );
    
    		// Used as topic_id
    		if ( is_numeric( $args ) ) {
    			$topic_id = bbp_get_topic_id( $args );
    		} else {
    			$topic_id = bbp_get_topic_id( $r['post_id'] );
    		}
    
    		// Topic ID is good
    		if ( !empty( $topic_id ) ) {
    
    			// Get some useful topic information
    			$author_url = bbp_get_topic_author_url( $topic_id );
    			$anonymous  = bbp_is_topic_anonymous( $topic_id );
    
    			// Tweak link title if empty
    			if ( empty( $r['link_title'] ) ) {
    				$link_title = sprintf( empty( $anonymous ) ? __( 'View %s\'s profile', 'bbpress' ) : __( 'Visit %s\'s website', 'bbpress' ), bbp_get_topic_author_display_name( $topic_id ) );
    
    			// Use what was passed if not
    			} else {
    				$link_title = $r['link_title'];
    			}
    
    			// Setup title and author_links array
    			$link_title   = !empty( $link_title ) ? ' title="' . esc_attr( $link_title ) . '"' : '';
    			$author_links = array();
    
    			// Get avatar
    			if ( 'avatar' === $r['type'] || 'both' === $r['type'] ) {
    				$author_links['avatar'] = bbp_get_topic_author_avatar( $topic_id, $r['size'] );
    			}
    
    			// Get display name
    			if ( 'name' === $r['type'] || 'both' === $r['type'] ) {
    				$author_links['name'] = bbp_get_topic_author_display_name( $topic_id );
    			}
    
    			// Link class
    			//ADD ROLE CLASS TO LINK 
    			$role        = str_replace(' ', '-', strtolower(bbp_get_user_display_role( bbp_get_topic_author_id( $topic_id )) ));
    			$link_class = ' class="'.$role.' bbp-author-' . esc_attr( $r['type'] ) . '"';
    
    			// Add links if not anonymous
    			if ( empty( $anonymous ) && bbp_user_has_profile( bbp_get_topic_author_id( $topic_id ) ) ) {
    
    				$author_link = array();
    
    				// Assemble the links
    				foreach ( $author_links as $link => $link_text ) {
    					//ADD ROLE CLASS TO LINK 
    					$role        =  str_replace(' ', '-', strtolower(bbp_get_user_display_role( bbp_get_topic_author_id( $topic_id )) ));
    					$link_class = ' class="'.$role.'  bbp-author-' . esc_attr( $link ) . '"';
    					$author_link[] = sprintf( '<a href="%1$s"%2$s%3$s>%4$s</a>', esc_url( $author_url ), $link_title, $link_class, $link_text );
    				}
    
    				if ( true === $r['show_role'] ) {
    					$author_link[] = bbp_get_topic_author_role( array( 'topic_id' => $topic_id ) );
    				}
    
    				$author_link = implode( $r['sep'], $author_link );
    
    			// No links if anonymous
    			} else {
    				$author_link = implode( $r['sep'], $author_links );
    			}
    
    		} else {
    			$author_link = '';
    		}
    
    return $author_link;
    }
    
    function addrole_reply_author_links($author_link, $args) {
    
    		// Parse arguments against default values
    		$r = bbp_parse_args( $args, array(
    			'post_id'    => 0,
    			'link_title' => '',
    			'type'       => 'both',
    			'size'       => 80,
    			'sep'        => '&nbsp;',
    			'show_role'  => false
    		), 'get_reply_author_link' );
    
    		// Used as reply_id
    		if ( is_numeric( $args ) ) {
    			$reply_id = bbp_get_reply_id( $args );
    		} else {
    			$reply_id = bbp_get_reply_id( $r['post_id'] );
    		}
    
    		// Reply ID is good
    		if ( !empty( $reply_id ) ) {
    
    			// Get some useful reply information
    			$author_url = bbp_get_reply_author_url( $reply_id );
    			$anonymous  = bbp_is_reply_anonymous( $reply_id );
    
    			// Tweak link title if empty
    			if ( empty( $r['link_title'] ) ) {
    				$link_title = sprintf( empty( $anonymous ) ? __( 'View %s\'s profile', 'bbpress' ) : __( 'Visit %s\'s website', 'bbpress' ), bbp_get_reply_author_display_name( $reply_id ) );
    
    			// Use what was passed if not
    			} else {
    				$link_title = $r['link_title'];
    			}
    
    			// Setup title and author_links array
    			$link_title   = !empty( $link_title ) ? ' title="' . esc_attr( $link_title ) . '"' : '';
    			$author_links = array();
    
    			// Get avatar
    			if ( 'avatar' === $r['type'] || 'both' === $r['type'] ) {
    				$author_links['avatar'] = bbp_get_reply_author_avatar( $reply_id, $r['size'] );
    			}
    
    			// Get display name
    			if ( 'name' === $r['type']   || 'both' === $r['type'] ) {
    				$author_links['name'] = bbp_get_reply_author_display_name( $reply_id );
    			}
    
    			// Link class
    			//ADD ROLE CLASS TO LINK  
    			$role        =  str_replace(' ', '-', strtolower(bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) )));
    			$link_class = ' class="'.$role.' bbp-author-' . esc_attr( $r['type'] ) . '"';
    
    			// Add links if not anonymous and existing user
    			if ( empty( $anonymous ) && bbp_user_has_profile( bbp_get_reply_author_id( $reply_id ) ) ) {
    
    				$author_link = array();
    
    				// Assemble the links
    				foreach ( $author_links as $link => $link_text ) {
    					//ADD ROLE CLASS TO LINK 
    					$role        =  str_replace(' ', '-', strtolower(bbp_get_user_display_role( bbp_get_reply_author_id( $reply_id ) )));
    					$link_class = ' class="'.$role.'  bbp-author-' . $link . '"';
    					$author_link[] = sprintf( '<a href="%1$s"%2$s%3$s>%4$s</a>', esc_url( $author_url ), $link_title, $link_class, $link_text );
    				}
    
    				if ( true === $r['show_role'] ) {
    					$author_link[] = bbp_get_reply_author_role( array( 'reply_id' => $reply_id ) );
    				}
    
    				$author_link = implode( $r['sep'], $author_link );
    
    			// No links if anonymous
    			} else {
    				$author_link = implode( $r['sep'], $author_links );
    			}
    
    		// No replies so link is empty
    		} else {
    			$author_link = '';
    		}
    
    		return $author_link;
    	}

    Then you have to add the CSS to the new class added to author’s link.

    Hope will be useful,
    bye,
    Marco.

    #191611
    zcoin
    Participant

    Yes, I would like to , I am checking how to port my code to a standalone plugin

Viewing 25 results - 4,301 through 4,325 (of 32,481 total)
Skip to toolbar