Title: markd33's Replies | WordPress.org

---

# markd33

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BeyondWords - Text-to-Speech] PHP Fatal error: Uncaught TypeError: strpos()](https://wordpress.org/support/topic/php-fatal-error-uncaught-typeerror-strpos/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/php-fatal-error-uncaught-typeerror-strpos/#post-17216341)
 * Looks like this has been resolved in version 4.2.4:
 * **Fixes**
    - Ensure the $content param of Beyondwords\Wordpress\Core\Player\Player::hasCustomPlayer
      is a string before using strpos.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pattern Manager] Cover Videos do not save to theme directory](https://wordpress.org/support/topic/cover-videos-do-not-save-to-theme-directory/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/cover-videos-do-not-save-to-theme-directory/#post-16758143)
 * It’s not a painful problem because you can just manually place the asset in the
   folder.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] t.split is not a function on posts tab](https://wordpress.org/support/topic/t-split-is-not-a-function-on-posts-tab/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [3 years ago](https://wordpress.org/support/topic/t-split-is-not-a-function-on-posts-tab/#post-16676197)
 * Looks like there was a problem with our theme code that cause Yoast to fail with
   posts.
 *     ```wp-block-code
       function filter_register_post_type_args($args, $post_type){
         if ('post' == $post_type) {
           $args['has_archive'] = true; 
           $args['rewrite'] = array(     'slug' => 'blog',     'with_front' => false    );   	
         }   	return $args; 
       }
       add_filter('register_post_type_args', 'filter_register_post_type_args', 10, 2);
       ```
   
 * What’s wrong with the above is that we had altered the default “post” post type
   to set `$args['has_archive'] = true;` this broke Yoast’s ability to allow us 
   to edit the archive settings. Our developer had made an error there and we adjusted
   the code to use native WordPress by removing this line and selecting the post
   archive using settings -> reading settings posts page and it solved the problem.
   
   I’m not sure what we did was entirely wrong just probably not best practices.
   Would be nice if Yoast didn’t crap out though if that mistake was made.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] wpslCallback is not a function](https://wordpress.org/support/topic/wpslcallback-is-not-a-function/)
 *  [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [3 years ago](https://wordpress.org/support/topic/wpslcallback-is-not-a-function/page/2/#post-16676152)
 * [@tijmensmit](https://wordpress.org/support/users/tijmensmit/) our fix looks 
   like the following:
 *     ```wp-block-code
       add_filter('script_loader_tag', 'gmap_scripts_defer', 10, 2);
       function gmap_scripts_defer($tag, $handle)
       {
       	if ($handle === 'wpsl-js') {
       		return str_replace(' src=', ' onload="document.dispatchEvent(new CustomEvent(wpslJsLoaded))" src=', $tag);
       	}
   
       	if ($handle === 'wpsl-gmap') {
       		preg_match('/<script.*?src=["\']+(.*?)["\']+/', $tag, $matches);
       		if (!isset($matches[1]) || empty($matches[1])) {
       			return $tag;
       		}
   
       		$tag = '<script>function initMapsScript(){const src = ' . str_replace('&', '&', $matches[1]) . ';const script = document.createElement(script);script.src = decodeURI(src);document.body.append(script);}
       							if(typeof wpsl === "undefined"){document.addEventListener(wpslJsLoaded, initMapsScript);} else {initMapsScript();}</script>';
       	}
       	return $tag;
       }
       ```
   
    -  This reply was modified 3 years ago by [markd33](https://wordpress.org/support/users/markd33/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] t.split is not a function on posts tab](https://wordpress.org/support/topic/t-split-is-not-a-function-on-posts-tab/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [3 years ago](https://wordpress.org/support/topic/t-split-is-not-a-function-on-posts-tab/#post-16666436)
 * I have a quick update. Working on getting a premium license so I can submit an
   official support request, client sent over the files for premium (still need 
   to get the account access to submit support request) but I installed premium 
   just to test it and it fixed the issue. 
   However, the moment I deactivate premium,
   the issue returns.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple Sitemap - Create a Responsive HTML Sitemap] Pro Version Issues](https://wordpress.org/support/topic/pro-version-issues-3/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/pro-version-issues-3/#post-14883046)
 * They finally responded with details on what’s going on. Apparently they changed
   ecommerce solutions for the website and emailed everyone about needing to upgrade
   and repurchase license. It can’t be manually upgraded from WordPress if on older
   version.
 * They gave me 100% credit on a new license to cover the cost (since we already
   recently paid on the old system and will be cancelling our license on the old
   system. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Unexpected error found when trying to post – YOAST is causing it!](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/)
 *  [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years ago](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/page/2/#post-14357747)
 * I worked with my corporate office to get Imperva to disable Minification of code(
   and clearing of cache).
 * That seemed to have resolved the issue. It was altering JavaScript for Yoast 
   somehow causing this issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Unexpected error found when trying to post – YOAST is causing it!](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/)
 *  [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years ago](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/page/2/#post-14356765)
 * [@mikes41720](https://wordpress.org/support/users/mikes41720/) I can confirm 
   we tested it happens even after conflict testing. I can also confirm we are using
   Imperva. I’m working with Corporate to see if they can help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Unexpected error found when trying to post – YOAST is causing it!](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/)
 *  [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years ago](https://wordpress.org/support/topic/unexpected-error-found-when-trying-to-post-yoast-is-causing-it/page/2/#post-14353816)
 * Having the same issue. Here’s what’s in the console. Chrome: 90.0.4430.85. Windows
   10 latest version. WordPress 5.7.1.
 *     ```
       Uncaught SyntaxError: Invalid or unexpected token
       react-dom.min.js?ver=16.13.1:9 TypeError: Cannot read property 'SnippetEditor' of undefined
           at block-editor-1611.js:1
           at zj (react-dom.min.js?ver=16.13.1:13)
           at Th (react-dom.min.js?ver=16.13.1:10)
           at tj (react-dom.min.js?ver=16.13.1:10)
           at Te (react-dom.min.js?ver=16.13.1:10)
           at react-dom.min.js?ver=16.13.1:7
           at unstable_runWithPriority (react.min.js?ver=16.13.1:2)
           at Da (react-dom.min.js?ver=16.13.1:7)
           at Pg (react-dom.min.js?ver=16.13.1:7)
           at ha (react-dom.min.js?ver=16.13.1:7)
       Me	@	react-dom.min.js?ver=16.13.1:9
       Jh.f.componentDidCatch.c.callback	@	react-dom.min.js?ver=16.13.1:10
       Wg	@	react-dom.min.js?ver=16.13.1:7
       oj	@	react-dom.min.js?ver=16.13.1:9
       Aj	@	react-dom.min.js?ver=16.13.1:11
       unstable_runWithPriority	@	react.min.js?ver=16.13.1:2
       Da	@	react-dom.min.js?ver=16.13.1:7
       ab	@	react-dom.min.js?ver=16.13.1:10
       Te	@	react-dom.min.js?ver=16.13.1:10
       (anonymous)	@	react-dom.min.js?ver=16.13.1:7
       unstable_runWithPriority	@	react.min.js?ver=16.13.1:2
       Da	@	react-dom.min.js?ver=16.13.1:7
       Pg	@	react-dom.min.js?ver=16.13.1:7
       ha	@	react-dom.min.js?ver=16.13.1:7
       Ja	@	react-dom.min.js?ver=16.13.1:13
       ch	@	react-dom.min.js?ver=16.13.1:8
       e	@	data.min.js?ver=9430…126df689839bb96b9:1
       t	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       p	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       dispatch	@	data.min.js?ver=9430…126df689839bb96b9:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       Promise.then (async)		
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       c	@	redux-routine.min.js…097c6fbe95625e2fb:1
       t	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.iterator	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       c	@	redux-routine.min.js…097c6fbe95625e2fb:1
       t	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	editor.min.js?ver=db…b432a2a5d7898e51d:1
       Bh	@	react-dom.min.js?ver=16.13.1:9
       oj	@	react-dom.min.js?ver=16.13.1:9
       Aj	@	react-dom.min.js?ver=16.13.1:11
       unstable_runWithPriority	@	react.min.js?ver=16.13.1:2
       Da	@	react-dom.min.js?ver=16.13.1:7
       ab	@	react-dom.min.js?ver=16.13.1:10
       Te	@	react-dom.min.js?ver=16.13.1:10
       (anonymous)	@	react-dom.min.js?ver=16.13.1:7
       unstable_runWithPriority	@	react.min.js?ver=16.13.1:2
       Da	@	react-dom.min.js?ver=16.13.1:7
       Pg	@	react-dom.min.js?ver=16.13.1:7
       ha	@	react-dom.min.js?ver=16.13.1:7
       Ja	@	react-dom.min.js?ver=16.13.1:13
       ch	@	react-dom.min.js?ver=16.13.1:8
       e	@	data.min.js?ver=9430…126df689839bb96b9:1
       t	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       p	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       dispatch	@	data.min.js?ver=9430…126df689839bb96b9:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       Promise.then (async)		
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       Promise.then (async)		
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       n	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.any	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       c	@	redux-routine.min.js…097c6fbe95625e2fb:1
       t	@	redux-routine.min.js…097c6fbe95625e2fb:1
       r.iterator	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       e	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       c	@	redux-routine.min.js…097c6fbe95625e2fb:1
       t	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	redux-routine.min.js…097c6fbe95625e2fb:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       tryCatch	@	wp-polyfill.min.js?ver=7.4.4:1
       invoke	@	wp-polyfill.min.js?ver=7.4.4:1
       t.<computed>	@	wp-polyfill.min.js?ver=7.4.4:1
       n	@	data.min.js?ver=9430…126df689839bb96b9:1
       c	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       ne	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       tryCatch	@	wp-polyfill.min.js?ver=7.4.4:1
       invoke	@	wp-polyfill.min.js?ver=7.4.4:1
       t.<computed>	@	wp-polyfill.min.js?ver=7.4.4:1
       n	@	data.min.js?ver=9430…126df689839bb96b9:1
       c	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       setTimeout (async)		
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       tryCatch	@	wp-polyfill.min.js?ver=7.4.4:1
       invoke	@	wp-polyfill.min.js?ver=7.4.4:1
       t.<computed>	@	wp-polyfill.min.js?ver=7.4.4:1
       n	@	data.min.js?ver=9430…126df689839bb96b9:1
       c	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       f	@	data.min.js?ver=9430…126df689839bb96b9:1
       s	@	data.min.js?ver=9430…126df689839bb96b9:1
       c	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	edit-post.min.js?ver…3459a7d6f527e1f90:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       s	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       (anonymous)	@	data.min.js?ver=9430…126df689839bb96b9:1
       Ge	@	data.min.js?ver=9430…126df689839bb96b9:1
       sr	@	edit-post.min.js?ver…3459a7d6f527e1f90:1
       we	@	react-dom.min.js?ver=16.13.1:8
       zj	@	react-dom.min.js?ver=16.13.1:13
       Th	@	react-dom.min.js?ver=16.13.1:10
       tj	@	react-dom.min.js?ver=16.13.1:10
       Te	@	react-dom.min.js?ver=16.13.1:10
       Ja	@	react-dom.min.js?ver=16.13.1:13
       md	@	react-dom.min.js?ver=16.13.1:12
       (anonymous)	@	react-dom.min.js?ver=16.13.1:12
       Rh	@	react-dom.min.js?ver=16.13.1:10
       nd	@	react-dom.min.js?ver=16.13.1:12
       I.render	@	react-dom.min.js?ver=16.13.1:13
       br	@	edit-post.min.js?ver…3459a7d6f527e1f90:1
       (anonymous)	@	post.php?post=15436&action=edit:334
       ```
   
    -  This reply was modified 5 years ago by [markd33](https://wordpress.org/support/users/markd33/).
      Reason: added hidden errors
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Tickets and Registration] Security Issue – Latest version creating WordPress Users for event attendees](https://wordpress.org/support/topic/security-issue-latest-version-creating-wordpress-users-for-event-attendees/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/security-issue-latest-version-creating-wordpress-users-for-event-attendees/#post-14153188)
 * Confirmed, and thank you for the quick update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MashShare - Social Media Share Buttons, Social Share Icons] PHP 7.4 Compatibility Issue](https://wordpress.org/support/topic/php-7-4-compatibility-issue/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/php-7-4-compatibility-issue/#post-13268265)
 * Hi Rene,
 * I can confirm that the dev version does indeed solve the issue. Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Jetpack incorrectly blocking ip](https://wordpress.org/support/topic/jetpack-incorrectly-blocking-ip/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/jetpack-incorrectly-blocking-ip/#post-13208236)
 * thanks managed to get through
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Existing Even Organizers and Venues not showing correctly when adding new event](https://wordpress.org/support/topic/existing-even-organizers-and-venues-not-showing-correctly-when-adding-new-event/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/existing-even-organizers-and-venues-not-showing-correctly-when-adding-new-event/#post-10630777)
 * Hi [@vicskf](https://wordpress.org/support/users/vicskf/), I can confirm that
   the update did indeed fix the issue. Thanks for the prompt support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Existing Even Organizers and Venues not showing correctly when adding new event](https://wordpress.org/support/topic/existing-even-organizers-and-venues-not-showing-correctly-when-adding-new-event/)
 *  Thread Starter [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/existing-even-organizers-and-venues-not-showing-correctly-when-adding-new-event/#post-10628502)
 * Hi [@randallscottholbrook](https://wordpress.org/support/users/randallscottholbrook/),
   you can rollback by downloading an older version here: [https://wordpress.org/plugins/the-events-calendar/advanced/](https://wordpress.org/plugins/the-events-calendar/advanced/).
   Then upload it to oyur server overwriting the current version. I recommend using
   an FTP upload for this if possible.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] WordFence reports file differences between repository and installed plugin](https://wordpress.org/support/topic/wordfence-reports-file-differences-between-repository-and-installed-plugin/)
 *  [markd33](https://wordpress.org/support/users/markd33/)
 * (@markd33)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/wordfence-reports-file-differences-between-repository-and-installed-plugin/#post-10058471)
 * [@jpnl](https://wordpress.org/support/users/jpnl/) What I mean by false positive
   is that while there may be differences being recorded, there’s nothing actually
   wrong. Your site wasn’t maliciously modified and you can safely ignore the warning
 * You can find out more information on this here: [https://www.wordfence.com/help/scan/options/?utm_source=plugin&utm_medium=pluginUI&utm_campaign=docsIcon#repo-plugin](https://www.wordfence.com/help/scan/options/?utm_source=plugin&utm_medium=pluginUI&utm_campaign=docsIcon#repo-plugin)

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

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