Trent Adams (@trent)

Forum Replies Created

Viewing 25 replies - 826 through 850 (of 1,181 total)
  • @trent

    Member

    Great work Sam. I am sure if Billy is still around he will be thankful for your great work!

    Trent

    @trent

    Member

    Have you looked at the WP translation plugin? I think that could be altered to do something for bbPress. I haven’t looked at it, but it should be pretty simple to integrate.

    Trent

    In reply to: Memberlist plugin

    @trent

    Member

    As of 0.74, I believe it deletes the users in the core if you delete them in the admin, therefore, you should just change the plugin to delete the user as well. At least, it should work that way!

    Trent

    In reply to: Memberlist plugin

    @trent

    Member

    Better ask Ardentfrost for sure, but this was written when we were not deleting the users in the core, just updating them as deleted, but not ‘deleting them for real’.

    The changes in the core now have them deleting users for real. It is up to you guys what you want the plugin to do.

    Even with this plugin now, WP integrated users have the users gone for real.

    Trent

    @trent

    Member

    I am mountain time with a server in mountain time and I still had to tell config.php to use Eastern time for posts to show up correctly. That is part of the reason Micheal is auditing the time functions for the release of 0.8 coming out fairly soon.

    Trent

    In reply to: Changing a Domain name

    @trent

    Member

    Good tutorial from Podz! Seen it before, but forgot about it! Thanks for posting Spencer!

    Good old bbPress eh….change the URL’s in the config.php and presto!

    Trent

    @trent

    Member

    As a note to others as well, make sure you READ the documentation for this! If you don’t run your plugins through the readme validator and correct all the errors, the plugin will not show up correctly. As well, the plugin code must be in the same format for system to create post in plugin page with the right name, author, version, etc.

    If you do make a mistake, upload a new one and the system will automatically change when it runs the script again (every hour or 2).

    Hope that helps out as well.

    Trent

    @trent

    Member

    This forum has the same argument on replies. For example my URL for this post after I click submit will be:

    https://bbpress.org/forums/topic/592?replies=2

    Only consulation in short run is the URL works fine with yanking the replies part off the URL if you quote a thread somewhere else:

    https://bbpress.org/forums/topic/592

    The URL works as a way to show how many posts are in a thread, works as a way for feed readers of RSS to know which post is which, works for others to know as well. Not sure if Devs may have a better way to do this, but thanks for bringing it up!

    Trent

    @trent

    Member

    Saw you posted your plugin quite awhile ago! Seems my post was there for others more than you! Glad you figured it out!

    Trent

    @trent

    Member

    Nice plugin Jim!

    Trent

    In reply to: Changing a Domain name

    @trent

    Member

    Changing domain for WP isn’t as bad as you think Orion. Just the options table in the database more than anything will give you access to change the rest! wp_options

    Trent

    @trent

    Member

    If you want to have it in the plugin repository for bbPress, check out:

    https://bbpress.org/plugins/add/

    Saw you posted another thread as well for this plugin!

    https://bbpress.org/forums/topic/591?replies=1

    Trent

    @trent

    Member

    Once you get the email from mdawaffe about your plugin directory URL, then you need to head over to this page and download a client to connect to the system:

    http://subversion.tigris.org/project_packages.html

    For Windows, I actually picked one like TortoiseSVN as it is graphical, but it is up to you.

    Each program has it’s own way to work, but I found a graphical tutorial on the web for reference. Just do a search for your client name that you are using. It works great!

    In terms of what to upload and in what folders of your directory after you are asked to login, check out:

    https://bbpress.org/plugins/add/info.php

    Hope that gives you a start!

    Trent

    In reply to: Plugin: Summon user

    @trent

    Member

    I forgot about this one Thomas! Nice, I am using this one for sure!

    Trent

    @trent

    Member

    By default, the bbpress-integration.php plugin that you are using in WordPress brings over the registrations from bbPress and gives them the default role that you have for WordPress. That would mean that if they are given author status then that would be the default role for new members in WordPress. Maybe check that out.

    I tested this on my test forum and then changed the default role from subscriber to admin and sure enough the new user that I created came across in WP as an admin.

    Trent

    @trent

    Member

    I am not really the best one to answer on this particular issue, so I appologize in advance, but if I understand what you are asking based on previous information in post, /bb-includes/function.php has all the different bbPress functions to call and template-functions.php have specific template related calls.

    If that is useless information because I am not quite understanding, I would imagine Ardentfrost or someone else should be along with a better answer.

    Trent

    @trent

    Member

    Check out /bb-includes/template-functions.php for the list of things you can use for calls.

    Trent

    @trent

    Member

    I would just use the full path on the server:

    <?php include

    ('var/usr/www/yourdirectory/whatever.file'); ?>

    That should work shouldn’t it?

    Referencing this post

    Trent

    @trent

    Member

    Not sure as I haven’t looked into it too much yet, but I would suggest looking at some of the php files in the admin such as /admin/users.php to find out how it is calling the header, track that down and then add your functions and javascript.

    Trent

    @trent

    Member

    Looking back at the code I put, I must have been tired! Great to hear you got it going Orion!

    Trent

    @trent

    Member

    If you are trying to get victorylogo.gif, I would use:

    <?php $victorylogo = (bb_get_option('uri') . 'my-templates/images/victorylogo.gif'); ?>

    <?php echo $stylesheet; ?>

    There might be an easier way, but I am a ‘may not be pretty, but works’ type of guy….

    Trent

    @trent

    Member

    <?php bb_stylesheet_uri(); ?> does work for me!?

    Anyways, you can also do something like following I did in bbpress-mobile plugin:

    <?php $stylesheet = (bb_get_option('uri') . 'my-templates/mobile.css'); ?>

    <link rel="stylesheet" href="<?php echo $stylesheet; ?>" type="text/css" />

    Trent

    In reply to: RSS links not working

    @trent

    Member

    Oh yeah……old browsers don’t know enough to drop feed: before the URL. It works better if you only use the URL of feed without it!

    Trent

    @trent

    Member

    Hmm….maybe the function name changed? What version of bbPress? 0.75?

    Trent

    In reply to: RSS links not working

    @trent

    Member

    Strange. I have XP service release 2 with newest version of IE6 (prior to having to upgrade to IE7) and can see my feeds and the ones of the forum.

    https://bbpress.org/forums/rss/

    What version of IE6 are you running and what URL?

    Trent

Viewing 25 replies - 826 through 850 (of 1,181 total)