04/11/2019 at 9:35 am
#489550
Keymaster
You need to edit the cmap.php
file found in this folder:
../wp-content/plugins/connections-cmap/
On line 847
you shold find:
add_action( 'cn_action_list_before-' . self::$template->getSlug() , array( __CLASS__, 'formClose'), 99999 );
Change it to:
add_action( 'cn_action_list_after-' . self::$template->getSlug() , array( __CLASS__, 'formClose'), 99999 );
On line 852
you should find:
add_action( 'cn_action_list_before-' . self::$template->getSlug() , array( __CLASS__, 'searchForm') , 1 );
Change it to:
add_action( 'cn_action_list_after-' . self::$template->getSlug() , array( __CLASS__, 'searchForm') , 1 );
Please note that is this not supported and may not function as expected. These changes will be lost as updates to cMap are released.
Hope this helps!