-
Bob1nz replied to the question Woocommerce hides buddybar in the forum BuddyBoss theme 10 years, 2 months ago
ahh got it did some googling with what you posted and just used this
add_filter( 'woocommerce_disable_admin_bar', '__return_false'
Thanks again TJ
-
Bob1nz replied to the question Woocommerce hides buddybar in the forum BuddyBoss theme 10 years, 2 months ago
Thanks for the reply.
I added that to my functions.php in my child theme but subscribers still have no buddybar.
-
Bob1nz started the question Woocommerce hides buddybar in the forum BuddyBoss theme 10 years, 2 months ago
Hi
Just playing around with things today and I noticed that when the plugin WooCommerce is activated some of the roles in my wordpress can no longer see their “buddybar” (not sure on the name of it but the bar in the header that has the “how are you joeblogs?”)But as soon as I deactivate woocommerce the buddybar is visible again?
I have some…[Read more]
-
Bob1nz replied to the question Better category layout for BBPress? in the forum Requests and Feedback 10 years, 2 months ago
Well I have the linked loop-forums.php in my child theme (buddyboss-child/bbpress/loop-forums.php)
and it achieves nearly what I want.
Any thoughts on this?
http://pastebin.com/1E1q7ebp -
Bob1nz replied to the question Better category layout for BBPress? in the forum Requests and Feedback 10 years, 2 months ago
Well I have the attached loop-forums.php in my child theme (buddyboss-child/bbpress/loop-forums.php)
and it achieves nearly what I want.
Any thoughts on this? -
Bob1nz started the question Better category layout for BBPress? in the forum Requests and Feedback 10 years, 3 months ago
Hey there
I purchased this theme almost a year ago but never really put it into a live website.
The main reason for that was the way that bbpress is laid out.I was wondering if it is in your plans to customise bbpress’s layout to display like most of the other forum scripts do (Example image attached). eg smf, xenforo, phpbb and so on and so…[Read more]
-
Bob1nz replied to the question Disable Page Titles in the forum BuddyBoss 3.0 10 years, 11 months ago
If you are using the child theme (highly recommended) then you want to put that into
wp-content/themes/(yourchildtheme)/css/custom.css
that css file has a section in it called “Global Styles” which is where you should put that code.
If you dont have a child theme then there is a guide on here https://www.buddyboss.com/child-themes/
Best to…[Read more] -
Bob1nz replied to the question Fixed Header in the forum BuddyBoss 3.0 10 years, 11 months ago
Hi I have done a similar thing
mine is similar to nizbo1’s example except i only used the
.site-header {
position: fixed;
width:100%;
}in the @media screen and (min-width: 721px) section.
For the body part being tucked up under the header i worked out how many px the header was then set
body .site {
[Read more]
padding-top: (heightofyourheader)px;… -
Bob1nz replied to the question Disable Page Titles in the forum BuddyBoss 3.0 10 years, 11 months ago
I would try
.comunidade .entry-header
{
display: none !important;
}You should be able to repeat this code just replacing the “title” of the page in where i had home or in this latest code “comunidade” with the title of the page or post you want to hide the title.
-
Bob1nz replied to the question Disable Page Titles in the forum BuddyBoss 3.0 10 years, 11 months ago
Here is what worked for me to hide the title in the home page but keep post titles and other page titles.
.home .entry-header
{
display: none !important;
}I put this in my buddyboss childthemes custom.css in the “Global Styles” section