Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 21,701 through 21,725 (of 26,864 total)
  • Author
    Search Results
  • #72530

    HI _ck_,

    Yeah it was a typo.

    I know that functions can have things added to them and overwitten as your plugins prove, i’m not doubting that for a second, and i’m sorry if it came across that way. What i’m saying is that while i’m able to either overwrite or add to some functions, some i’m only able to add to, and some i’m not able to either add to nor overwrite.

    Now if that’s not a bug, then cool. Really cool! But i can’t see why that would be, and i’m hoping you can point me in the right direction. You’ve said countless times it works in the same way as wordpress plugins, but a google search of how to overwrite wordpress functions leads me to (see pages below). And the code supplied here works on every function i’ve tried (so far – 9 plugins in) except BB_GET_HEADER, BB_GET_FOOTER and POST_FORM. and i’m wondering why that is.

    I’m absolutely 100% cool with the fault being at my end, it would be a relief tbh, but with no documentation and no examples or other plugins that overwrite these functions i’m totally lost.

    Basically, typos and what pepole think i’m wanting do to aside, what i really want to know is this:

    What code do i have to write so that my function is called instead of the one hard coded into template-functions.php?

    Thank you so much.

    Edit: Websites i use as a plugin resource:

    http://www.catswhocode.com/blog/how-to-overwrite-wordpress-core-functions

    https://codex.wordpress.org/Plugin_API

    http://comox.textdrive.com/pipermail/wp-hackers/2008-February/018013.html

    #72529
    _ck_
    Participant

    I assume this is just a typo in your example and not what you are really using:

    add_filter('topic_pages', 'output_what_i_want, 11');

    because the quote should close before the 11

    add_filter('topic_pages', 'output_what_i_want', 11);

    There’s nothing wrong with the action or filter triggers in bbpress (only that there are not enough of them or in the right places). The code for that is taken right out of wordpress and works fine. My dozens of plugins kinda prove they all work.

    #72527

    HI _ck_,

    thanks for this. I’m not trying to stop something being called with an add_action, but i’m sorry if i didn’t phrase it well enough. What I have found is that i cannot either get an added filter nor an action to add to certain functions in BBpress. Thats the issue i’ve hit.

    Nor am i wanting dynamic theme’s, as your wonderful plugin covers that.

    My plugin does this:

    ON activation checks for wordpress integration.

    If wordpress integrated copies the header file form the wordpress template to a directory.

    Inserts BBcode Hooks into the new file.

    Now that bit works well and dandy; but what i want in this instance is to overwrite the function BB_GET_HEADER as it’s hardcoded in the template_functions.php file.

    So here is my question, how can i/we overwrite the BB_GET_HEADER function ?

    1) can we overwrite functions in the template-functions.php file?

    2) how?

    3) is there an example of this anywhere?

    I ask not to be pedantic, but because i think you answered my post based on what you think i’m trying to do with my plugin rather than the issue at hand – namely that i can over write some functions and not others.

    You are pretty much the authority on this, so i really appreciate any help insight you might have on how to overwrite the BB_GET_HEADER function. thank you!

    #72526
    _ck_
    Participant

    You need a basic understanding of filters vs actions in WordPress before you can get this done.

    You can’t replace anything via add_action(‘post_form’… because it’s an action and not a filter. Calling it as a filter doesn’t change the fact that the hook itself is an action.

    Filters give you the opportunity to change the data passed.

    Actions are just points in the processes that you can inject activity into, but you can’t change what was before or what is coming after. No data is passed to you, no data is taken from your activity.

    You cannot change forms this way on the fly, it’s impossible (unless maybe via javascript).

    If you want dynamic themes, start with my theme switcher plugin and find some way to keep track of what theme is used without cookies (maybe sessions instead).

    #72578
    Postmatic
    Member

    Hey Kevin,

    I need to do all 3. I have that database, user table, and cookies all nicely set up… but am trying to figure out the best way to tackle the theme.

    Thanks a lot for the code. I’ll try it out on Monday. Ya, I too hope we get an answer on that bug soon. Maybe something will move on it over the weekend.

    Fingers crossed,

    Jason

    #72581

    Hi PierrottorreiP,

    May i first suggest that the first step be to not do this sort of testing on a live environment?

    This is probably the way forward in my opinion:

    – Install them all on the same databse as your wordpress instal.

    – Use different table prefixes for each one.

    – Make people register on wordpress, with the redirect going back to the forum they came from.

    – Do a little dance.

    – Make a little love.

    Also, there’s not need to post a link to your site here man, if it’s not something wrong with a specific page we can see, it’s just a random link that’s not helpful.

    #72577

    Rather than using the crazy structure of BBpress’s header.php file – actually while i’m on that can i ask why BBpress DID NOT use the same div nesting as WP so that integration was simple? madness – if you use this one, your BBpress forum should automatically look 90% like it’s in your WordPress page if you use the default theme, default K2 or sandbox.

    You will have to tweak bits of course, this isn’t fool proof, but in terms of the basics, it makes life alot easier.

    I mentioned these changes back in October, so i’m used to the copying and pasting of them now as it doesn’t look like making thing easy for the end user is part of the goal here; hence the plugin. I too hope we get an answer on the bug soon :)

    #72353

    In reply to: Bulgarian translation

    Благодаря :)

    Когато излезе бета версия на 1.0 ще обновя и превода, засега остава на стабилната 0.9

    Колкото до конкретните преводи на някои думички – за нашите нужди звучи приемливо добре :) Променили сме и още някои нещица – сещам се за “Стил” вместо “Тема”(Theme), защото Topic също се превежда като “Тема” и става объркване. Макар, че сега влиза в разрез с превода на WordPress… може би трябва да стане “Тема”(Theme) и “Дискусия”(Topic)

    Може би трябва да се произнесе някой от комисията по стандартизация ;) (Н.Бачийски?)

    А знаеш ли какъв да подновим превода в официалното хранилище с този?

    #72576

    Hi Vernal,

    In terms of integration in a software sense, you have to answer yourself this:

    1) Do they need to look the same?

    2) Do I need shared login ?

    3) Do i need shared wordpress functions (menu, sidebar, otehr cool wordpress stuff) ?

    If you answered yes to 1) and no to 2) and 3) you only need to make your style sheets and HTML look similar and dont need any integration.

    If you answered yes to 1) and 2) and no to 3) then you should be able to use the latest alpha and latest wordpress and all should be fine. Personally, i’d not ouch with with a bargepole and i’d use BBpress 0.9 and WP 2.7.1 with _ck_’s Freshly Baked Cookies plugin (link coming up in a bit).

    If you answered yes to 1) 2) and 3) then you need to use Ann’s plugin (again link coming up).

    In terms of fixing your BBpress to integrate into your wordpress theme easily, that one is simple. Replace the code in your header.php file with this:

    <body id="<?php bb_location(); ?>">
    <div id="page">
    <div id="wrapper">
    <div id="header">
    <div id="headerimg">
    <h1 id="blog-title"><!-- PUT YOUR WP LINK HERE --></h1>
    <div id="blog-description">
    <div class="description">
    <!-- PUT YOUR WP DESCRIPTION HERE -->
    </div> <!-- #description -->
    </div> <!-- #blog-description -->
    </div> <!-- #headerimg -->

    <!--
    K2 USERS
    THIS IS WHERE YOU PUT YOUR MENU CODE
    -->
    </div>

    <div id="access">
    <div class="skip-link"><a href="#content" title="Skip to content">Skip to content</a></div>
    <div id="menu">
    <!--
    SANDBOX USERS:
    THIS IS WHERE YOU PUT YOUR MENU CODE
    -->
    </div>
    </div><!-- #access -->

    <div id="container">
    <div id="primary">
    <div id="current-content">
    <div id="content">
    <div id="post">
    <div id="main">

    <h1><a>"><?php bb_option('name'); ?></a></h1>
    <?php if ( bb_get_option('description') ) : ?><p class="description"><?php bb_option('description'); ?>
    <?php endif; ?>

    <?php login_form(); ?>

    <?php if ( is_bb_profile() ) profile_menu(); ?>

    #72575
    Postmatic
    Member

    Hey kevin,

    Thanks a lot for your great info. I hope that someone in the know picks up your request.

    In the meantime, is there anything you could point me to that will at least get me started in allowing some WordPress template tags to function from within bbpress? I’m using a shared database, 2.7.1, and the latest bb alpha.

    Does that still work?

    And of course, I ‘d love to hear more about your plugin if things get fixed up on it.

    Best,

    Jason

    #72574

    Hi Chris,

    I’ve actually made a plugin that makes theme integration between BBpress and WordPress an absolute breeze (one click!), but it used to require one of my customized baseline theme’s.

    Last week I converted it to work with any standard BBpress installation but alas hit some bugs in the BBpress core. I have posted about them, but have had no reply yet. You can find the post here: https://bbpress.org/forums/topic/overwriting-template-functions

    Basically all of my original customized themes have a far more usable div nesting in the header and footer, so that it matched 3 of the most common wordpress theme’s (standard, sandboz, K2); thus anyone loading up an integrated BBpress would see their own website styling/menus etc. While not 100% accurate, it saved me a great deal of time when customising.

    But then last week i converted this into a much better plugin. It reads the directory of the wordpress theme you are using and automatically outputs the WordPress theme’s header and footer files with the necessary BBpress code injected. It effectively encapsulates your BBpress forum inside wordpress pages for seemlesss moving around (basically like simpleforums).

    But the whole thing’s on pause until we can get answer to https://bbpress.org/forums/topic/overwriting-template-functions . On a side note, as someone who is attempting to build plugins for BBpress, getting answers to questions like these to help development is really difficult, and the standard answer of “read other plugins that’s how i learnt” really doesn’t help when you come up against something new. Maybe we should have a plugin developer section (as the current plugin section has become a request section)?

    #5035

    Hi All,

    Here’s my situation…

    I have installed 3 instances of bbPress on one WordPress blog. I want to keep them separate in case I need to scrap one – but I’d like to make them so if someone creates an account on one they are logged into all.

    I currently have them sharing cookies but not a database.

    What should my next step be?

    Thanks

    http://mcmxxii.com

    #71927

    In reply to: Instant Password

    _ck_,

    I might be missing something here –

    I just installed bbPress (0.9.0.4) on a different site and still get the same message with instant password. I don’t have bbPress and WordPress integrated.

    What could I be doing wrong?

    Here’s the link – just started building it live yesterday so not much action yet…

    http://mcmxxii.com/

    #72573
    chrishajer
    Participant

    There is no simple theme integration solution that I am aware of. Because bbPress is in a state of flux, many people are saving their energy for developing for it once 1.0 stable comes out.

    #5034
    Postmatic
    Member

    I’m using WordPress 2.7.1 and just installed the latest alpha of bbpress. Looking around I see lots of very old chatter about Themepress being the best solution for sharing a theme between the two products.. but it doesn’t seem to be available/work anymore.

    So what’s the latest? I’m going to make the assumption that someone picked up on themepress’s work and has come up with a solution to integrate WordPress and Bbpress themes. What’s the latest and greatest?

    Best,

    Jason

    #72554

    In reply to: Install help

    chrishajer
    Participant

    1. No you do not need WordPress

    2. You might. If you want to change the table prefix from bb_ or you need to tell the software that your database lives on a host different than localhost, then YES, you need to Show Advanced Settings. I think the host name is probably most likely.

    #5032

    Topic: Install help

    in forum Installation
    DTI
    Member

    I take some days to install the bbpress forum software and still can’t pass step 1.

    I have checked many topics at “install”, “installation” and “config.php” etc. in FORUMS and try it.

    After read these topics, I was confused.

    1. If I only need forum and don’t need blog. Do I need install WordPress?

    2. Do I need to fill the Show Advanced Setting in step 1? I checked the bb-config-sample.php file, it prompt “If you are installing for the first time, leave them here.”

    #59343

    In reply to: Adding a new User Type

    steveg190
    Member

    I’ve tried using fel64’s method above but I’m not able to make it work at all, so I thought I would try something different. Since he mentioned using the $bb_roles->add_role() that already exists in functions.bb-capabilites.php I thought I could work with that. Bascially, I want to put my own additions and modified base roles (aside from admin and keymaster, obviously) into a plugin that replaces the existing roles function. I’ve sucessfuly done this via a dirty hack of the core file but I’d really love to migrate my changes to a plugin.

    Is it not possible to just do bascially a copy-paste of the bb_init_roles function from functions.bb-capabilites.php, rename it, make new roles and modify existing ones, then use something like add_filter('init_roles','my_bb_init_roles') to hook it to init_roles? Obviously I’m a complete noob to this since my attempts are completely failing and what I know is just scraped together from looking at other plugins and some limited reading on making WordPress plugins. Any assistance here would be greatly appreciated.

    #72493

    In reply to: Hundreds of subforums

    chrishajer
    Participant

    Where did the automatic part come from?

    I imagine you could create a script to create a forum automatically when there is a new movie posted, but this is not something that is built in to bbPress? This would be some custom stuff you’d need to do. It would be pretty neat.

    For the older versions of bbPress, there was bbSync https://bbpress.org/plugins/topic/bbsync/ which would create a new topic in the forum for every WordPress post (I believe that’s how it worked.) You could do something similar (but create new forums for every new movie.

    #72519
    chrishajer
    Participant

    To integrate 0.9.* with WordPress 2.5 and later, you should read this:

    https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101#post-17409

    That post has a lot of good information. I agree the documentation needs to be better.

    #72501
    Sam Bauers
    Participant

    If you are using bbPress 1.0-alpha you can use the “bbPress Live” plugin for WordPress.

    #72518
    xbsteve
    Member

    For those of you who are having this problem, which appears to be a large amount… the answer is simple bbPress 0.9 DOES NOT SUPPORT all those new keys past WordPress 2.5. If you are trying to install, apparently you have to use the beta bbPress 1.0.

    #5024
    xbsteve
    Member

    I am running WordPress 2.7.1

    I just downloaded the latest bbPress from this website.

    According to the screencast I should be seeing a request for AUTH, SECURE_AUTH, LOGGED_IN, and NONCE keys. However, the latest installer seems to be asking for the old SECRET_KEY and nothing else.

    Why is this? Is this a reversion error? If this is not an error, you need disambiguation comments in many places, including on the website, in the screencast, and in the installer.

    #72516

    In reply to: WordPress Integration

    WP 2.7.1 and bbPress 0.9.0.4 can’t be integrated natively because of the way they handle cookies. Either you downgrade the method used by WP or upgrade the method used by bbPress. Both the method can be done via plugins (You only need to use one of them).

    For WP plugin:

    http://superann.com/2009/02/26/wordpress-26-27-bbpress-09-cookie-integration-plugin/

    For bbPress plugin:

    https://bbpress.org/plugins/topic/freshly-baked-cookies/

    I have used the bbPress plugin to get them in sync.

    Hope that helps. :)

    #5022

    Hello,

    Please help me with bbpress -wordpress integration.

    I used the packages with following versions:

    BBPress: 0.9.0.4

    WordPress 2.7.1.

    I did all steps during the installation for wordpress integration and tried many other steps. I read many articles related to this but it doesn’t work!!

    Here I am using XAMPP and developed the site on my local server. The path of packages installation is:

    http://localhost/myproject/blog

    http://localhost/myproject/forum

    I can login separately from these two packages but couldn’t login to two packages same time using any one of them

    I did the following steps:

    1. Forum-> WordPress Integration

    WordPress address (URL) = http://localhost/myproject/blog

    Blog address (URL) = http://localhost/myproject/blog

    WordPress database secret = 2t3&d#@9QQI6mpk3XE#8J3(mk^yQGeu28qXAXvn)W^Cvx!G09B(w983oT#V8QJfH

    Note: check with blog secret characters and are same.

    Copy the following to blog/wp-config.php

    define(‘COOKIE_DOMAIN’, ”);

    define(‘COOKIEPATH’, ‘/myproject/’);

    Also created the entry in wp-config.php

    define(‘SECRET_KEY’, ‘r.@Vk%kM`DC&}V\:}5DnXg#e%X!,nVCdIX=<&feYyLyUSuseGp3xN.T+qL1*/|p?’);

    In bb-config.php

    define(‘BB_SECRET_KEY’, ‘r.@Vk%kM`DC&}V\:}5DnXg#e%X!,nVCdIX=<&feYyLyUSuseGp3xN.T+qL1*/|p?’);

    But after this, nothing get happen

    please help me.

    Thanks in advance.

Viewing 25 results - 21,701 through 21,725 (of 26,864 total)
Skip to toolbar