You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,19 @@
1
1
# Changelog
2
2
3
+
## [3.9.4] (2026-01-14)
4
+
5
+
### Added
6
+
* New import functionality to migrate snippets from file uploads with drag-and-drop interface
7
+
* Support for importing snippets from other popular plugins (Header Footer Code Manager, Insert Headers and Footers, Insert PHP Code Snippet)
8
+
* Enhanced file based execution support with improved multisite mode compatibility
9
+
10
+
### Changed
11
+
* Updated links to more recent documentation pages
12
+
13
+
### Fixed
14
+
* Fixed multisite capability checks in Plugin class
15
+
* Fixed snippet execution logic for multisite support by centralizing trashed snippet handling
16
+
* Fixed multisite snippet handling to ensure local snippets use correct table and filter out trashed snippets
3
17
4
18
## [3.9.3] (2025-12-03)
5
19
@@ -378,7 +392,7 @@
378
392
379
393
### Added
380
394
* Added additional editor shortcuts to list in tooltip.
381
-
* Filter for changing Snippets admin menu position. [See this help article for more information.](https://help.codesnippets.pro/article/61-how-can-i-change-the-location-of-the-snippets-admin-menu)
395
+
* Filter for changing Snippets admin menu position. [See this help article for more information.](https://codesnippets.pro/doc/snippets-menu-location/)
382
396
* Ability to filter shortcode output. Thanks to contributions from [Jack Szwergold](https://github.com/JackSzwergold).
@@ -143,7 +143,7 @@ private function load_manage_help() {
143
143
__( 'Be sure to check your snippets for errors before you activate them, as a faulty snippet could bring your whole blog down. If your site starts doing strange things, deactivate all your snippets and activate them one at a time.', 'code-snippets' ),
144
144
__( "If something goes wrong with a snippet, and you can't use WordPress, you can cause all snippets to stop executing by turning on <strong>safe mode</strong>.", 'code-snippets' ),
145
145
/* translators: %s: URL to Code Snippets Pro Docs */
146
-
sprintf( __( 'You can find out how to enable safe mode in the <a href="%s">Code Snippets Pro Docs</a>.', 'code-snippets' ), 'https://help.codesnippets.pro/article/12-safe-mode' )
146
+
sprintf( __( 'You can find out how to enable safe mode in the <a href="%s">Code Snippets Pro Docs</a>.', 'code-snippets' ), 'https://codesnippets.pro/doc/safe-mode/' ),
147
147
]
148
148
);
149
149
}
@@ -159,7 +159,7 @@ private function load_edit_help() {
159
159
$this->get_intro_text() .
160
160
__( 'Here you can add a new snippet, or edit an existing one.', 'code-snippets' ),
161
161
/* translators: %s: URL to Code Snippets Pro Docs */
162
-
sprintf( __( "If you're not sure about the types of snippets you can add, take a look at the <a href=\"%s\">Code Snippets Pro Docs</a> for inspiration.", 'code-snippets' ), 'https://help.codesnippets.pro/collection/2-adding-snippets' ),
162
+
sprintf( __( "If you're not sure about the types of snippets you can add, take a look at the <a href=\"%s\">Code Snippets Pro Docs</a> for inspiration.", 'code-snippets' ), 'https://codesnippets.pro/docs/adding-snippets/' ),
0 commit comments