-
Author
-
October 12, 2017 at 21:31 #176480waystidParticipant
I have just purchased a plugin called AudioTheme which allows you to add shows/gigs and a discography to my music based Kleo site. The only problem is that the formatting is off when the plugin is used. I’ve tried following their instructions here on integrating with third-party themes but my coding knowledge is very limited: https://audiotheme.com/support/kb/intregrating-audiotheme/
This is how the shows archive appears on my site:
http://waystid.com/shows/
http://waystid.com/shows/hmmmtest-gig/October 13, 2017 at 17:34 #176555RaduModeratorHi,
Did you have added any of those codes in your functions.php ?
Can you show the the content of you functions.php file from the child theme?
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionOctober 14, 2017 at 08:15 #176601waystidParticipantI 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”));
}
}October 16, 2017 at 16:15 #176862RaduModeratorHi,
I see, it seems that the plugin it’s a paid one and i cannot test it on my end… can you send it to me ? do it only if this it’s usable without licence just to test how it integrate with the layout.Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Plugins questions’ is closed to new topics and replies.