Olybop
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Mega Menu Block] mega menu & WPMLok, thx for you reply.
indeed, it works.
Forum: Reviews
In reply to: [Drag and Drop Multiple File Upload for WooCommerce] Simple et efficaceyou’re welcome. probably will test the pro version if my client need ??
That’s perfect Thx you !
oui c’est ton identifiant https://www.colissimo.entreprise.laposte.fr/
les comptes laposte de base ne fonctionnent pasoui l’identifiant de connexion dans le BO doit être à 6 chiffres et non un email (qui fonctionne pourtant…mais pas sur la carte)
it’s working with your solution for now
thxMerci !
ok i’ll do that
ThxForum: Plugins
In reply to: [Decimal Product Quantity for WooCommerce] decimal of 0.1 stepok it’s my function for my minus button… :/
jQuery(document).ready(function($){ $('form.cart').on( 'click', 'button.plus, button.minus', function() { // Get current quantity values var qty = $( this ).closest( 'form.cart' ).find( '.qty' ); var val = parseFloat(qty.val()); var max = parseFloat(qty.attr( 'max' )); var min = parseFloat(qty.attr( 'min' )); var step = parseFloat(qty.attr( 'step' )); // Change the value if plus or minus if ( $( this ).is( '.plus' ) ) { if ( max && ( max <= val ) ) { qty.val( max ); } else { qty.val( val + step ); } } else { if ( min && ( min >= val ) ) { qty.val( min ); } else if ( val > 1 ) { qty.val( val - step ); } } }); });
i downgrade to 3.6.0 and it’s working again
Same for me (french)
edit : if i set wp to english, the page still empty- This reply was modified 3 years, 5 months ago by Olybop.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] IssueHello,
sorry, anyway, I can’t reproduce the error. There were 700 people logged in simultaneously and the I / O volume was monstrous. I unfortunately did not recover the logs.
Thank youForum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] IssueThe context :
A client needed a wordpress website with one page. On this page there was a live youtube video (without chat) and your chat plugin.
I have set the plugin so that there is an obligation to register to post a comment. So, I think the plugin checks the rights of each user before validating their comment. it reviews the 1800 users included in the wordpress database. In the end, the problem is that with each message, it revalidates all users?The site was on a managed dedicated server. As soon as the plugin was deactivated, all the resources were available again.
- This reply was modified 4 years, 4 months ago by Olybop.
Forum: Plugins
In reply to: [WooCommerce for Logged-in Users] multisite wordpressok i’m looking for that, sorry ??