Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 20,051 through 20,075 (of 32,505 total)
#93850

In reply to: Pages from WordPress

MathiasB
Member

Just enable WordPress functions in bbPress and paste this in your header:

<?php wp_page_menu(); ?>

If you wanna have a homelink:

<?php wp_page_menu('show_home=Home'); ?>

#93871

you can replicate the same code for menu on bbPress side and it should work fine.

Regarding conflicts, it was never made to work like that (Deep integration) and if there is some conflict you can only fix it yourself else you are out of luck.

#93834
wblogan
Member

The “deep integration” code still breaks my site, but the link to the style sheet in header.php wasn’t working because I had bb-styles.php in the wrong place.

Also I’m loading WordPress from wp-blog-header.php instead of wp-load.php.

The only thing that remains is to figure out how to make changes to the bbPress pages without making changes to the whole site since it’s calling two style sheets. I’ve spent no small amount of time with “inspect element” and “firebug” in Google Chrome trying to find the styles I want to change on the bbPress pages. You could tell me in short order I’m sure how to make the changes I want. But as I said, I wanted to get all of the kinks worked out before I go public with it.

When I get it all figured out I’m thinking I’ll publish the info specific to integrating Twentyten and Kakumei (for those of us unambitious, ignorant folks who don’t have the where with all to do something original). I assume that you won’t mind me referencing your tutorial? No need to reinvent the wheel!

Thanks again for your tutorial, your interest and your help!

#93869
kikko088
Member

thank you very very much! I save your fantastic page for the future! :D

kikko088

#93868

You will need to fix file permissions for them to work. Take a look at this – http://blog.ashfame.com/2009/09/fix-my-templates-my-plugins-folder-not-working-bbpress/

Also for your handy reference, I share my bbPress resource page with you – http://blog.ashfame.com/bbpress/

Let me know if you are stuck with anything again. I will be happy to help you out :)

#93867
kikko088
Member

if I put the theme on my-templates don’t work, if I put the theme on bb-templates it works :(

kikko088 :D

#93866

Glad that you got it working. these things can be annoying at times. Just stay calm and apply brains :)

What for the theme?

#93629
Dakcenturi
Member

Here is a section of the view source:

<tr class=”form-field”>

<th scope=”row”>

<label for=”first_name”>First name</label>

</th>

<td>

<input name=”first_name” id=”first_name” type=”text” value=”” />

</td>

</tr>

Now I tried and none of them made any noticeable change.:

.input{

background-color: #171717;

color: #00CC00;

}

#first_name{

background-color: #171717;

color: #00CC00;

}

.form-field{

background-color: #171717;

color: #00CC00;

}

In order to get it to work on one of the other forms I actually put the style in the input code, but I don’t know how to access the input code as it is being called via php and isn’t a .php file in the theme.

#93865
kikko088
Member

:D now it works, thank you.

For the theme?

kikko088

#92034

This issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)

P.S. – I actually looked at the plugin’s code today!

Don’t know what the BackPress has to do here!

#78878

This issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)

P.S. – I actually looked at the plugin’s code today!

Don’t know what the BackPress has to do here!

#92551

This issue can be solved by the bbPress integration plugin for WordPress. Keep the plugin activated, it generates the required cookies on WordPress authentication hooks which otherwise are not created for accessing bbPress dashboard (or admin panel)

P.S. – I actually looked at the plugin’s code today!

#93863
kikko088
Member

I try to delete and upload, i try to overwrite two times but nothing… :( the same problem, the permission are 770

#93833

Instead of loading WordPress from wp-load.php, load it from wp-blog-header.php.

I checked the header.php file of Twentyten and there is nothing in it that would stop you from making changes. Follow the tutorial and you will be fine.

This is the line before which you should add the link to bb-style.css

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />

Rest is in the tutorial.

#93832
wblogan
Member

Well, I don’t quite have it done. I can’t figure out why your code breaks the site as I mentioned earlier. Do I need it? (I forgot to mention that your code calls wp-blog-header.php, and another tutorial I referenced calls wp-load.php. I know that requiring wp-load.php is a requirement; but what about wp-blog-header.php?)

Also, I don’t know how to link the style sheet to bbPress because I can’t figure out how to get the link in the header. I don’t understand header.php in Twentyten. Can you help me with that?

I’ll post a link when I get it published, but I’m doing all of this on a local mirror of my public site.

#93829
wblogan
Member

I’ve gotten this to work this way so far:

Put this line in bb-config.php

require_once( '/your/full/path/wp-load.php');

In the files listed below, replace

<?php bb_get_header(); ?> with

<?php get_header(); ?><div id="container">
<div id="content" role="main">
<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>

and <?php bb_get_footer(); ?> with

</div>
</div>
<?php get_footer(); ?>

404.php

edit-post.php

favorites.php

forum.php

front-page.php

login.php

password-reset.php

profile-base.php

profile-edit.php

profile.php

register.php

register-success.php

search.php

stats.php

tag-single.php

tags.php

topic.php

I use Twentyten with one right sidebar. I decided I didn’t want it in the bbPress section of the site. If you want it, replace the footer code above with this:

</div>
<?php get_sidebar(); ?><div id="primary" class="widget-area" role="complimentary">
</div><?php get_footer(); ?>

I want bbPress to fill the width of the “container”. I can the following in-line style in each page (<div id=”content” role=”main” style=”width: 95%; font-size: 1.2em;”>`), but I’m sure I can use the style sheet to define a class or something and do it right – that is once I get Twentyten to read the bbPress style sheet.

I’d also like to rearrange the objects on the page, which I may also work on once I can use the style sheet.

May not like it when I’m done, but it’s been a learning experience!

#93828
wblogan
Member

Will do. Thanks! Sweet dreams. :)

#93827

I haven’t played with twentyten code yet so can’t say if that will be easy for you to follow up. I am in my bed right now, typing this on my mobile.↲You do one thing, get back to me tomorrow & I will tell you. I am quite busy with my schedule so if I don’t come back on my own, hit me an email > ashishsainiashfameatgmaildotcom↲

#93826
wblogan
Member

Perhaps I should have included this info in my last reply. This is the error I get when using the code you recommended in bb-config.php:

Parse error: syntax error, unexpected ‘;’ in /myfullpath/public_html/bbpress/bb-config.php on line 15

Line 15: if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST'))

FWIW, I learned from another tutorial that I needed to put this code at the end of the bb-config.php file:

require_once( '/myfullpath/public_html/wp-load.php');

I found that the integration will not work without it.

Viewing 25 results - 20,051 through 20,075 (of 32,505 total)
Skip to toolbar