IanFox
Forum Replies Created
-
Forum: Plugins
In reply to: [Export WordPress Menus] Fails to export or import menu items when using PHP7The file in the github gist is 6.1 but the latest version is 6.3.
It’s one line to change:https://secondlinethemes.com/fix-wordpress-import-navigation-issues-php7/
Fixed this for me.
Forum: Plugins
In reply to: [WordPress Importer] Please fix this almost 2 year old PHP 7 bugThat is really stupid indeed that it doesn’t get fixed. WTF?
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] maxlenghtI’ve “fixed” it wit javascript…
$("[class*='maxlength-']").each(function() { var num = $(this).attr('class').match(/\d+$/)[0]; if(!isNaN(num)) { $(this).find("input, textarea").attr('maxlength',num); } });
and then add the class maxlength-<number> to the textfield… Not ideal, but hey: I want to get things working.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] At least one required fieldI couldn’t figure this one out too.
I used conditional fails plugin in the end to force this. The stupid thing is, that it’s only after submitting the form you’ll get the error message, placed above the form.
You can then let it fail when any of the stated fields in the conditional is empty.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] maxlenght@mrpetreli WTF? @mclarets is right. I can’t figure this one out too.
How on earth is this something to pay support over? It’s a basic HTML attribute!
Question remains : how do you limit the amount of characters users can type in a textfield?!It’s still possible for “contributors” to select “Published” as the state of duplicated posts on a site where they don’t have enough rights to do so otherwise.
Can you provide me with a timeframe when this could be fixed?
Otherwise I will have to find another way of doing this.Thanks for the code above, that works.
- This reply was modified 7 years, 7 months ago by IanFox.
That works indeed. Can you define a standard color for links in a template?
Sorry for my late reply. We’ve had problems with some projects here.
Many thanks already for this great plugin!
Sorry for my late answer. This project had some delays on other issues as well.
With the new versions the name fields didn’t work as well. I’ve updated but didn’t work. I’m hesitant to update in the meanwhile, my client wants to send an email soon and don’t want to break stuff. (His emails are set up already) Had way too many delays already so our client wouldn’t be happy at all if there was one more hickup.I will update after his first sending and try it again.
Hi,
It still doesn’t work in the test e-mails we have send. (using JS cron)
https://dl.dropbox.com/u/6059784/mail.jpg
In the “can’t read link” the names get replaced correctly.
Greets,
Ian
It also wasn’t showing in the mails sent.
I will test the new version tomorrow!
Thnx!
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Posts and Pages disappeared on adminAfter replacing it with 0.8.10 the problem is gone.
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Posts and Pages disappeared on adminI too have this problem.
Nothing shows up in the Media window when loggged in as Admin, and in posts, pages and custom post type listings in the admin panel, a language (Dutch, the default language on my install) doesn’t show up (the collum with the edit and add icons).
Will go back to previous version.
oops double post
Ok Thanks for the answer.
We look forward to the name field.
Ian
wp_query does filter the language, so I figured I’d use include to filter the language… Is there a shorter/faster/better way?
<?php $ids = ""; $args_loop = array('post_type' => 'product'); $loop = new WP_Query( $args_loop ); if ( $loop->have_posts() ) : while ( $loop->have_posts() ) : $loop->the_post(); $ids .= $post->ID . ','; endwhile; endif; ?> <?php $args = array( 'depth' => 0, 'show_date' => '', 'date_format' => get_option('date_format'), 'child_of' => 0, 'exclude' => '', 'include' => $ids, 'title_li' => '', 'echo' => 1, 'authors' => '', 'sort_column' => 'menu_order, post_title', 'link_before' => '', 'link_after' => '', 'walker' => '', 'post_type' => 'product', 'post_status' => 'publish' ); ?> <?php wp_list_pages($args); ?>
Thanks,
Ian