Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 15,376 through 15,400 (of 26,846 total)
  • Author
    Search Results
  • #107946
    mixlplex2
    Member

    @JohnJamesJacoby – First off, excellent work. Beautiful system. However, sorry to disagree with you, but I believe Anthony is right that there’s a problem with the plugin with both logging in and logging out (particularly when using the sidebar widget). Here’s why…

    I’m testing with the bbPress RC4 installed in a WP 3.2.1 Network config using sub-directory instead of sub-domain (no BuddyPress installed, just bbPress … no other plugins installed. – I have also tested with another sidebar login plugin and everything worked fine, but I’ve uninstalled it, and when I use the bbPress login widget I get problems.) If I use the bbPress login widget and enter the right credentials it logs me in and redirects me to [site]/[site]/ which obviously a problem.

    When I inspect the Login button element for the bbPress login widget I see:

    <div class="bbp-submit-wrapper">
    <input class="user-submit" type="submit" tabindex="104" value="Log In" name="user-submit">
    <input type="hidden" value="1" name="user-cookie">
    <input type="hidden" value="http://[host]/[site]/[site]/" name="redirect_to">
    <input id="_wpnonce" type="hidden" value="299cce3d83" name="_wpnonce">
    <input type="hidden" value="/[site]/" name="_wp_http_referer">
    </div>

    Since the problem is with the redirect_to hidden value, my guess is that there’s a problem with either

    $redirect_to = apply_filters( ‘bbp_user_login_redirect_to’, ” );

    or

    bbp_redirect_to_field( $redirect_to );

    which are called from bbp_user_login_fields() in the bbp-user-template.php file.

    ….

    Moving on to Log out

    If you correct the URL so that you’re back a the page for your site, you can now see the Gravitar, your name, and the log out link.

    Again, inspecting the log out element we get:

    <a href="http://[host]/[site]/wp-login.php?action=logout&_wpnonce=c08ad91218&redirect_to=http%3A%2F%2F[host]%2F[site]%2F[site]%2F%3Floggedout%3Dtrue">Log Out</a>

    Again, the link to the wp-login.php is fine… it’s the redirect_to afterwards that has the site name twice that’s the problem.

    I’ve also noticed that if the bbPress plugins is activated the WordPress meta for log out includes the redirect_to [site]/[site]/

    If the bbPress plugin is deactivated the native WordPress meta for log out reverts back to normal (without the redirect_to).

    With bbPress installed:

    <a href="http://[host]/[site]/wp-login.php?action=logout&_wpnonce=07d2823a80&redirect_to=http%3A%2F%2F[host]%2F[site]%2F[site]%2F%3Floggedout%3Dtrue">Log out</a>

    Without bbPress installed:

    <a href="http://[host]/[site]/wp-login.php?action=logout&_wpnonce=07d2823a80">Log out</a>

    #108459
    quitter
    Member

    I just added a “Register” link in the login widget and a page for registering/lost pass but I didn’t realize this is an issue.

    Some plugin like this one might work but it is just the first I looked at and didn’t try it yet. You are right though, some non-trivial amount of people will never come back because they can’t remember the password they use everywhere.

    https://wordpress.org/extend/plugins/change-password-e-mail/

    enderandrew
    Participant

    BuddyPress 1.5 asks if you’d like to point to an existing stand-alone bbPress install. Should I point it at the bbPress 2.0 install, or disable forums via BuddyPress as suggested above?

    And I’m assuming you’d want to turn on the BuddyPress component of: “Site Tracking: Make BuddyPress aware of new posts and new comments from your site.”

    bbPress posts are basically WordPress posts (using custom post types). I’m assuming this Site Tracking feature is how bbPress posts show up in the BuddyPress activity stream.

    #107860

    You’ll want to contact WangGuard’s plugin author here:

    https://wordpress.org/extend/plugins/wangguard/

    Seems the problem is unrelated to bbPress. There are several other users with issues too.

    https://wordpress.org/tags/wangguard

    #92816
    primehifi
    Member

    I wasn’t so concerned about fixing it as I was about getting access to to the general settings again.

    here’s the fix on this website I found, http://tadej.eu/wordpress-timezone-exception-fix-hack

    #39715
    honustudios
    Member

    I’m running the latest dev version of the plugin, version 3476, in hopes that it would have solved my issue, but no luck.

    I was getting the error mentioned in this thread http://bbpress.org/forums/topic/tags-archives-page-are-broken-in-bbp-20-rc2-and-rc3#post-90903

    I downloaded the branch code after reading the above issue and it’s resolution. Then, I started getting the WordPress “Hands off, partner!” error which is a 500 Internal Server error in Firebug.

    Any ideas about what could be causing the page to not display correctly?

    Thanks so much for your help and the great plugin.

    Bret

    #39714
    taburl
    Member

    Hi folks,

    Always one to make things twice as hard as they need be, I started out designing a theme for the standalone product and I’d now like to change gears and port it to the plugin version.

    Essentially, I didn’t think I’d use WordPress for my main site… but I’ve since come to change my mind. Now, I’ve got a nice custom theme for both my WordPress installation and a nice theme for my bbPress installation.

    At this point, I can’t decide if I’d be best to keep them separated and use the integration options or to sit and re-theme everything with the plugin version. If I were to continue to use the standalone, is it possible to create widgets similar to the “recent topics” and others created by the plugin version? And subsequently, is there a way to use shortcodes for embedding bbPress into WordPress pages? heh

    Sorry for the novel…

    #39713

    Topic: permalinks?

    in forum Troubleshooting
    miak
    Member

    I just installed the bbpress plugin for WordPress and also the BuddyPress plugin. When i create a new forum through bbpress the permalinks are coming out to be website.com/forums/forum/forumname

    what could be causing this?

    #39711

    I use this conde in bb-config.php for my integration with wordpress 2.9.2

    if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {

    define( ‘WP_USE_THEMES’, false );

    //

    // You will need to get the ABSOLUTE path to this file |

    // |/

    require_once( $_SERVER[“DOCUMENT_ROOT”].’/wp-load.php’ );

    header( “HTTP/1.1 200 OK” );

    header( “Status: 200 All rosy” );

    }

    /**

    now I upadated wordpress to 3.2.1 but I get an error, my forum home not load, the error log is blank, but if I comment the above code it work.

    I think that the problem is incompatible with that version

    Alessio

    Decided to abandon this approach. Now using deep integration and handling all accounts in wordpress, in order to easily customize registration.

    vatoloco2
    Member

    No unfortunately even with RC2 I didn’t get that activity stream working!

    This is my setup:

    Install WP 3.2.1

    Install bbPress (first RC2 then RC3 now latest from trac.wordpress.org)

    Install Buddypress (first beta1 then beta2 now latest from trac…)

    Disable Discussion forums in Buddypress

    With this setup I can’t see any bbPress related stuff in Buddypress activity. I have no other problems with this setup & combo! Am I doing something wrong?

    Yeahp, no modifications to the forum or BuddyPress, just using the latest beta/RC versions of both. BuddyPress integration was built-in with bbPress RC2 (https://wordpress.org/extend/plugins/bbpress/changelog/). Should be working for ya. What’s your site?

    vatoloco2
    Member

    I am also using the beta/RC of both! That Means bbpress 2.0RC3 and Buddypress 1.5 beta2. In addition I am also up2date with latest changes by using latest branch / trunk of both via trac.wordpress.org.

    As stated earlier I have no problems at all with the combo of both. The only thing that doesn’t work is the fact that any bbpress forum post / topic / reply won’t appear in the buddypress activity stream.

    So how did InterMike of allmad.org got this done? Any hint?

    #108291

    If using bbPress 2.0, it obeys your WordPress Gravatar settings.

    #108357
    Andre
    Participant

    Have you considered using the plugin instead of the standalone version?

    #100625
    Gautam Gupta
    Participant

    anointed: He is talking about bbPress standalone. :)

    polimon: Please go to https://bbpress.trac.wordpress.org/browser/trunk and when you would scroll down, you would see “Download in other formats: Zip Archive”, click “Zip Archive” and upload the extracted appropriate directory into the appropriate directory on the server. :)

    #105725
    Gautam Gupta
    Participant

    anointed: He is talking about bbPress standalone. :)

    polimon: Please go to https://bbpress.trac.wordpress.org/browser/trunk and when you would scroll down, you would see “Download in other formats: Zip Archive”, click “Zip Archive” and upload the extracted appropriate directory into the appropriate directory on the server. :)

    #100624
    Anointed
    Participant
    #105724
    Anointed
    Participant
    #39706
    Milan Petrovic
    Participant

    I have just released the plugin for WordPress that adds attachments to bbPress 2.0 plugin. To download it, go to WordPress.org or Dev4Press:

    http://wordpress.org/extend/plugins/gd-bbpress-attachments/

    http://www.dev4press.com/plugins/gd-bbpress-attachments/

    Milan

    #39701
    Meakin
    Member

    Hey, I’m trying to install BBPress on my current wordpress site and getting very confused. First of all I tried to install it as a standalone site on 2 servers and after uploading all of the files and trying to access the installer – it would just be a blank page.

    So then I installed it as a plugin which worked, but I can’t seem to work out how to display the forum in my current theme. If I switch on TwentyTen, the forum displays properly, however if I turn on my theme nothing displays. I’ve duplicated the files from the bbp-themes/BBP-TwentyTen into my custom theme folder as a ‘child theme’ – which appears to be working (I can see all of the files when I go to appearance / editior), but it still will not show up the forum. I’ve also added the line to functions.php that I should’ve – so there’s no error messages about BBPress not being able to use the custom theme files

    Here’s where the main forum should appear: http://ibiza2011.info/forum – it seems to be picking up the navigation, but not displaying the forum. I then created a forum in the admin – http://ibiza2011.info/forum/club-tickets/ but nothing displays their either!!

    Please help someone :)

    #39694

    I am a beginner to wordpress. I wish to implement bbpress to my custom theme http://www.soelvinvestor.dk in the “main page” area.

    I have uploaded bbpress folder to my www/ area thru ftp which can be seen here http://www.soelvinvestor.dk/bbpress/ It seems to be working fine, however I cannot log into the “admin area” of bbpress. I have tried to register a new user and it shows up in wordpress administration.

    Is there any way I can implement it into the design and not this “stand-alone” version of bbpress?

    #108251
    jczerwonka
    Member

    @Gustav820

    If you have a page set up as your front page in WordPress Settings->Reading, bbPress will use the title of that page.

    If no front page is specified, then bbPress will use the default of ‘Home’, but you change this by modifying your translation. You can do this by including the following code in your functions.php:

    add_filter( 'gettext', 'my_translations', 10, 3 );

    function my_translations( $translation, $text, $domain ) {
    if( 'Home' == $text )
    $translation = $translations->translate( 'My Homepage' );
    }

    I hope this helps.

    John

    #107992
    simplethemes.com
    Participant

    Yes, this should be possible with CSS and core WordPress post classes.

    Just add something like this to your style.css:

    .post.category-html h2 {
    padding-left: 32px;
    background: url(http://cdn5.iconfinder.com/data/icons/fatcow/32x32/file_extension_html.png) no-repeat 0 8px;
    }

    .post.category-php h2 {
    padding-left: 32px;
    background: url(http://cdn1.iconfinder.com/data/icons/fatcow/32x32_0680/page_white_php.png) no-repeat 0 8px;
    }

    .post.category-css h2 {
    padding-left: 32px;
    background: url(http://cdn1.iconfinder.com/data/icons/fatcow/32x32_0300/css_valid.png) no-repeat 0 8px;
    }

    Then put your posts in categories of slug ‘php’,’html’,’css’.

    *Note – You should also download the referenced icons/images to your server instead of linking to theirs.

    #107991
    sparker3669
    Member

    Ok was wondering if a post icon could be added to post. I would like to have icons for php css and html as well as a general wordpress icon and my site logo as an icon.

    I have tried several plugins and they don’t seem to work. If this is not doable then no biggie was just thinking it would be nice to dress up the post some.

Viewing 25 results - 15,376 through 15,400 (of 26,846 total)
Skip to toolbar