Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in
/home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line
657
Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in
/home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line
657
Warning: range(): Argument #1 ($start) must be a single byte, subsequent bytes are ignored in
/home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line
658
Warning: range(): Argument #2 ($end) must be a single byte, subsequent bytes are ignored in
/home/skattf/public_html/wp-content/plugins/buddypress-first-letter-avatar/buddypress-first-letter-avatar.php on line
658
skat
Warning: Attempt to read property "supported_until" on string in
/home/skattf/public_html/wp-content/themes/helpdesk/core/libraries/vendors/bbpress/init.php on line
109
Hi there,
1. I think there’s a problem related to your WordPress server. Can you try this and let me know if it fixes the problem?
So, here’s what you need to do:
Go to the theme’s folder > admin > functions and edit the file named “functions.admin.php”.
Just at the end of the file (from line 150 ro 174) replace this:
function generate_options_css($newdata) {
/** Define some vars **/
$sd_data = $newdata;
$uploads = wp_upload_dir();
$css_dir = get_template_directory() . '/framework/css/'; // Shorten code, save 1 call
/** Save on different directory if on multisite **/
if(is_multisite()) {
$aq_uploads_dir = trailingslashit($uploads['basedir']);
} else {
$aq_uploads_dir = $css_dir;
}
/** Capture CSS output **/
ob_start();
require($css_dir . 'custom-styles.php');
$css = ob_get_clean();
/** Write to options.css file **/
global $wp_filesystem;
WP_Filesystem();
if ( ! $wp_filesystem->put_contents( $aq_uploads_dir . 'custom-styles.css', $css, 0644) ) {
return true;
}
}
with this:
function generate_options_css($newdata) {
$sd_data = $newdata;
$css_dir = get_stylesheet_directory() . '/framework/css/'; // Shorten code, save 1 call
ob_start(); // Capture all output (output buffering)
require($css_dir . 'custom-styles.php'); // Generate CSS
$css = ob_get_clean(); // Get generated CSS (output buffering)
file_put_contents($css_dir . 'custom-styles.css', $css, LOCK_EX); // Save it
}
Save. Done.
2. Can you explain a little bit more what you mean by “subtitles”?
3. The logo is an image. You can find the font used here: http://www.losttype.com/wisdom_script/
Let me know how’s going.
Cheers!
Chris