mibrad_za
Forum Replies Created
-
Cool thx
Yes it was on the page that was freezing
Same on Chrome, Edge and Safari on Windows and Mac. All latest versions, all updated.
Map details for page are:
[gd_notifications]
[gd_map width=”100%” height=”70vh” maptype=”ROADMAP” zoom=”0″ post_settings=”1″ cat_filter=”1″ child_collapse=”1″ scrollwheel=”1″]It freezes as soon as the “No Records Found Sorry, no records were found. Please adjust your search criteria and try again.” dialog is shown.
Thx for the speedy reply. Only the map freezes when no markers are on the zoomed in/browsed area. This is a local install for now while I test all the functionality.. Restarting the browser / reloading the page just starts the process all over with the same result.
Increased max_input_vars limit and now works! Thx
Forum: Plugins
In reply to: [SharDB] Multiple Server InstallationIve split them 50/50 for now, 000-7ff on the local and 800-fff on the remote.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Custom TaxonomyWould it not be here somewhere?
function all_cats($exclude = false, $orderby = 'slug') { $all_cats = array(); $s2_taxonomies = apply_filters('s2_taxonomies', array('category')); foreach( $s2_taxonomies as $taxonomy ) { if ( taxonomy_exists($taxonomy) ) { $all_cats = array_merge($all_cats, get_categories(array('hide_empty' => false, 'orderby' => $orderby, 'taxonomy' => $taxonomy))); } } if ( $exclude === true ) { // remove excluded categories from the returned object $excluded = explode(',', $this->subscribe2_options['exclude']); // need to use $id like this as this is a mixed array / object $id = 0; foreach ( $all_cats as $cat) { if ( in_array($cat->term_id, $excluded) ) { unset($all_cats[$id]); } $id++; } } return $all_cats;
I tried replacing the array(‘category’) with array(‘events_categories’) but still ended up with nothing..
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Custom TaxonomyI’m only wanting one type of custom taxonomy so that is fine.
Please also understand that the plugin is working fine with the custom taxonomy code used except for in the email template where I use the {CATS} element to bring in the custom taxonomy. Should I create another element for this and where would I start to look?
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Custom TaxonomyIts the All in One Event Calender by Time.ly ver 1.11.4
The code for registering custom post types are in the same standalone plugin.
function my_post_types($types) {
$types[] = ‘ai1ec_event’;
return $types;
}
add_filter(‘s2_post_types’,’my_post_types’);which all works fine.
Forum: Plugins
In reply to: [Subscribe2 - Form, Email Subscribers & Newsletters] Custom Post TypesCustom Taxonomy – When sending out Email notifications using the {CATS} and {TAGS} elements in the email template, nothing is picked up even though thy are now be pulled in elsewhere in the plugin?