• Resolved melsamelissa

    (@melsamelissa)


    I installed the Cakifo theme last night and got more of my configuring of the css and customizing updates done. I went to look at it on my iPhone 4 and it was not the responsive view but instead the zoomed out full site. Is there anything I have to do to make it responsive? I have not been able to check it on any other model phone, to see if it works on others. If I use the inspector in chrome and set the user agent and device size I see the responsive version. Also, if I just shrink my window in chrome or firefox it also works. Any ideas?!

Viewing 2 replies - 1 through 2 (of 2 total)
  • This will be fixed in the next version which hopefully will be released some time this month.

    If you want it right now, you can create a child theme (https://github.com/jayj/Cakifo/wiki/Child-themes) and add this to the child theme functions.php:

    add_action( 'after_setup_theme', 'my_child_setup', 11 );
    
    function my_child_setup() {
    
    	/* Get the parent theme prefix. */
    	$prefix = hybrid_get_prefix();
    
    	/* Add the 'viewport' tag. */
    	add_action( 'wp_head', 'my_child_viewport_tag' );
    
    	/* Other Actions and filters calls go here. */
    }
    
    function my_child_viewport_tag() {
    	echo '<meta name="viewport" content="width=device-width, initial-scale=1">';
    }

    Hope that helps you. If not, feel free to write again.

    If you have any question beside this one, I recommend that you sign-up for Theme support on Theme Hybrid. You’ll find a section called “Cakifo” on the support forum.

    – Jesper

    Version 1.6 is now out.

    Resolving this issue

    – Jesper

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Responsive not working on iPhone 4’ is closed to new replies.