SiteDesignUSA
Forum Replies Created
-
added <strong>
//******************** Preparing Snippet Description ************************* */
// Custom allowed HTML tags
$allowed_html = array(
'h1' => array(),
'h2' => array(),
'h3' => array(),
'h4' => array(),
'h5' => array(),
'h6' => array(),
'b' => array(),
'strong' => array(),
'pre' => array(),
'p' => array(),
'ul' => array(),
'ol' => array(),
'li' => array(),
);
// Override the description sanitization
$snippet_desc = wp_kses($_REQUEST['snippet_desc'] ?? '', $allowed_html);
//****************************** END *********************************** */This is how I’ve handled my issue. I’ve hard-coded in the /plugins/post-snippets/src/PostSnippets/Edit.php file line 1266
//******************** Preparing Snippet Description ************************* */
// Custom allowed HTML tags
$allowed_html = array(
'h1' => array(),
'h2' => array(),
'h3' => array(),
'h4' => array(),
'h5' => array(),
'h6' => array(),
'b' => array(),
'pre' => array(),
'p' => array(),
'ul' => array(),
'ol' => array(),
'li' => array(),
);
// Override the description sanitization
$snippet_desc = wp_kses($_REQUEST['snippet_desc'] ?? '', $allowed_html);
//****************************** END *********************************** */Would be neat to have a filter on this so I can change for my use but you wouldn’t have to change the plugin core code to this extent.
Thanks!
Forum: Plugins
In reply to: [Yoast SEO] Yoast update today crashed WP 5.8.3I just want to add this for posterity and I hope it helps someone. This type of error returned 42 results but this was the only one open to replies.
I was having the same sort of issue. If you’ll notice,
plugins/wordpress-seo/vendor/composer/
and right after that is a
../../admin/
and then your file. Those ../../ is taking you up two levels in the folder hierarchy to the admin folder. Check inside for the file. Is it there?
The error is saying that it’s not.
My specific error, using wp-cli, was
../../src/config/schema-types.php
I bring this up because someone else pointed out that perhaps Git was ignoring a file in .gitignore
My use case was that I use Capistrano to deploy and had set :copy_exclude to not upload “config” which is the name of the folder I keep local stuff stored, but it also was applying to the “config” folder in Yoasts plugin. I changed “config” to “/config” (specific location) and, ta-da! Fixed.
Moral of story- If you use automation, a quick check of .gitignore, Capistrano or any other automation app for excluded or ignored files with the names in your error and make them more specific to locations.
Hope it helps!
- This reply was modified 3 years, 2 months ago by SiteDesignUSA. Reason: more helpful and specific
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Download failed. Not Found+1
Just updating one of my sites and ta da na da…
No download… not found
Forum: Plugins
In reply to: [Login Security Solution] Buddypress CompatibiltyThis is something I’m working on now too.
How can I call the LSS checks on the buddypress registration page?
Also, it would be nice to have the WordPress password strength indicator too…
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Red alert/error won't disappearHello. I just wanted to chime in and say I’m having the same issue. Red covers the field and the user can’t see input. They become discouraged and frustrated.
I changed the style on the selector
.wpcf7 span.wpcf7-not-valid-tip remove right: 0; and change top to top: -2px;
At least it moves the red span out of the users way so they can see. What happened to the jquery?
Thanks for the plugin
Forum: Plugins
In reply to: [Theme My Login] Re-post: https redirect problemsI’m interested in this too. I’m moving my admin to SSL (https) on a few websites this is installed on and want to be sure it’ll work.
Forum: Plugins
In reply to: [WordPress File Monitor Plus] Undefined index: is_admin_alert Error noticePut line 604 of wpfmp.class.php back to original state and it works. Left the line 190 in wpfmp.settings.class.php with the new isset.
Perhaps once it is declared then all is well. I don’t havethe time to go into details.
-TJ
Forum: Plugins
In reply to: [WordPress File Monitor Plus] Undefined index: is_admin_alert Error noticeNope.
Now the error message won’t clear.
I’m probably doing it wrong.
Oops, double post.
Thanks again for your work and theme.
Thanks Alexander.
The one from dFactory works without typing in links and works with built in WordPress gallery.
It looked like the results you achieved on one of your pages so I made an assumption. Sorry.
Have a great day!
Hi,
See my topic at…
It might have to do with Stop Spammers calling for user info too early before bbpress and buddypress and they don’t like it.
I’ve left a message for Keith. Hopefully he’ll be able to patch the plugin.
-TJ
P.S. This is a great plugin and just trying to help where I can.
Hi,
See my topic at…
It might have to do with Stop Spammers calling for user info too early before bbpress and buddypress and they don’t like it.
I’ve left a message for Keith. Hopefully he’ll be able to patch the plugin.
-TJ
Keith,
I posted here..
about the bbpress issues (buddypress too).
You may be interested in the developers take on calling for user info too early (before their plugins…)
-TJ
Hi,
See my topic at…
It might have to do with Stop Spammers calling for user info too early before bbpress and buddypress and they don’t like it.
I’ve left a message for Keith. Hopefully he’ll be able to patch the plugin.
-TJ