fredellini
Forum Replies Created
-
Forum: Plugins
In reply to: [Raptor Editor] disable plugin for certain elements by classi got a fix with this line of css:
.page-id-24 .ui-editor-click-button-to-edit-button {margin-top: 350px;}
whereas 24 is the id of my contact page. not really good solution but it will help until the problem is really solved.
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Disable on specific pages?thanky you scribu – this is awesome!
this snippet works for posts too:
function front_editor_disable() { global $wp_query; if ( is_page() && get_post_meta($wp_query->posts[0]->ID, 'fee_disable', true) ) return true; if ( is_single() && get_post_meta($wp_query->posts[0]->ID, 'fee_disable', true) ) return true; } add_filter('front_end_editor_disable', 'front_editor_disable');whenever the custom field is “true” no editing is possible.
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Disable on specific pages?close, this one works for me with the latest version like a charm:
function front_editor_disable() {
if ( is_page(*pageid*) )
return true;
}
add_filter(‘front_end_editor_disable’, ‘front_editor_disable’);or can you use a custom field to fill in the page id?
best regards!Forum: Plugins
In reply to: [Plugin: Event Calendar / Scheduler] doesn't work with wp 3.0.3Forum: Plugins
In reply to: [Plugin: Event Calendar / Scheduler] doesn't work with wp 3.0.3all right you need to put this code into any page where you want the schudeler to appear:
Forum: Plugins
In reply to: [Plugin: Event Calendar / Scheduler] doesn't work with wp 3.0.3i discovered the options under plugins/scheduler but whenever saving the url for a custom page the calendar won’t show up
Forum: Plugins
In reply to: [Plugin: Front-end Editor] narm theme problemstherfore the theme is using cufon for displaying non-standard fonts.
everything written in that fonts cannot be edited yet.Forum: Plugins
In reply to: [Plugin: Front-end Editor] narm theme problemsit’s because the theme loads it’s own jquery file instead of using the one that comes with wordpress.