Title: ewebber's Replies | WordPress.org

---

# ewebber

  [  ](https://wordpress.org/support/users/ewebber/)

 *   [Profile](https://wordpress.org/support/users/ewebber/)
 *   [Topics Started](https://wordpress.org/support/users/ewebber/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ewebber/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ewebber/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ewebber/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ewebber/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ewebber/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/ewebber/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ewebber/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ninja Forms - The Contact Form Builder That Grows With You] My Contact Forms No Longer Work After Update](https://wordpress.org/support/topic/my-contact-forms-no-longer-work-after-update/)
 *  [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/my-contact-forms-no-longer-work-after-update/#post-16873802)
 * I seem to have a similar issue, over my many sites, some of the forms just aren’t
   sending messages anymore and I don’t think it was due to the latest update.
 * What seems to be (kind of) working – is to clear the “reply-to” field in the 
   settings and hit publish.
 * I wonder it it’s a wp_mail issue rather than ninja forms.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Migrate stats from .com to self hosted domain](https://wordpress.org/support/topic/migrate-stats-from-com-to-self-hosted-domain/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/migrate-stats-from-com-to-self-hosted-domain/#post-5611931)
 * I’ve done this on the wordpress.com forums
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Using post categories](https://wordpress.org/support/topic/using-post-categories/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/using-post-categories/#post-4604793)
 * I’ve tried to play around with the file, but I’m not getting anywhere, am I looking
   in the right place to be able to hook into the saving process, or should I be
   doing that elsewhere?
    Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Events page showing yesterday's events](https://wordpress.org/support/topic/events-page-showing-yesterdays-events/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/events-page-showing-yesterdays-events/#post-4638332)
 * looks like that worked. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Events page showing yesterday's events](https://wordpress.org/support/topic/events-page-showing-yesterdays-events/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/events-page-showing-yesterdays-events/#post-4638331)
 * looks like that worked. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] What type of post does Event Manager use?](https://wordpress.org/support/topic/what-type-of-post-does-event-manager-use/)
 *  [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/what-type-of-post-does-event-manager-use/#post-4637379)
 * Hi Val,
    I’m using events manager, but also using Relevanssi for search, which
   will search custom post types and is a bit more powerful than standard search
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Using post categories](https://wordpress.org/support/topic/using-post-categories/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/using-post-categories/#post-4604745)
 * @anglo_nwl thanks, I now have it showing the categories on the event submit form,
   but it’s not passing them through the the created event
 * so far I have
 *     ```
       <?php
       /*
        * This file is called by templates/forms/location-editor.php to display fields for uploading images on your event form on your website. This does not affect the admin featured image section.
       * You can override this file by copying it to /wp-content/themes/yourtheme/plugins/events-manager/forms/event/ and editing it there.
       */
       global $EM_Event;
       /* @var $EM_Event EM_Event */
       $categories = get_categories(array('orderby'=>'name','hide_empty'=>0));
       ?>
       <?php if( count($categories) > 0 ): ?>
       <div class="event-categories">
       	<!-- START Categories -->
       	<label for="event_categories[]"><?php _e ( 'Category:', 'dbem' ); ?></label>
       	<select name="event_categories[]" multiple size="10">
       	<?php
       	$selected = $EM_Event->get_categories()->get_ids();
       	$walker = new EM_Walker_CategoryMultiselect();
       	$args_em = array( 'hide_empty' => 0, 'name' => 'event_categories[]', 'hierarchical' => true, 'id' => EM_TAXONOMY_CATEGORY, 'taxonomy' => EM_TAXONOMY_CATEGORY, 'selected' => $selected, 'walker'=> $walker);
       	echo walk_category_dropdown_tree($categories, 0, $args_em);
       	?></select>
       	<!-- END Categories -->
       </div>
       <?php endif; ?>
       ```
   
 * Is it possible to make this change in this file and can you help me understand
   what I should change, I’d really appreciate some pointers – thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Using post categories](https://wordpress.org/support/topic/using-post-categories/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/using-post-categories/#post-4604742)
 * [@angelo_nwl](https://wordpress.org/support/users/angelo_nwl/) can you let me
   know if I’m in the right file, or should I be looking at a different one.
    Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Filter By Comments] Archive and Search results](https://wordpress.org/support/topic/archive-and-search-results/)
 *  [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/archive-and-search-results/#post-4067549)
 * I have this working with:
 * `<?php query_posts($query_string . '&orderby_last_comment=1&paged=' . $paged);?
   >`
 * in my category.php just before
 * `<?php if (have_posts()) : while (have_posts()) : the_post();`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Using post categories](https://wordpress.org/support/topic/using-post-categories/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/using-post-categories/#post-4604725)
 * Thanks, I have added the categories into the events post type and I am showing
   them alongside the main posts which is great. Now I’m looking at editing the 
   form so that people can pick those categories from the front end.
 * I am in the /wp-content/themes/yourtheme/plugins/events-manager/forms/event/categories-
   public.php file, what should I change to pull the default categories instead 
   of the EM ones?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Including content in the buddypress activity stream](https://wordpress.org/support/topic/including-content-in-the-buddypress-activity-stream/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/including-content-in-the-buddypress-activity-stream/#post-4612400)
 * For anyone looking for a more helpful response to this. I ended up using a filter
   for a few different post types at once and am not using the bp-em-activity.php
   for it anymore.
 * How I did that is over here: [https://buddypress.org/support/topic/another-custom-post-type-in-activity-stream/#post-178471](https://buddypress.org/support/topic/another-custom-post-type-in-activity-stream/#post-178471)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Including content in the buddypress activity stream](https://wordpress.org/support/topic/including-content-in-the-buddypress-activity-stream/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/including-content-in-the-buddypress-activity-stream/#post-4612311)
 * I know that it’s that file, but I can’t work out what to change, can you help
   me with some pointers?
    Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Subscribe To Comments Reloaded] Which database stores the subscription details](https://wordpress.org/support/topic/which-database-stores-the-subscription-details/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/which-database-stores-the-subscription-details/#post-4606795)
 * great, thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Subscribe To Comments Reloaded] Which database stores the subscription details](https://wordpress.org/support/topic/which-database-stores-the-subscription-details/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/which-database-stores-the-subscription-details/#post-4606789)
 * Hi, sorry not sure what happened there I want to kmow which database table stores
   the subscription details. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Changing the time select format](https://wordpress.org/support/topic/changing-the-time-select-format/)
 *  Thread Starter [ewebber](https://wordpress.org/support/users/ewebber/)
 * (@ewebber)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/changing-the-time-select-format/#post-4595845)
 * Thanks I’ll give that a go

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/ewebber/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/ewebber/replies/page/2/?output_format=md)