Jonah

Forum Replies Created

Viewing 15 posts - 3,736 through 3,750 (of 4,001 total)
  • Author
    Posts
  • in reply to: Event Sidebar #14025
    Jonah
    Participant

    Try this instead: http://pastebin.com/FP6H4z1h

    in reply to: Event Sidebar #14020
    Jonah
    Participant

    Yep, it’s just a copy of what you posted earlier with the modification to have the map below the content.

    in reply to: Event Sidebar #14015
    Jonah
    Participant

    Hey Tim, try using this code: http://pastebin.com/qez7fTrh

    in reply to: CSS/Navigation Problem #13958
    Jonah
    Participant

    You’re welcome Scott, glad to hear!

    in reply to: CSS/Navigation Problem #13952
    Jonah
    Participant

    Hi Scott, here’s the problem. In the events.css there is this CSS that’s affecting your menu:


    .navlink {
    width: 30%;
    }

    I would suggest just removing that class from your menu items but I’m sure you can figure it out from here. Let me know if you need anything else with this.

    Thanks,
    Jonah

    in reply to: Event Sidebar #13948
    Jonah
    Participant

    Thanks Rob, got it. Ok, so somehow (this is not anything wrong with our code) your single.php file got messed up from lines 98-100. So just remove this bit starting at line 98 and you’ll be golden:


    if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) {
    the_post_thumbnail();
    }

    It’s not going to prevent thumbnails from showing because you already have this code properly added before these lines.

    Let me know if that doesn’t work.

    Thanks,
    Jonah

    in reply to: Event Sidebar #13945
    Jonah
    Participant

    Hey Timothy, yes we have a poor code paste function in our forum, still trying to get that fixed… Please use http://pastebin.com/ as an alternative.

    in reply to: List of categories to filter the views #13926
    Jonah
    Participant

    Hi Mike, as I posted here: https://theeventscalendar.com/support/forums/topic/returning-the-event-category-without-a-label/ – the thread I referenced contains code related to what you are trying to do and should at least help you return your event categories with links to each one.

    I hope that helps,
    Jonah

    in reply to: Event List Widget #13924
    Jonah
    Participant

    Hi hc2ca,

    For #1 you should be able to just go into Appearance > Widgets and adjust the Events List widget options to show the number of events you want to show: http://cl.ly/0a1c33272a2I2h1f1O3b

    For #2, you basically just need to modify the CSS so the events list items do not show bullets. Do you have a URL I can look at as an example so I can give you some CSS to apply?

    Thanks,
    Jonah

    in reply to: Event Sidebar #13921
    Jonah
    Participant

    Hi Timothy, can you pastebin the full contents of your single.php events template so I can figure out why that code is there?

    Thanks,
    Jonah

    in reply to: Registering Additional Customized Widgets #13920
    Jonah
    Participant

    Hi Brad, if you want to create another widget you cannot use the same widget class you declared before – you need a new one. So ‘CustomTribeEventsFeatureWidget2′ and then register_widget( ‘CustomTribeEventsFeatureWidget2’,’CustomWidget02’ );

    That should work. Let me know if not.

    in reply to: CSS/Navigation Problem #13919
    Jonah
    Participant

    Hi Scott, sounds and looks like a script error. Have you looked in Chrome Developer Tools and/or Firebug to see if there are any script errors and what script they may be referencing as the culprit? Looking at the site now it looks fine but I’m assuming you’re still running the older version correct? Do you have a development version I can look at to troubleshoot?

    Jonah
    Participant

    Hi Trevor, the code you posted works fine for me. It’s pulling in my closest upcoming event on my local test site even when I have plenty of events after it.

    I wonder if there’s some conflict with another plugin going or some script in your theme? Have you tried disabling some plugins to see if this fixes it? The site you posted loads very slow for me in Chrome so I wonder if this is related to the issue.

    Another thing you could try is to just use WP_Query() and pass in tribe_events as the post type…

    I hope that helps,
    Jonah

    in reply to: Export Events Calendar data to new site #13917
    Jonah
    Participant

    Hi Frank,

    I would not run the import from 1.33 to 2.0.3 and I would sugest using WP Migrate DB (http://wordpress.org/extend/plugins/wp-migrate-db/) in all cases where you are migrating a WordPress site from one server/environment to another. I use this for all the sites I work on.

    Please first do the migration from 1.33 to 1.33 and then perform the update as all the data will then be properly migrated to the new version. The plugin will not be able to properly migrate otherwise because it needs to run the update script which will convert all of the old event posts into new custom post type events posts.

    Let me know if you have any questions.

    in reply to: Multiday Event Cutoff #13916
    Jonah
    Participant

    Hi naktural, not sure what is going on with the Multi day issue but I think I have a solution for you with the widget/events list. The code I provided you would affect all queries on the page, including the events list and the widget list so it was not ideal to being with. Instead try modifying list.php (make a duplicate copy in an ‘events’ folder in your theme) and right before the if(have_posts()) code add:


    query_posts(array(
    'posts_per_page'=>'10'
    ));

    That should get it so it only modifies the list and not the widget.

Viewing 15 posts - 3,736 through 3,750 (of 4,001 total)