Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum css'

Viewing 25 results - 76 through 100 (of 2,719 total)
  • Author
    Search Results
  • integratedcourse
    Participant

    Thank you! This shows the output of shortcode [bbp-forum-index]. I just want the grid of the forums, not the discussions box below.

    bbp-forum-index output

    If am hoping there is CSS where I can specify showing these things is ‘false’

    1) Remove the ‘Discussions’ Box

    2) Remove the two statements ‘Viewing 4 of 4 forums’ and ‘Viewing 1 of 1 discussions’

    I hope that makes sense!

    integratedcourse
    Participant

    Hello. I am hoping there is a method, maybe CSS, to remove the “All Discussions” portion of the BBpress forum grid display. I just want to present the grid of the forums. I do not want it to have the 2nd part that shows the latest activity. Thank you!

    #232814
    cassel
    Participant

    That css code works!

    And to answer your question, I use that pdf generator plugin for blog posts. I don’t know if it has anything to do with forum posts. Which is why I never made the connection.

    #232769
    Robin W
    Moderator

    ok, it is a theme issue.

    2 further things to suggest

    you could look at this

    https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ item 8

    and/or you could add this to your custom css

    #bbpress-forums {
    	width: 90% !important;
    }

    Otherwise you need to reach out to the theme authors

    #232692
    simon_a6
    Participant

    When I do that, it takes over the CSS of the page, so where we have full width in the top of the site, when I paste this in: [bbp-forum-index] , it causes ALL the full width to go “boxed”.
    Even if I set the element such as a Full Width Row, it still boxes it all.

    #232342
    p411m99
    Participant

    I have read on here all day and tried some additional css doing amongst other things that have been suggested…I cannot for the life of me get rid of the bbPress Forum title on the following page…
    https://hookdgear.com/forums
    Any suggestions? I did not initially create a forum page as I simply went through the forums section in wordpress to create the forum layout…I create a page with a permalink to /forums to see if that helped but the title is still there…thank you in advance for your help

    #232076
    Robin W
    Moderator

    your theme is hiding the bbpress breadcrumbs in

    https://renaloo.com/wp-content/themes/digiqole-child/assets/css/custom.css line 2281

    This function will add a reference to the breadcrumb

    add_action ('bbp_template_before_single_topic' , 'rew_forum') ;
    
    function rew_forum () {
    	echo '<div class="rew_forum">' ;
    	$topic_id = bbp_get_reply_topic_id() ;
    	$forum_id = bbp_get_topic_forum_id() ;
    	echo '<a href="' . esc_url( bbp_get_forum_permalink( $forum_id ) ) . '" class="bbp-breadcrumb-forum">' . bbp_get_forum_title( $forum_id ).'</a>' ;
    	echo '</div>' ;
    }

    Put this in your child theme’s function file –

    ie wp-content/themes/%your-theme-name%/functions.php

    where %your-theme-name% is the name of your theme

    or use

    Code Snippets

    #231936
    eddieturbo
    Participant

    Hi,

    In my forum using Astra Theme the ‘Reply’ link to a posting is left aligned so that the text is up against the end of the date. On desktop it is right aligned beside the unique posting ID. I have done some reasearch on this but don’t see anyone else with the problem. Anyone aware of the CSS required to fix this?

    Thanks,

    Eddie

    #231867
    dillonleo
    Participant

    The page on my forum is full of list bullets. (https://www.turtleholic.com/forums/forum/turtle-questions/)

    Does anyone know how to fix this? I was able to add the following CSS code to the main Forum page (https://www.turtleholic.com/turtleholic-forum/), which removed the bullets from that page. But on the specific forum pages I don’t know how to add custom CSS.

    ul ul li:before {
    display: none;
    }

    ul li:before {
    display: none;
    }

    #230661
    alegalietta
    Participant

    once activated go to
    dashboard>settings>bbp style pack>Breadcrumbs

    I tried but unfortunately when I save it doesn’t save the changes

    for the furst two, add this to your theme custom css

    .forum h1.page-title, .forum div.page-description p {
    display : none ;
    }

    When I try this, I have this error:
    changeset_post_save_failure

    #230609
    Robin W
    Moderator

    for the furst two, add this to your theme custom css

    .forum h1.page-title, .forum div.page-description p {
      display : none ;
    }

    for the last, install this additional plugin

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Breadcrumbs

    #230570
    Robin W
    Moderator

    A lot of mobile changes depend on the theme being used.

    These are the css changes that this site uses for smaller devices

    /* Do not fix #header for non-desktops */
    @media screen and ( max-width: 782px ) {
    	#header {
    		top: 0;
    		z-index: 99999;
    		position: absolute;
    	}
    	#wpadminbar {
    		z-index: 88888;
    		height: 56px !important;
    		position: absolute;
    	}
    	#wp-toolbar {
    		width: 100%;
    	}
    	#main {
    		margin: 100px 10px 40px 10px;
    	}
    	body:not(.trac):not(.home-page) #main {
    		margin-top: 140px;
    	}
    	#footer {
    		padding: 10px;
    		margin: 10px;
    	}
    	#footer div.links,
    	#footer div.details {
    		float: none;
    		margin: 10px 0;
    	}
    	#bb-menu-icon,
    	#mobile-menu-button {
    		display: block;
    		position: absolute;
    		right: 0;
    		padding: 33px 20px 33px 33px;
    		text-decoration: none;
    	}
    	#header #nav,
    	#wporg-header #wporg-header-menu {
    		margin: 0;
    		float: right;
    		overflow: visible;
    	}
    	#header #bb-nav,
    	#wporg-header #wporg-header-menu {
    		position: absolute;
    		width: 100%;
    		right: 0;
    		top: 81px;
    		border-bottom: 1px solid #aaa;
    	}
    	#header #bb-nav li,
    	#wporg-header #wporg-header-menu li {
    		width: 100%;
    		text-align: center;
    		margin: 0;
    		padding: 0;
    	}
    	#header #nav #bb-nav li a,
    	#wporg-header #wporg-header-menu li :link,
    	#wporg-header #wporg-header-menu li :visited {
    		display: block;
    		margin: 0;
    		padding: 20px;
    		color: #000;
    		text-shadow: none;
    		border-radius: 0;
    	}
    	#header #nav #bb-nav li.current a,
    	#header #nav #bb-nav li a:hover {
    		color: #fff;
    	}
    	#header #bb-nav,
    	#bbpress-forums .bbp-pagination-count,
    	.bbp-topic-meta,
    	#wporg-header #wporg-header-menu {
    		display: none;
    	}
    	#header #nav:hover #bb-nav,
    	#header #nav:focus #bb-nav,
    	#wporg-header #wporg-header-menu.toggled {
    		background-color: #eee;
    		display: block !important;
    	}
    	#wporg-header #wporg-header-menu.toggled {
    		background: #eee;
    	}
    	#header #nav:hover #bb-menu-icon:before,
    	#header #nav:focus #bb-menu-icon:before,
    	#wporg-header #mobile-menu-button[aria-expanded="true"]:before {
    		color: #fff;
    	}
    	#wp-admin-bar-my-account img.avatar {
    		height: 38px !important;
    		width: 38px !important;
    	}
    }
    
    /* Mobile */
    @media only screen and (max-width: 480px) {
    	#bbpress-forums div.bbp-topic-author img.avatar,
    	#bbpress-forums div.bbp-reply-author img.avatar {
    		width: 72px;
    		height: 72px;
    		margin: -5px 0 0 -5px;
    		transform: rotate(-5deg);
    	}
    
    	#bbpress-forums .bbp-author-role {
    		border: none;
    		background: transparent;
    		padding: 0;
    		margin: 0;
    	}
    
    	#bbpress-forums p.bbp-topic-post-date,
    	#bbpress-forums p.bbp-reply-post-date {
    		position: absolute;
    		right: -13px;
    		top: -17px;
    		font-size: 10px;
    		margin: 0;
    	}
    
    	#bbpress-forums div.bbp-topic-author .bbp-author-avatar + br,
    	#bbpress-forums div.bbp-reply-author .bbp-author-avatar + br,
    	#bbpress-forums div.bbp-topic-ip,
    	#bbpress-forums div.bbp-reply-ip {
    		display: none;
    	}
    
    	#bbpress-forums li.bbp-body div.type-topic span.bbp-admin-links,
    	#bbpress-forums li.bbp-body div.type-reply span.bbp-admin-links {
    		display: block !important;
    		border-top: 1px dotted #ddd;
    		margin: 10px 10px 0 10px;
    		padding: 5px 0;
    		position: relative !important;
    		top: 0;
    		left: 0;
    	}
    }

    You can play with them to get your site looking nicer

    either add them to the custom css part of your theme, or use

    Code Snippets

    #230199
    rinh
    Participant

    This may be more of a request for Elementor, but I thought I try and see if someone figured this out.

    From this topic here: https://bbpress.org/forums/topic/bbpress-elementor/
    I was able to make Elementor work on forum index, forums and the list of topics inside those, but not for single topic (those you can reply on). Technically those must be posts and post comments.

    It’s not entirely essential, but would be great if there was a way to do this. I use a barebones theme (_s) and the theme parts themselves are built with Elementor’s theme builder and custom CSS. So without a template for single topics I’m unable to get a header or a sidebar on those.

    Thanks in advance!

    #230174
    Robin W
    Moderator

    so you are happy that in the forum display, the topic content box will be there, but show nothing ?

    for 1,3&4

    #bbpress-forums fieldset.bbp-form input[type="text"] {
    	width: 100% !important;
    }
    div.bbp-submit-wrapper {
    width: 100%;
    }

    add this to the custom css of your theme

    ferule
    Participant

    Thanks, the only thing is, I do not want to modify the php or css files. Not only is that a rathole that I’d never escape from, I do not feel competent to do so, and to be honest, I don’t want to learn all that. I wanted a forum plugin that would use my theme and allow me to style it by using one of my theme builder’s page templates, because that I know how to do.

    In any event, further research led me to discover that bbpress seems to use three custom post types: forum, topic, and replies. I can’t find documentation about when these custom post types are used, but I’m guessing that “forum” is used for the forum index listing, “topic” is used for the topic listing within an individual forum, and “replies” are for the replies.

    I figured out that Thrive Theme Builder lets you create a template and apply it to custom post types. I did that with the “forum” type and it it does seem to work. It looks ugly, but at least it applied the template and now I can fiddle with it.

    So then I tried it with the “topic” type, but that doesn’t seem to take effect. When I click on a a topic that I created, it takes me to a page that uses the default Theme Builder’s archive page. Not what I want at all. I would be fine if it used the same “forum” template, actually, but I don’t see how it does that.

    Finally, Theme Builder does not even show the “reply” type as an option so I can’t try making a template for that one.

    #229080

    In reply to: padding between topics

    Robin W
    Moderator

    try this in your custom css

    #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
    	padding: 5px 25px !important;
    }
    #229016
    osakid8
    Participant

    Hello.
    I am a beginner in making websites.
    The topic size of one of the forums on this page is “926px X 59px”
    But the topic size of one of the forms on my site is “866px X 189px”
    How can I change this size?
    I’m only studying CSS, so if possible I would like to solve it with CSS only, without using php.
    I’ve tried a lot of CSS so far, but I still can’t resize it.

    Steveorevo
    Participant

    Very nice work with the style pack Robin! I do have one issue with Mega Max menu compatibility. For whatever reason, it doesn’t look like shortcodes are being processed when style pack is activated (which is how MegaMax allows menus to be embedded).

    Otherwise I’d recommend your style pack for bbPress users as this “simply works” to deliver the forum styling to Twenty Twenty Two without having to painfully apply one’s own CSS rules to make it marginally pretty.

    For those willing to go that far, I found that simply adding a basic, default template page as described on WordPress.org will do the trick. Supposedly block editor doesn’t care for/use PHP template pages anymore so it’s otherwise ignored.

    For simplicity, I just replace Twenty Twenty Two’s otherwise empty index.php with the “skinny” template index.php I created here:

    https://gist.github.com/Steveorevo/96d8015bcf353221e1cf0cd6b89bb766

    #228779
    kehilatech
    Participant

    Hi bbPress community!
    I’m setting up a new WordPress + bbPress website, and this website is RTL (Hebrew).
    My theme, oceanWP, supports RTL pretty well, and it seems like bbPress plays nicely with RTL in some pages, but in the main forum list it does not.
    Here’s my current forums page: https://kehila.tech/forums/
    The issue is that the forum name appears on the leftmost part, which is odd in an RTL language.
    From what I can tell, the RTL css files are indeed loaded, and indeed after the non-RTL files are loaded, so I’m not sure what went wrong.
    I’d appreciate any tips as for what to do! And I’m definitely open to adding some custom CSS if that’ll solve it easily.
    Thanks in advance!

    #228665
    swarwas
    Participant

    Hey Robin,

    thanks for your feedback.

    Well, I used the twenty twenty theme before and I wanted to add a forum to my homepage. I found bbpress and thought it would fit perfectly. Unfortunately, bbpress looked pretty “detached” from the rest of the homepage. Meaning, the style of the forum did not fit the rest of the homepage. I played around with CSS but the result was not very satisfying and took too long. That’s why I tried the new tttwo theme.

    I am not a Web developer and I can’t judge whether the block theme approach is a good idea or not. I played around with it and it was relatively easy to tweak the design templates. So, it kind of worked for me (first impression).

    Thanks for your work!

    #228592
    carasse64
    Participant

    Hi Robin

    I run a Buddypress site.

    I have decided to add a bbpress forum to my buddypress site because it allows to sort, archive and retrieve easily threads. In fact, when a user posts a question in the “what’s new” text box in buddypress and when other users comment this post, the thread quickly diseappears under the newsfeed activity. So, it becomes impractical to retrieve this interesting thread later. That’s why I prefer to prevent the users from posting anything on the newsfeed page and to force them to create a forum topic to launch a discussion.

    With a bbpress forum, the topics and the different forums allow to have a look easily on every topics created and it is very simple to search any type of topic with the search feature.

    So, to get a perfect combination of Buddypress and Bbpress, I am trying to get the next features :

    1. Disable the “Comment” button when a forum topic is displayed on the newsfeed = we can configure it in the buddypress general settings = OK.

    2. I would like to allow the user to directly reply to the topic by clicking on the comment reply button (https://www.awesomescreenshot.com/image/25491233?key=5f722a0092c6fc6fb5d7e7dcbf3adce1). Actually, if he clicks on this button he just will be able to commment the activity. It would be great if by clicking he could reply to the topic.

    The new link for the comment reply button would be the direct link to reply the topic : https://www.awesomescreenshot.com/image/25491342?key=6df01354ef860a0351170ced90f89800

    3. Hide the “what’s new” text box at the top of the newsfeed page = I did it with css/display=none. I have created instead a “new topic” button in a widget (https://www.awesomescreenshot.com/image/25600135?key=a39ade63109934dbde5356a38eef49e5)

    4. When a user creates a buddypress group, a forum should be automatically created with the same name as the group (the user can’t choose if he wants to create a forum or not). Is it possible to force that ?

    5. When a user creates a new topic from a buddypress group forum, the “Create new topic” button (instead of the “what’s new” text box) should create a new topic directly in the group linked to the forum. Is it possible to force that ?

    6. Once a new topic is created, when you push the “Submit” button, you should be linked to the newsfeed page to see how the topic you have just created is displayed on the newsfeed = I have already opened a new topic on bbpress forum for that ๐Ÿ™‚

    I hope you understand all what I mean with my poor english. I have contacted the theme’s author (BuddyX/Webcom design) but they answered they can not help me.

    Do you think it is possible to configure such features ?

    Thanks a lot.

    Fabien

    #228181
    DeepBlue
    Participant

    bbPress will never die. It will only get better.

    Thank you, everyone, again, for being patient and for your interest in bbPress. Itโ€™s a pretty cool piece of software with some of the best contributors and forum moderators around! Iโ€™m working on bbPress everyday, sometimes in my head, and sometimes on other projects that bbPress will inherit someday. Itโ€™s always on my mind, even if the commit log doesnโ€™t show it. ๐Ÿ’•

    Beautiful words John James

    Thank you a lot for your great commitment

    I love bbPress too and i think there is one lacking feature : bbpress themes, other forum softwares have themes, and i can provide one theme myself, this bbpress official forum has a theme too, that would help newcomers and those without dev skills who cant customize bbpress, as we must admit at first install the output is not great, without a huge CSS work, so as my designers have spent almost one month working on bbpress design, i would be happy to provide a theme, and im sure others would too

    or maybe i missed something and there is place where people can find bbpress themes ?

    Have a great day

    #228112
    Robin W
    Moderator

    it is theme related, but add this to the custom css part of your theme

    #bbpress-forums {
    	padding: 15px !important;
    }

    I can’t help with the subscribe, as that only shows to logged in users.

    #227951
    DeepBlue
    Participant

    Great Robin it works ! thanks ๐Ÿ™‚

    i will need to manually change html on the topics listings (forum) template, which file should i edit then ? (i want to rename “started by”, change the way freshness avatar is showing with html (not possible with css) etc

    and therefore is there a way to manually add this date directly on that file ?

    Thanks ๐Ÿ™‚

    #227763

    In reply to: bbPress + Elementor

    curlcomjl
    Participant

    Hi @robin-w

    I’m still a WP beginner and I’m not a native speaker (I use Google Translater, that doesn’t make it easier ๐Ÿ˜€ ) and I really need help. Sorry to write again on this topic, but unfortunately I didn’t fully understand the instructions.

    I have exactly the same problem as most others.
    I create a community with bbpress forum. For this I use Ocean WP Theme (I also tried Hello Theme because of your plugin, but unfortunately it didn’t work.) and Elementor (Unfortunately only the open source version, not Pro).

    I can customize forum index page with Elementor exactly as I want with motion effect, borders, additional widgets…
    When I click on a topic, bbpress uses the default theme without my Elementor editing.
    I understand that bbpress creates a new page for each topic and only uses the default theme. How can I tell bbpress to use my Elementor template?

    If I understood it correctly with FTP?
    I’m having trouble finding my template in the files and I don’t know where to go for bbpress.

    Or CSS?
    Can I change the loading instruction for the template somewhere in the bbpress stylesheet? If yes, where?

    I would be grateful for the help, I’m desperate.

Viewing 25 results - 76 through 100 (of 2,719 total)
Skip to toolbar