Mandado

Member

Forum Replies Created

  • In reply to: Disable pluggins only in mobile version

    #39062
    Quote:
    That code is for some other facebook comment plugin. Not for SEO Facebook Comment.

    Ah, ok. 😉

    In reply to: Disable pluggins only in mobile version

    #39060

    How could I use activate_plugins() and deactivate_plugins() functions?

    In reply to: Disable pluggins only in mobile version

    #39059

    I tried putting the line

    remove_filter('comments_array', 'facebook_comments');

    in my child theme functions file but it didn’t change anything.

    In reply to: Latvian language

    #39073

    I don’t speak Latvian, that’s my girlfriend, I will try to explain her how to do it and see if the is up to the task. Thanks.

    In reply to: Disable pluggins only in mobile version

    #39053

    I have set up the child theme, could you give me an example of the function code for one plugin? If I want to deactivate 2 I just put the function two times?

    There is 2 that I am considering deactivating: SEO Facebook Comment and ViperBar.

    http://wordpress.org/plugins/seo-facebook-comments/

    http://wordpress.org/plugins/viperbar/

    In reply to: Non-static homepage for mobile version

    #39051
    Quote:
    First you have to create a child theme for Graphene Mobile Neo. Then add the below code to child theme’s functions.php

    <?php

    function redirect_home_to_blog_mobile() {

    if ( is_front_page() ) {

    wp_redirect ( get_permalink( get_option( ‘page_for_posts’ ) ) );

    exit;

    }

    }

    add_action(‘template_redirect’, ‘redirect_home_to_blog_mobile’);

    Thanks, I set up the child theme functionality and add the code, it works.

    In reply to: Non-static homepage for mobile version

    #39049

    I can see Adam asking a similar question, but I cannot read your answer. Just “Please purchase Graphene Mobile to add new topics as well as view and add replies in this forum.”

Viewing 7 posts - 11 through 17 (of 17 total)

  • 1
  • 2