Title: markjl's Replies | WordPress.org

---

# markjl

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/page/4/#post-13756807)
 * Thank you, Site kit now appears stable with WPML.
    Thanks again, kind regards,
   Mark
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Taxonomy Refreshed] Count update for media](https://wordpress.org/support/topic/count-update-for-media/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/count-update-for-media/#post-13687369)
 * OK will do. I think media library assistant offers display shortcodes. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Taxonomy Refreshed] Count update for media](https://wordpress.org/support/topic/count-update-for-media/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/count-update-for-media/#post-13687042)
 * Thanks Neil.
    The count now works correctly after updating count callback to `
   _update_generic_term_count`.
 * Could you advise though.
    I would like to view the media attached to the term
   at [https://siteurl/?pack=termvalue](https://siteurl/?pack=termvalue)
 * But no media is displayed. I assume the thing is configured to display the attached
   posts at that urL, not the media.
    Can this be changed or is there a shortcode
   to display media attached to terms? Thanks
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Taxonomy Refreshed] Count update for media](https://wordpress.org/support/topic/count-update-for-media/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/count-update-for-media/#post-13679727)
 * Hi Neil.
    Thanks for responding. I am using v1.2.2 Here it is …
 *     ```
       <?php
   
       add_action( 'init', 'register_staxo_pack', 10 );
   
       function register_staxo_pack() {
       register_taxonomy( "pack", 
         array (
         0 => 'attachment',
       ),
         array (
         'name' => 'pack',
         'description' => '',
         'labels' => 
         array (
           'name' => 'pack',
           'singular_name' => 'Post Term',
           'search_items' => 'Search Terms',
           'popular_items' => 'Popular Terms',
           'all_items' => 'All Terms',
           'parent_item' => 'Parent Term',
           'parent_item_colon' => 'Parent Term:',
           'edit_item' => 'Edit Term',
           'view_item' => 'View Term',
           'update_item' => 'Update Term',
           'add_new_item' => 'Add New Term',
           'new_item_name' => 'New Term Name',
           'separate_items_with_commas' => 'Separate terms with commas',
           'add_or_remove_items' => 'Add or remove terms',
           'choose_from_most_used' => 'Choose from the most used terms',
           'not_found' => 'No Terms found',
           'no_terms' => 'No Terms',
           'items_list_navigation' => 'Terms list navigation',
           'items_list' => 'Terms list',
           'most_used' => 'Most Used',
           'back_to_items' => '← Back to Terms',
         ),
         'public' => true,
         'publicly_queryable' => true,
         'hierarchical' => true,
         'show_ui' => true,
         'show_in_menu' => true,
         'show_in_nav_menus' => true,
         'show_tagcloud' => true,
         'show_in_quick_edit' => true,
         'show_admin_column' => true,
         'capabilities' => 
         array (
           'manage_terms' => 'manage_categories',
           'edit_terms' => 'manage_categories',
           'delete_terms' => 'manage_categories',
           'assign_terms' => 'edit_posts',
         ),
         'rewrite' => false,
         'query_var' => 'pack',
         'update_count_callback' => '',
         'show_in_rest' => true,
         'rest_base' => '',
         'rest_controller_class' => '',
         'sort' => false,
       ) );
       }
       // Display Terms with Posts: none
       // Display Terms Before text: pack
       // Display Terms After text: 
   
       /**Admin List screens for these post type(s) will have a filter list dropdown:
         attachment
       with wp_dropdown_categories parameters:
       array (
         'taxonomy' => 'pack',
         'show_option_all' => 'All Terms',
         'orderby' => 'name',
         'order' => 'ASC',
         'show_count' => false,
         'hide_empty' => false,
         'hide_if_empty' => false,
         'selected' => filter_input( INPUT_GET, \'pack\', FILTER_SANITIZE_STRING ),
         'hierarchical' => false,
         'name' => 'pack',
         'value_field' => 'slug',
       )
       **/
   
       /**Term count callback modified.
       Applies to posts with status: All except trash
       **/
   
       /**Terms control parameters set.
       Applies to posts with status:  All statuses except Trash.
   
       Notifications only if outside bounds will be given and user cannot change terms.
   
       No minimum number of terms.
       No maximum number of terms.
       **/
       ```
   
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Open Notification](https://wordpress.org/support/topic/open-notification/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/open-notification/#post-13667375)
 * Ah, silly me. There was a message to click ‘Got it’ telling me I’d had increased
   page views :-). Clicked and the notification disappeared. Thanks sorry for bothering
   you
    -  This reply was modified 5 years, 8 months ago by [markjl](https://wordpress.org/support/users/markjl/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/page/3/#post-13659404)
 * I’m disappointed to announce that the issue is not completely solved.
    Site kit
   stays connected when you swap from language to language. But still disconnects
   if you select ‘All languages’ and then back to a single language
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/page/3/#post-13653514)
 * Hello. Thank you very much indeed for the update, WPML 4.4.5 solves the problem.
   What a relief, back to normal. Now I can get on and sort out my SEO !!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/page/2/#post-13538378)
 * I noticed that the update to v1.18 did not solve the reconnect problem
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TreePress - Easy Family Trees & Ancestor Profiles] Members not found](https://wordpress.org/support/topic/members-not-found-3/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/members-not-found-3/#post-13490097)
 * Permalinks need to be set to post name
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/#post-13477303)
 * Well spotted. I can reproduce this behaviour. Changing the WPML language selector
   from EN to FR to EN makes site kit disconnect.
 * Thanks. Hope you find the solution, please keep us posted.
    -  This reply was modified 5 years, 10 months ago by [markjl](https://wordpress.org/support/users/markjl/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/#post-13476034)
 * Ah no.
    It’s disconnected again …
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/#post-13475756)
 * Yes many thanks that’s resolved by changing the property in Analytics from HTTP://
   to https:// Site kit now stays connected. Tx
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/#post-13474447)
 * For some reason, the default site address in the analytics property was http://
   and not https://
 * My guess is it should hold now.
    Thanks for the clues, Kind regards, Mark
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Site Kit by Google - Analytics, Search Console, AdSense, Speed] Site Kit asks me to reconnect all the time](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/site-kit-asks-me-to-reconnect-all-the-time/#post-13474216)
 * It worked for about 10 minutes then back to the same message.
    I filled in the
   above form with site health info Thanks in advance
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Media Library Assistant] More than 10 items per page](https://wordpress.org/support/topic/more-than-10-items-per-page/)
 *  Thread Starter [markjl](https://wordpress.org/support/users/markjl/)
 * (@markjl)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/more-than-10-items-per-page/#post-13093947)
 * Thank you David, I installed the development version from the above link and 
   I can now filter more than 10 items.
 * Thanks for this plug-in, just getting into it.
    Any thoughts about making it 
   drag-and-drop?

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

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