-
Eric replied to the question Editing buddyboss.css in the forum BuddyBoss theme 9 years, 5 months ago
Thank you Varun. Should I move my custom css from the custom.css file? 🙂 Eric
-
Eric started the question Backslash Added to Apostrophe Issue in the forum BuddyPress (general issues) 9 years, 5 months ago
When posting any activity that includes an apostrophe, the site includes a backslash before the apostrophe when writing to the database. For example, “don’t” writes and reads as “don’t”
I have magic_quotes turned off in php.ini and I added the following action to the child theme functions.php. I still can’t get rid of the unwanted backslash.
Any…[Read more]
-
Eric started the question Backslash Added to Apostrophe Issue in the forum BuddyPress (general issues) 9 years, 5 months ago
When posting any activity that includes an apostrophe, the site includes a backslash before the apostrophe when writing to the database. I have magic_quotes turned off in php.ini and I added the following action to the child theme functions.php. I still can’t get rid of the unwanted backslash. Any advice appreciated.
The action is as…[Read more]
-
Eric replied to the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 5 months ago
Oliver, your problem has nothing to do with this thread. You need to start your own topic.
Buddyboss? Can you bump Oliver to a new thread?
Eric
-
Eric replied to the question Editing buddyboss.css in the forum BuddyBoss theme 9 years, 5 months ago
Thanks TJ. However, all of my custom css falls below the header comments. 🙂 Eric
-
Eric replied to the question Editing buddyboss.css in the forum BuddyBoss theme 9 years, 5 months ago
Thank you Varun. But that did not work. 🙁
-
Eric started the question Editing buddyboss.css in the forum BuddyBoss theme 9 years, 5 months ago
I wanted a light border to display below an activity header in my activity stream. I attempted to add the following css to my custom.css. It worked fine using my browser developer CSS tools, but it didn’t work when I saved the additions. I discovered that I had to add my custom css to the buddyboss.css file in the parent theme. Is there a way that…[Read more]
-
Eric started the question Front Page Blog Posts in the forum BuddyBoss theme 9 years, 6 months ago
For my home page at https://canyon.k12.ca.us, I needed the front page blog posts to display from two select categories. Therefore, I revised the following code in a child theme front-page.php from…
<?php while (have_posts()) : the_post(); ?>
to…
<?php query_posts('cat=52,53'); while (have_posts()) : the_post(); ?>
My solution works.…[Read more]
-
Eric started the question Front Page Blog Posts in the forum BuddyBoss theme 9 years, 6 months ago
For my home page at https://canyon.k12.ca.us, I needed the front page blog posts to display from two select categories. Therefore, I revised the following code in a child theme front-page.php from…
<?php while (have_posts()) : the_post(); ?>
to…
<?php query_posts(‘cat=52,53’); while (have_posts()) : the_post(); ?>
My solution works.…[Read more]
-
Eric replied to the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 6 months ago
Thank you Varun. Unfortunately, that didn’t do it. At this point, I am ok with the dark grey background. 🙂 Eric
-
Eric replied to the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 6 months ago
Hi @vapvarun, please find attached a screenshot of the body background color I need to change. I tried the following, but it didn’t work either…
@media screen and (max-width: 736px) {
body {background-color: #000 !important;}Thank you.
Eric
-
Eric replied to the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 6 months ago
Thank TJ. However, that didn’t work. 🙁
-
Eric replied to the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 6 months ago
Thanks TJ. I tried that already and it didn’t work. 🙁
-
Eric replied to the question Stop Slider Animation in the forum Boss. theme 9 years, 6 months ago
Brandon is correct. However, the file is titled content-slides.php. Just open up a copy of the file, make the following changes, and then upload the file into your child theme folder.
If you want a single slide to display without reloading the image and text, set the duration and pause to “0”. If you want to lose the arrows, set arrows to “0” as…[Read more]
-
Eric started the question Change Mobile JS Nav Panel Grey Background Color in the forum BuddyBoss theme 9 years, 6 months ago
When viewing the mobile site and selecting either the profile (left) or main nav (right) icons in the header, under the JS panel animation that reveals the menu items, I would like to change the default grey (#313639) background that displays.
I’ve tried numerous CSS revisions to no avail. Any suggestions?
🙂 Eric
-
Eric replied to the question Omitting Activity in Notifications in the forum BuddyPress (general issues) 9 years, 6 months ago
I found the solution! I edited the Buddypress language file. For example, to remove the message content from the notification, I searched for the following using PoEdit…
%1$s sent you a new message:n
n
Subject: %2$sn
n
"%3$s"n
n
To view and read your messages please log in and visit: %4$sn
n
---------------------nand changed it to…
%1$s…
[Read more] -
Eric replied to the question Omitting Activity in Notifications in the forum BuddyPress (general issues) 9 years, 6 months ago
I found the solution! I edited the Buddypress language file. For example, to remove the message content from the notification, I searched for the following using PoEdit…
%1$s sent you a new message:n
n
Subject: %2$sn
n
"%3$s"n
n
To view and read your messages please log in and visit: %4$sn
n
---------------------nand changed it to…
`%1$s…[Read more]
-
Eric started the question Omitting Activity in Notifications in the forum BuddyPress (general issues) 9 years, 7 months ago
I set up a private Buddyboss site for an organization’s board of directors. They like notifications but need an email notification to only display a subject for reasons of confidentiality.
Any clue how to accomplish this?
Any help appreciated.
🙂 Eric