Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • @jonas Grumby
    Thanks for the link it had the info I needed to display the menus and the events on the homepage.

    add_filter('pre_get_posts', 'query_post_type');
    function query_post_type($query) {
    if(is_archive() || is_tag() || is_home() && empty( $query->query_vars['suppress_filters'] ) ) {
    $post_type = get_query_var('post_type');
    if($post_type)
    $post_type = $post_type;
    else
    $post_type = array('post','tribe_events','attachment','nav_menu_item');
    $query->set('post_type',$post_type);
    return $query;
    }
    }

    Added ‘nav_menu_item’ in the $post_type = array
    Thanks!

    I’ve tried this on other themes than the one I’m using and it happens on all of them. Also tried it on the Twenty Eleven 1.2 theme and the Twenty Ten 1.2 both of these themes do not show the WordPress navigation when clicking onto a category page.

    I added this code to my functions.php file and noticed that when you go to any category page the top navigation has been removed.

    Shane – will this option be included in upcoming releases of the events-manager plugin? And is this option included in the Events Pro version?

    Thread Starter andywaterson

    (@andywaterson)

    I had a registration plugin that sending a verification email to the user. This caused the user name to say unverified. I disabled the plugin and signed the user up again… the username was the first name of the user.

    By the way, excellent facebook plugin. I’ve tried a bunch and none really seem to do exactly what I wanted. You should consider adding some more features that take over the registration page of wordpress. Or have a premium version with more features.
    Just some suggestions:
    Register using Facebook account or regular wordpress registration.
    Facebook account also creates a user on your wordpress blog (already in the plugin). User connects with their facebook account or logins using their wordpress account. User can comment with facebook comments or wordpress comments(Works already). Your plugin covers almost all of this stuff but a user that connects up with Facebook can’t login with their created wordpress account. They have to hit connect to facebook anytime they login.

    I was getting the same error but it seems wordpress support has fixed the issue with their api.

    andywaterson

    (@andywaterson)

    After 3 weeks on 1and1 I noticed that they limit the size of photo uploads to 40m. Other hosts like GoDaddy and hostgator are 64m. This could be a major issue for some clients using wordpress that don’t know how to save a photo for the web or for users that want to upload photos via their iPhone or blackberry.
    I’ve tried changing the wp-config file and the php.ini and a bunch of other things to adjust the 40m to 64m but I discovered that 1and1 doesn’t allow those types of changes on a shared server.
    I plan on calling them at some point. I may cancel before my 90 days are up. I’m about to put one of my clients on hostgator. I’ll update when that is complete.

    I’ve been following this thread for a month or so. Fed up with godaddy I moved to 1and1 over the weekend. I backed up all my data and then pointed the nameservers to 1and1. Once my site was on 1and1 my contact forms worked great. I switched to php mailer and it was an instant delivery using yahoo, hotmail, gmail, and so on. I’m going to be moving all of my other sites off of Godaddy shortly. Godaddy dropped the ball on this one.

Viewing 7 replies - 1 through 7 (of 7 total)