-
Joey replied to the question Hide header completely in the forum Boss. theme 9 years, 2 months ago
I’m trying to do this for the Home Page. When I use the page template for a normal page, it works. When I tried to put it on the Sample Page marked as the Front Page, it doesn’t work.
-
Joey replied to the question Hide header completely in the forum Boss. theme 9 years, 2 months ago
I just tried that, and it doesn’t work. I don’t understand why. It just loads the page like normal. It seems like page templates are completely ignored or something. Unless I use a built in one, yet the custom one is in the list.
-
Joey replied to the question Hide header completely in the forum Boss. theme 9 years, 2 months ago
the header.php is being included regardless of calling it in a blank page template.
I created a file called “joeysturgis.php” and put this in it:
<?php /*
Template Name: Joey Sturgis
*/
?>nothingThen I uploaded this file to the sociallearner folder next to files like “single.php” and “header.php”
Then I went to my Sample Page and changed…[Read more]
-
Joey replied to the question Hide header completely in the forum Boss. theme 9 years, 2 months ago
the header.php is being included regardless of calling it in a blank page template.
I created a file called “joeysturgis.php” and put this in it:
<?php /*
Template Name: Joey Sturgis
*/
nothing
?>Then I uploaded this file to the sociallearner folder next to files like “single.php” and “header.php”
Then I went to my Sample Page and changed…[Read more]
-
Joey replied to the question Full Width No Header No Footer in the forum Social Learner 9 years, 2 months ago
On my last sentence…
I should clarify, what I meant to say was this:
But the way Social Learner works now, it forces you to use the Title Bar Menu and use the Global Search function and an empty BuddyPress menu. -
Joey started the question Full Width No Header No Footer in the forum Social Learner 9 years, 2 months ago
Any chance we can get a full width no header no footer page template for this theme? The site I’m working with requires a membership to use almost any of the functions except for the blog. So I either want people to: read the blog, register, or login. That’s it. But the way Social Learner works now, it allows you to use the Title Bar Menu and use…[Read more]
-
Joey started the question Public Message Theme Bug in the forum Social Learner 9 years, 2 months ago
Please see this video: https://youtu.be/rTrE4OdZz1s
This is latest buddy boss / social learner theme -
Joey started the question Member Settings in the forum Social Learner 9 years, 2 months ago
I’m using Memberium and Infusionsoft and so I can’t allow BuddyPress to handle the user’s email address, password, or username. However, I still need a way for the user to adjust his email notification settings. Since those things are all in the same area, it seems like it’s only on or off. Does anyone have any idea on how to either build my own…[Read more]
-
Joey replied to the question LearnDash Course Grid looks wrong in the forum Social Learner 9 years, 2 months ago
I had to Uninstall LearnDash Course Grid plugin to make it look like the demo. Thanks.
-
Joey started the question LearnDash Course Grid looks wrong in the forum Social Learner 9 years, 2 months ago
In the demo site (http://demo.buddyboss.com/social-learner-learndash/all-courses/) the LearnDash Course Grid looks a lot different. How do you get the author and lesson count to show up for each course?
-
Joey replied to the question How to put the "Original Boss Header" into the Social Learner Theme in the forum Social Learner 9 years, 2 months ago
The instructions listed here no longer work with the latest version of Social Learner. How would someone do this now?
-
Joey replied to the question Activity / Profile conflict in Social Learner in the forum Social Learner 9 years, 4 months ago
I removed the custom code and the issue is still there. In fact, this issue occurs on a fresh install.
-
Joey replied to the question User Avatars images are broken in Activity Feeds in the forum Social Learner 9 years, 4 months ago
I have updated my files to the most recent (they were the same as the version I was using when this occured) and the issue is still happening.
Can you just tell me where these URLS are created in the php file so I can tell it to use the same folder as the profile images that appear correctly. I don’t understand why it tries to use a different…[Read more]
-
Joey replied to the question User Avatars images are broken in Activity Feeds in the forum Social Learner 9 years, 4 months ago
The URL with social learner in the URL is the one that comes up 404 and rightfully so, I am fairly confident that images don’t get uploaded there. I feel as if the code should be referring to the location that works (regular profile images that appear all over the site) but I have no idea which code file would contain this URL building.
-
Joey replied to the question Activity / Profile conflict in Social Learner in the forum Social Learner 9 years, 4 months ago
If I Deactivate BuddyPress Reorder Tabs and leave BuddyBoss Wall activated, the same behavior occurs.
If I Deactivate BuddyBoss Wall and leave BuddyPress Reorder Tabs activated, the same behavior occurs.
If I Deactivate BuddyBoss Wall and BuddyPress Reorder Tabs, the same behavior occurs. -
Joey started the question User Avatars images are broken in Activity Feeds in the forum Social Learner 9 years, 4 months ago
The activity feeds that say:
“user and [x] user are now friends 19 hours, 33 minutes ago”
Always display broken images. If I inspect the element I find a regular user avatar URL appears like this:
<img src="http://xxx.xxxxxx/wp-content/uploads/avatars/1/0a932d194761c5f0f4a5b5149586464e-bpfull.png" class="avatar user-1-avatar avatar-60 photo"…
[Read more] -
Joey started the question Activity / Profile conflict in Social Learner in the forum Social Learner 9 years, 4 months ago
Alright, the issue I’m noticing is that on mobile (iPhone / Safari) I’m getting some navigation conflicts…
Here’s some scenarios:
Scenario 1
Using BuddyBoss Wall and BuddyPress Reorder Tabs with “Default Profile Page” set to “Profile”
On Desktop: Activity and Profile links work fine
On iPhone Safari:
Hold down on Profile and the URL is…[Read more] -
Joey replied to the question Small Width (mobile) view, how to remove menu items. in the forum BuddyBoss theme 9 years, 4 months ago
Here’s how I did it:
function bb_setup_profile_tabs() {
[Read more]
if(!is_plugin_active( 'buddypress-docs/loader.php' ) ) {
remove_action('template_redirect', 'bb_child_doc_menu_count_tabs', 999);
}
global $bp;
$bp->bp_nav['messages'] = false;
$bp->bp_nav['settings'] = false;
$bp->bp_nav['following'] = false;
}
add_action( 'init' ,…