nepf
Forum Replies Created
-
Forum: Plugins
In reply to: [Authenticator] Internal server error after update to newest versionthank you – great plugin, love it!
Forum: Plugins
In reply to: [Authenticator] Internal server error after update to newest versionMe too – same problem.
Forum: Plugins
In reply to: [Meta Box] Validation rule with regexGreat! Cool! Thx!
Forum: Plugins
In reply to: [Meta Box] Validation rule with regexokey, so I tried
array( 'name' => 'subtitle', 'id' => $prefix . 'subt', 'type' => 'text', 'pattern' => '[1-9][a-d]', ),
the HTML-Source looks fine for me
<div class="rwmb-input"> <input id="px_subt" class="rwmb-text" type="text" name="px_subt" pattern="[1-9][a-d]" size="30"> </div>
but i don’t get any error-message for wrong inputs.
Forum: Plugins
In reply to: [Meta Box] Validation rule with regexThank you,
but please help me again, i tried thisarray( 'name' => 'subtitle', 'id' => $prefix . 'subt', 'type' => 'text', 'required' => true, 'regex' => '[1-9][a-d]', ),
what’s wrong?
Forum: Hacks
In reply to: Export Query to csv – fputcsvsolved it by my own.
Maybe it’s helpfull for someone<?php $fh = fopen( 'wp-content/uploads/export.csv', 'w'); ?> <?php $person = array(); ?> <?php while ( have_posts() ) : the_post(); ?> <?php $name = get_post_meta($post->ID, 'nepf_name', true); $adress = get_post_meta($post->ID, 'nepf_adress', true); $hobby = get_post_meta($post->ID, 'nepf_hobby', true); $person[] = array($name, $adress, $hobby); ?> <?php endwhile; ?> <?php foreach($person AS $dataset) { fputcsv($fh, $dataset, ';'); } fclose($fh); ?>
Forum: Fixing WordPress
In reply to: Show only OWN pages in dropdown in page-attributesNo Idea – no help for poor little nepf? ??
Forum: Fixing WordPress
In reply to: Cluetiptoday i tested the Cluetip with the WP-jquery 1.4.2 library.
No problems.
Cluetip works very well and has very nice featuresForum: Fixing WordPress
In reply to: Post Via Email, spam preventionno problem. WP will publish only posts from registered user with the right to publish. All other mail-posts will get the status draft, so you can publish them or delete them.
Forum: Plugins
In reply to: [Plugin: Sabre] Doesnt seem to work with Buddypress 1.0.2?it whould be very great to have the sabre-plugin working with Buddy-Press.
Do you have a solution?
Forum: Plugins
In reply to: [Theme Deep Silent] Paged comments don’t work, no Author name in postsi like the look and design – very nice!
but i dont like the code with tablesForum: Plugins
In reply to: Plugin to import excel -sheets to posts ???1. It is not as simple, because the postings aren’t written in only one table
wp_post2cats
wp_postmeta
wp_posts2. I want my users can use such possibility but I can’t give them access to my db
any other idea?