Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Tom Braider

    (@tom-braider)

    Reactivate the plugin.
    To do after every update!
    And check the options.

    Thread Starter zaccc

    (@zaccc)

    Thanks for your help! I suggest that in the next version you can see daily statistics visits. To see from which country they were visiting in 24 hours.

    maybe you forget add square brackets?
    orig

    if (is_admin())
    
    		add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
    		add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
    
    	// column post list
    	if (is_admin())
    
    		add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
    		add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));

    mod

    // column page list
    	if (is_admin())
            {
    		add_action('manage_pages_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
    		add_filter('manage_pages_columns', array(&$this, 'cpdColumn'));
            }
    
    	// column post list
    	if (is_admin())
            {
    		add_action('manage_posts_custom_column', array(&$this, 'cpdColumnContent'), 10, 2);
    		add_filter('manage_posts_columns', array(&$this, 'cpdColumn'));
            }

    Plugin Author Tom Braider

    (@tom-braider)

    you are right!
    fortunately nothing is brocken, only a needless filter set.
    thanks for the hint!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Count per Day 2.17’ is closed to new replies.