ernstl (@ernstl)

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • @ernstl

    Participant

    Nice Job @Kaliceos and greetings from Germany 🙂

    @ernstl

    Participant

    Hi Folks,

    i came across the same problem. To prevent bbpress adding a prefix ala “Forum: lalala” to the meta title do this:

    function my_generate_titles( $new_title ){
            // reset the format to title only
    	$new_title['format'] = '%s';
    	return $new_title;
    
    }
    add_filter( 'bbp_before_title_parse_args', 'my_generate_titles' );


    @saulmarq
    you can query your title data within the function and set the $new_title[‘text’] var with the value you want to display

    Rgds from Germany,
    ernstl

    @ernstl

    Participant

    Hi Nick,

    i am pretty sure that the database structure is a little different on your install. Did a importer for an phpbb clone (CBACK). Many field were slightly different like (userID and user_id … ) guess your importer needs also modification.

    The included importer is very well writen, documented, and never would map all posts to admin user if db fields would match. What i can tell you from a 1:1 import of a hughe 6gb DB ( avatars, user fields, user custom fields, user settings, private messages ). This is a bunch of work to get it running ( if you need all of your data ). If not, easy one, few hours work.

    Rgds,
    ernstl

Viewing 3 replies - 1 through 3 (of 3 total)