drkknight32
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Working with Gravity Forms 1.6.x and 1.7?I’m also looking for some info. I have it installed on my local instance and while it is grabbing my custom post types it’s having trouble with the custom taxonomies. Not really sure what to do in order to fix it.
Forum: Fixing WordPress
In reply to: Distraction Free WritingI changed the functions.php file with a snippet of code. I forgot where I found it, but it works:
function myplugin_tinymce_buttons($buttons)
{
//removethe following button from tinymce
$remove=array(‘fullscreen’);return array_diff($buttons,$remove);
}add_filter(‘mce_buttons’,’myplugin_tinymce_buttons’);
Like I said, the keyboard shortcut still functions though
Forum: Fixing WordPress
In reply to: Custom Post Types and PaginationHm I guess you’re right. I don’t want to remove all of the queries I have on the front page though. I like the way the tabbed content works.
I suppose I can link directly to the section: website.com/reviews
And place the pagination on that page where it’s the only query available.
Forum: Plugins
In reply to: Stopping bad HTMLSorry it took me so long to get back to you.
If this is just a CSS style, wouldn’t the user be able to change the CSS attributes on the page with something like Chrome and put the HTML editor back into the view? Maybe I’m giving Chrome too much credit.
Maybe there’s another way to make sure that the visual+HTML editor is secure?
Forum: Plugins
In reply to: Stopping bad HTMLHmm…I think this might help with another problem I have, but not this one.
I think what I’ll end up doing is disabling the HTML editor completely. The visual editor is able to properly escape any malicious code it looks like, and I don’t think a typical user will really need HTML anyways. Just have to figure out how to do that now…
Thanks