ewebber
Forum Replies Created
-
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
In reply to: Migrate stats from .com to self hosted domainI’ve done this on the wordpress.com forums
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?
Thankslooks like that worked. Thanks
looks like that worked. Thanks
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@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
@angelo_nwl can you let me know if I’m in the right file, or should I be looking at a different one.
ThanksForum: Plugins
In reply to: [Filter By Comments] Archive and Search resultsI 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();
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?
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
I know that it’s that file, but I can’t work out what to change, can you help me with some pointers?
Thanksgreat, thanks
Hi, sorry not sure what happened there I want to kmow which database table stores the subscription details. Thanks
Thanks I’ll give that a go