Maxime Freschard
Forum Replies Created
-
Yes I do see these options. But if I am an admin of one blog in the network, when I edit a broadcasted post, the link to the parent should be automatically removed, and it’s not the case. Am I wrong ?
I have the same bug. I have ACF installed.
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] Suppressing minor php noticeI confirm this bug.
A quick fix is to modify the function load_ua_settings in /wp-content/plugins/gravity-forms-google-analytics-event-tracking/includes/class-gravity-forms-event-tracking-feed.php:/** * Load UA Settings * * @since 1.4.0 * @return bool Returns true if UA ID is loaded, false otherwise */ private function load_ua_settings() { $gravity_forms_add_on_settings = get_option( 'gravityformsaddon_gravity-forms-event-tracking_settings', array() ); $this->ua_id = $ua_id = false; if (isset($gravity_forms_add_on_settings[ 'gravity_forms_event_tracking_ua' ])) { $ua_id = $gravity_forms_add_on_settings['gravity_forms_event_tracking_ua']; $ua_regex = "/^UA-[0-9]{5,}-[0-9]{1,}$/"; if ( preg_match( $ua_regex, $ua_id ) ) { $this->ua_id = $ua_id; return true; } if ( ! $this->ua_id ) { return false; } } else { return false; } }Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] jQueryYes on my project I put jQuery manually at the bottom of y template.
I think your plugin should give the option where to put your init code.Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] broken with multisiteSame issue… any fix ?