Forum Replies Created
-
Author
-
waystidParticipant
I was not sure where to add it or what exactly to add.This is what my functions.php looks like:
<?php
/**
* @package WordPress
* @subpackage Kleo
* @author SeventhQueen <themesupport@seventhqueen.com>
* @since Kleo 1.0
*//**
* Kleo Child Theme Functions
* Add custom code below
*/add_action( ‘wp_enqueue_scripts’, ‘load_buddypress_js’ );
function load_buddypress_js () {
if (bp_is_group() || is_page( ‘activity’ )) {
wp_enqueue_script(‘buddypress_query’,plugins_url() . ‘/buddypress/bp-core/js/jquery-query.min.js’,array(“jquery”));
wp_enqueue_script(‘buddypress_members’,plugins_url() . ‘/buddypress/bp-core/js/widget-members.min.js’,array(“jquery”));
wp_enqueue_script(‘buddypress_cookie’,plugins_url() . ‘/buddypress/bp-core/js/jquery-cookie.min.js’,array(“jquery”));
wp_enqueue_script(‘buddypress_scroll’, plugins_url() . ‘/buddypress/bp-core/js/jquery-scroll-to.min.js’, array(“jquery”));
wp_enqueue_script(‘buddypress_js’,get_template_directory_uri() . ‘/buddypress/js/buddypress.min.js’,array(“jquery”));
}
}waystidParticipantI just used the Call to Action box and made the background black as a quick fix. Thank you.
waystidParticipantThat’s exactly what I want to do. But I don’t know how to remove the margins and padding and such.
waystidParticipantIt’s mostly the padding on the sides. I want it to be consistent with the rest of the site. Right now it’s pretty much edge-to-edge. And the sidebar’s styling doesn’t match the sidebar on the other parts of the site.
Attachments:
You must be logged in to view attached files.waystidParticipantDid it completely work for you. Because I tried that fix and althought the icons are now showing…my sidebar is now below the main content of the page and not in its sidebar position. Is there a fix for this?
waystidParticipantOK I spoke to soon. My sidebar is not displaying under the activity content on profile pages….
waystidParticipantThat worked but now I no longer have the “More link” in thje profile navigation section to see the other profile tabs…
waystidParticipantI really wish we could find a way to get this to work….giving end users the ability to embed multimedia in the same easy way I can on the backend would be a great help.
waystidParticipantSorry…it wasn’t Jetpack. It was “Like Button Voting & Rating” by LikeBtn
I have removed this plugin and now the activity stream replies are displaying correctly..
waystidParticipantI found out that it was the Jetpack plugin. Is this a necessary plugin or will I be ok without it?
waystidParticipantOk I got the 404 errors fixed by updating permalinks.
I also added that code to the functions.php in my child theme but I am still running into the same issue. I’m not really advanced developer so I’m not sure what I am really looking for in that last link you sent me.
-
AuthorPosts