Magnus_Wallin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Minamaze] Compatibility Issues with WP 4.2The theme works with 4.2. I wonder if it has to do with _how_ the update is done. Did you get your first update automatically from your host, or did you update yourself via your dashboard?
Forum: Themes and Templates
In reply to: [Minamaze] Compatability with WordPress 4.2?@10degreesabove I honestly don′t know.
For reference, I must add that I just upgraded to WordPress 4.2, and it worked without a hitch with Minamaze version 1.1.6.
So, your error most likely have nothing to do with Minamaze.It′s probably best if you start a new thread. Good luck, I wish I could help you out more, but it′s above my paygrade as well!
Forum: Themes and Templates
In reply to: [Minamaze] Compatability with WordPress 4.2?Hi!
Your site is not ”blank” to me. But apparently your slider images are missing. Also it seems as though you have an issue with character encoding.
Might this help?
Site is Blank after Update
If you were using Twenty Ten, Twenty Eleven, Twenty Twelve, Twenty Thirteen, Twenty Fourteen, or Twenty Fifteen as your theme, and you received WordPress 4.2 by a hosting provider’s auto-update system, you may need to manually install a new version of the theme.Why this broke: Some hosting providers were distributing corrupt themes with their WordPress 4.2 update packages. This does not affect anyone who has updated WordPress via the Dashboard, updated manually via FTP/SFTP, or via a WordPress-powered auto-update mechanism.
****
I’m on MySQL 5.5.14 or higher, but my database character set did not update to utf8mb4.
Follow this guide to manually update your database character set and collation.Why this broke: We’re still investigating this. It appears that the upgrade incorrectly required an instance of MySQLi. Please feel free to follow along at https://core.trac.www.ads-software.com/ticket/32127
Forum: Themes and Templates
In reply to: [Minamaze] Compatability with WordPress 4.2?@krucz36 Thanks for the feedback, appreciate it!
Forum: Themes and Templates
In reply to: [Minamaze] Compatability with WordPress 4.2?Ok. So, in other words, Minamaze is compatible with WordPress 4.2?
Forum: Themes and Templates
In reply to: [Minamaze] Compatability with WordPress 4.2?@krucz36 Ouch! That’s definitely not good. How did you solve this?
Forum: Themes and Templates
In reply to: [Minamaze] How to change the theme color red ??Edit the footer:
#footer { background: none repeat scroll 0% 0% #333; border-top: 6px solid #F33F3F; border-bottom: 1px solid #111; padding: 15px 10px; }
What you want to change is the border-top colour (#F33F3F) into the colour you prefer.
Forum: Themes and Templates
In reply to: [Minamaze] Mobile Responsive?Yes. You have to activate it though.
Forum: Themes and Templates
In reply to: [Minamaze] Sidebar shouldn′t show on several pages – how to?Hmm… perhaps you are over-thinking this. It might be enough to do something like:
.page .page-id-18 #sidebar { display: none; }
In your own CSS. Please note, that since I don’t use a sidebar – I don’t know the actual code for the sidebar (in other words replace ‘#sidebar’ with the actual code).
The bottom line is:
Identify the page id (something like tha above ‘page-id-18’), then use
display: none;
On the id or class that you do NOT want to show on that particular page.Of course, if you are more comfortable hacking php, then by all means use php.
Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missing@aviationpro, no problem. That’s what we’re here to do, help each other out.
Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missing…yes by the way, it happens on every page, despite having a site title in Settings -> General.
But, just to be clear. This update did not *break* anything. The only thing it affects is how the site and page titles are displayed. Could be worse. Thanks for the response!
Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missing^Hello!
It’s not a big deal, I just ‘fixed’ this issue by doing the following:
– Upgraded to 1.1.4
– As has been stated above, the site title and pages are _not_ displayed correctly. Instead of seeing the actual name of the site <title>, what you see is the url (https://example.com instead of “My nice website”).
– To fix this in version 1.1.4 first download the file:
minamaze/lib/functions/extras.php
– Open in an editor and paste the following:/* Filters wp_title to print a neat <title> tag based on what is being viewed. */ function thinkup_input_wptitle( $title, $sep ) { global $page, $paged; if ( is_feed() ) return $title; // Add the blog name $title .= get_bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title .= " $sep $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) $title .= " $sep " . sprintf( __( 'Page', 'lan-thinkupthemes' ) . ' %s', max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'thinkup_input_wptitle', 10, 2 );
At the bottom of the file
– Upload the file (replace the original).
– Done! The site title and pages are displayed correctly again.Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missingI finally found the function! In:
https://themes.svn.www.ads-software.com/minamaze/1.1.3/lib/functions/extras.php/* Filters wp_title to print a neat <title> tag based on what is being viewed. */ function thinkup_input_wptitle( $title, $sep ) { global $page, $paged; if ( is_feed() ) return $title; // Add the blog name $title .= get_bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title .= " $sep $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) $title .= " $sep " . sprintf( __( 'Page', 'lan-thinkupthemes' ) . ' %s', max( $paged, $page ) ); return $title; } add_filter( 'wp_title', 'thinkup_input_wptitle', 10, 2 );
And, just as the readme says, it has been removed in 1.1.4:
https://themes.svn.www.ads-software.com/minamaze/1.1.4/lib/functions/extras.phpMaybe you could just put the code back in again into version 1.1.4 manually? I’m no expert on php, but it seems as though this function ‘replaces’ the native wp-title() function.
Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missing@aviation Pro, I just checked the 1.1.3 version:
https://themes.svn.www.ads-software.com/minamaze/1.1.3/functions.phpI can’t find the function
thinkup_input_wptitle()
There either!
Forum: Themes and Templates
In reply to: [Minamaze] 1.1.4 Site title missingOddly enough, the header.php looks the same in 1.1.4:
<title><?php wp_title( '|', true, 'right' ); ?></title>
I guess we’re gonna have to wait until the developers get the time to check in and answer.