mat_
Forum Replies Created
-
Hi,
To automatically ban ip you should use something more server side like fail2ban.
More effective !Don’t be too hard on him, remember, it’s a free plugin.
Did you try to add, as a response URL, the SAME url that you added in both WP and Slack ? I mean, without www on both or with www on both ?Forum: Plugins
In reply to: [Opening Hours] Can't set midnight 00:00hrsHi !
Any news about the update ? Need beta-testers or help in the development ?Regards,
M
Forum: Themes and Templates
In reply to: MixItUp?I hope that it helps! I know that it’s a french tutorial, but if you need some help, maybe I will be able to provide some !
Forum: Plugins
In reply to: [Plugin: BuddyPress Media Component] Activate BuddyPressI have the exact same problem… No link in the Buddypress settings.
Any idea please?
Forum: Plugins
In reply to: [User Access Manager] [Plugin: User Access Manager] Custom Post TypesIt’s a problem that i have too. I’m able to display the box in the edit page of the custom post, but the data isn’t save, the checkbox is always unchecked and the custom post always accessible.
To display the box, i’ve done that:
line 270, i replace the too add_meta_box, by this code:if ( function_exists( 'get_post_types' ) ) { $post_types = get_post_types( array(), 'objects' ); foreach ( $post_types as $post_type ) { if ( $post_type->show_ui ) { add_meta_box('uma_post_access', 'Access', array(&$userAccessManager, 'editPostContent'), $post_type->name, 'side'); } } } else { add_meta_box('uma_post_access', 'Access', array(&$userAccessManager, 'editPostContent'), 'post', 'side'); add_meta_box('uma_post_access', 'Access', array(&$userAccessManager, 'editPostContent'), 'page', 'side'); }Anyone that have more infos please ?
Forum: Plugins
In reply to: TinyMCE and Image uploader for plugin with custom dbProblem of slash escaped data on $_POST[]
And moreover, i really have to get rid of my custom tables and work with new post types.
Forum: Plugins
In reply to: 2 FeedWordPress questions…Sadly i can’t help you…
I have some problems too with feedwordpress, kind of the opposite of yours, FWP does not create the categories 🙂Forum: Plugins
In reply to: job board pluginHe maybe founds this theme:
http://kune.fr/blog/wordpress/wp-jobboard-transform-wordpress-into-a-jobboard/Even if it’s not a plugin …
Mat_
Forum: Plugins
In reply to: Ideas plugin and Job Board PluginMaybe just a simple theme ?
It’s based on the blueprint css framework so it’s really easy to modify, but the basics are here:
http://kune.fr/blog/wordpress/wp-jobboard-transform-wordpress-into-a-jobboard/Let a comment if you like or dislike it 🙂 I will be able to improve it!
Forum: Fixing WordPress
In reply to: Retrieving Current URLmaybe $_SERVER[‘REQUEST_URI’] ?
Forum: Fixing WordPress
In reply to: Hide a widget on the home pageOk sorry, i didn’t explain myself correctly.
I’m using some code in the sidebar and not widget. I was calling widget the different section in the sidebar.
So in my code ? can i hide something on the homepage ?Forum: Fixing WordPress
In reply to: Hide a widget on the home pageNo, it’s not in a text plugin, it’s hardcoded in my sidebar.php … That’s why i’m looking for the php code to hide this part of my sidebar.
Forum: Developing with WordPress
In reply to: Add lines in the header with a pluginI found how to.
I had to use is_page() in my IF…
Forum: Plugins
In reply to: wich action to create a page with a plugin ?Oh sorry i didnt see the reply.
No, sorry, it was not what i was looking for.
After created the admin menu for the plugin, i would like to create a page through this admin menu, with some informations ( text, pictures, php code, … ).
By example, there is some plugin who create a contact form, how do the do to create automaticly the form page ?
Thx !!