Site down after using Code Snippets plugin
-
A Code Snippets person said the problem might not be with Code Snippets.
I used the following code to try to make the hyperlinks in bbPress (which is a forum plugin) categories go away. (The categories are in a forum. At the first page of my site that used to show up, the categories include “Introduction” and “Comment on administrator’s writings.”)
After pasting the code
<?php do_action( 'bbp_theme_before_forum_title' ); ?> <?php if (!bbp_is_forum_category( bbp_get_forum_id())){ ?> <a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a> <?php } else { ?> <div class="bbp-forum-title"> <?php bbp_forum_title();?> </div> <?php } ?> <?php do_action( 'bbp_theme_after_forum_title' ); ?>
which I found at
https://bbpress.org/forums/topic/remove-category-hyperlink/
into a Code Snippets page
I got a message that read “There has been a critical error on your website”
and now I am not able to see any of my pages or log in
and it seems too dangerous to use add
define( 'CODE_SNIPPETS_SAFE_MODE', true );
to wp-config.phpand using
?snippets-safe-mode=true
doesn’t work.I’m using version 5.5.5 of WordPress, and version 2.6.6 of bbPress. The version of the Code Snippets plugin is the version that people could download yesterday.
The page I need help with: [log in to see the link]
- The topic ‘Site down after using Code Snippets plugin’ is closed to new replies.