arend
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Disable submit button while loadingI have a temporary solution which does not require hacking the plugin files. Add this javascript to your page. If you don’t know how, use a plugin like “Simple Custom CSS and JS” and add as front-end javascript in footer.
jQuery(document).ready(function () { (function() { var ev = new jQuery.Event('style'), orig = jQuery.fn.css; jQuery.fn.css = function() { jQuery(this).trigger(ev); return orig.apply(this, arguments); } })(); setTimeout(function () { jQuery('img.ajax-loader').bind('style', function (e) { var style = jQuery(this).attr('style'); //console.log("style: " + style); if(style) { if(style.indexOf("hidden") > 1) { // enable button //console.log("Disable button"); jQuery('input.wpcf7-submit').attr('disabled','disabled'); } else { //console.log("Enable button"); jQuery('input.wpcf7-submit').prop('disabled', false); } } }); }, 2000) });
Forum: Plugins
In reply to: [Contact Form 7] Disable submit button while loadingWe are experiencing the same issue, multiple form submissions from impatient users. It would be great if the proposed solution can be integrated.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook API v2.0 expiresI am not yet using this in production, but will definitely need Facebook to work. I can help in getting this implemented. Anyone else wants to join in ? Perhaps the plugin author can give some getting started hints.
I will probably start with a github fork, after completion create a pull (or several pull) requests. No clue yet how difficult this will be.
Forum: Plugins
In reply to: [Advanced Automatic Updates] No longer updatesIt appears this is happening due to malware infected wordpress sites. De malware disables automatic updates by defining define( ‘WP_AUTO_UPDATE_CORE’, false ); I think. Still investigating, but if no updates are happening, this might be the issue..
Forum: Plugins
In reply to: [WP eCommerce] No customers receiptI don’t know about Email Log, I was talking about “WP-Mail-SMTP”.
Forum: Fixing WordPress
In reply to: WP_Query nested meta_query with OR switching to AND?Ok thanks, even though I do not believe having multiple posts covering the same (non-answered) topic is beneficial for the community.
Forum: Fixing WordPress
In reply to: WP_Query nested meta_query with OR switching to AND?Did you find a solution ?
I also need a meta query which has to meet a certain condition, OR the post type is nav_menu_item (or no menu will be displayed as it is a main query)False alarm.
I removed some other plugins and the problem went away.Forum: Plugins
In reply to: [Polylang] translate search widget of of wordpressOk, found the problem. Loco Translate did work, but I needed to sync the pot file before trying to search for the word “Search”
Forum: Plugins
In reply to: [WP eCommerce] No customers receiptWell, at least you’re not on any email blacklists. That’s good to know.
Are you seeing any info in the server log the moment an order is processed ? If you have access to the mailserver, could you see if the messages are queued for whatever reason ? If you don’t have that option, it might help to install the WP-Mail-SMTP plugin. This way you can enter a different email server (for instance a gmail account) to send mail and thereby ruling out any issues on your local (mail) server.Forum: Plugins
In reply to: [WP eCommerce] No customers receiptHave you looked at the logs of the website when making an order ?
Does the webserver send the emails directly ? Or do you use a third party mailserver ? We need more info in order to help.Forum: Plugins
In reply to: [Appointment Booking Calendar] Where to get Pro updatesThanks.
I managed to add this functionality to the plugin.
Looking forward to see official support coming soon.Forum: Fixing WordPress
In reply to: Display widget before main content in mobile viewBack already, for me it was as simple as moving the get_sidebar() function from below the main content area in page.php to above the main content area. Probably have to do this on other template files too, but you get the picture.
If this also works for you depends on your theme and css.
get_header(); ?> <?php get_sidebar(); ?> <div id="primary" class="site-content"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php comments_template( '', true ); ?> <?php endwhile; // end of the loop. ?> </div><!-- #content --> </div><!-- #primary --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Display widget before main content in mobile viewDid you find this out ? It probably has to do with the output order of the template and might not be something you can change easily with css media queries.
Need this myself so will have a look and post for anyone else landing here (if I find a solution).Thanks for considering this option.
I too manage quite a few sites and have automatic updates enabled for all plugins, more often than not the plugin is already updated when I visit the WordPress site, so this notification is just adding to the noise.