Scordisian (@scordisian)

Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • In reply to: Child theme questions

    Scordisian
    Participant

    @scordisian

    Oh, if I am finished can I share the Bootstrap theme somewhere here on the site?

    In reply to: Child theme questions

    Scordisian
    Participant

    @scordisian

    Actually, breadcrumbs as well and I am puzzled by the Extras folder in the templates. Can those files just be moved into the mychild/bbpress/ folder? I checked the documentation but I couldn’t find a clear answer.

    In reply to: Child theme questions

    Scordisian
    Participant

    @scordisian

    Oh the description box and the tags. This is what I did with regard to the description box thus far:

    function change_single_topic_description_class( $output, $r, $args ) {
        $new_before = str_replace( 'bbp-template-notice info', 'alert alert-info', $r['before'] );
    
        $output = str_replace( $r['before'], $new_before, $output );
    
        return $output;
    }
    add_filter( 'bbp_get_single_topic_description', 'change_single_topic_description_class', 10, 3 );
    In reply to: Child theme questions

    Scordisian
    Participant

    @scordisian

    The way I see it now I will just overwrite those parts in the child theme functions.php file, please correct me if I am wrong with this approach.

    In reply to: Child theme questions

    Scordisian
    Participant

    @scordisian

    I want to change styling by renaming classes into Bootstrap 5 classes. It increases the loading speed exponentially as I use Livecanvas on my site. Is there a way for me to do this or do I need to edit those specific files?

    In reply to: Tag html

    Scordisian
    Participant

    @scordisian

    Yea I am working with a child theme right now. I am just asking because I see some other child themes with the file bbpress.php in there. I am still reading up, but just wondered if there is a separate file beside the child theme functions file that can be used. I am creating a Bootstrap forum theme, hence the questions.

    In reply to: Tag html

    Scordisian
    Participant

    @scordisian

    Thnx for the quick reply. Just to make sure, you mean the bbpress-functions.php file right?

    Also, I noticed some other pieces of code that are not directly found in the template files like these. So a seperate bbpress file might be very handy.

    In reply to: Unassigned Topics

    Scordisian
    Participant

    @scordisian

    I fixed it, here is for future reference:

    UPDATE wpxn_posts SET post_parent=3270 WHERE post_type=’topic’;

    In reply to: Unassigned Topics

    Scordisian
    Participant

    @scordisian

    I’ve been going through the script a bit and the database. In my opinion I could assign all post_type with the post_parent being 3270 in my case that are currently set to 0.

    Now before I go do this I would appreciate some feedback,
    a. is this possible?
    b. what sql command would be the best for this?

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