-
Author
-
December 23, 2015 at 19:56 #95125cgParticipant
Hello,
I installed the rtAmazon S3 plugin to improve the performance of the website by uploading all media files to Amazon
S3/Cloudfront and having the images served to the website visitors directly
from S3/Cloudfront. It does not seem to be working as intended and I wanted to know if there are any known issues with this plugin.If so, do you have any recommendations that will serve this purpose – my host has blacklisted and will not allow W3 Total Cache.
Also, I would like to know if your theme will work properly without the Buddypress components installed.
Thank you in advance.
December 26, 2015 at 21:32 #95305LauraModeratorHello, if the host doesnt allow any cache plugin, try maxcdn, they provide a good setup service for their CDN
And yes, KLEO can work perfectly without BuddypressHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 4, 2016 at 22:16 #96263cgParticipantThank you for your response.
#1: It appears that MaxCDN requires the use of W3 Total Cache – is this correct and can you recommend an alternative?
#2: I tried removing both the BuddyPress and bbPress plugins and received the following error message on the home page:
Fatal error: Call to undefined function bp_is_blog_page() in /home/content/p3pnexwpnas04_data03/56/3000756/html/wp-content/themes/kleo-child/functions.php on line 22
January 7, 2016 at 06:29 #96822LauraModeratorHello, MAXCDN doesnt require w3 total cache, you can use another plugin cdn linker. If you talk with them they can guide you 🙂
Can you share admin credentials so i can check it out?Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 8, 2016 at 23:13 #97404cgParticipantThank you Laura,
#1 I will do further research on MAXCDN
#2 below is the custom code in function.php – what needs to be removed to eliminate the error?
/**
* Redirect buddypress and bbpress pages to registration page
*/
function kleo_page_template_redirect()
{
//if not logged in and on a bp page except registration or activation
if( ! is_user_logged_in() &&
( ( ! bp_is_blog_page() && ! bp_is_activation_page() && ! bp_is_register_page() ) || is_bbpress() )
)
{
wp_redirect( home_url( ‘/register/’ ) );
exit();
}
}
add_action( ‘template_redirect’, ‘kleo_page_template_redirect’ );add_action(‘user_register’, ‘kleo_pmpro_default_level’);
function kleo_pmpro_default_level($user_id) {
pmpro_changeMembershipLevel(1,$user_id);
}
add_action(‘geodir_article_close’,’add_social_sharing’);
function add_social_sharing() {
get_template_part( ‘page-parts/posts-social-share’ );
}January 9, 2016 at 15:04 #97471LauraModeratorHello, i think its
COPY CODEadd_action(‘geodir_article_close’,’add_social_sharing’); function add_social_sharing() { get_template_part( ‘page-parts/posts-social-share’ ); }
Try deleting it and check if the error disappears
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.