ivanpilien
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] Cannot add or edit snippet code@bruceki here is the link to the previous versions of the plugin if youre still interested. https://ww.wp.xz.cn/plugins/code-snippets/advanced/
Forum: Plugins
In reply to: [Code Snippets] Cannot add or edit snippet codeI have the exact similar issue. Any update on this? Thanks!
Hi,
Thank you for the response I’ll consider it. Thanks!
Hi I cant find the section that says about the sharing options from your link https://jetpack.com/support/video-hosting/#video-sharing-settings
Forum: Plugins
In reply to: [Delivery & Pickup Date Time for WooCommerce] double bookingPerfect!
Forum: Fixing WordPress
In reply to: sql stuck at ‘Sending Data’ status for SQL_CALC_FOUND_ROWS queryHi @kartiks16
We tried stripping the website to its bare components too, but that didn’t work also since the SQL_CALC_FOUND_ROWS query is coming from the wordpress core functions.
Forum: Fixing WordPress
In reply to: sql stuck at ‘Sending Data’ status for SQL_CALC_FOUND_ROWS queryHi @kartiks16,
We tried installing the plugin, and found out its in the wordpress core that’s running the query. I tried applying the method I found here (the one with pagination) but with no avail. The query that replaced the SQL_CALC_FOUND_ROWS also gets stuck in ‘Sending Data’ query status.
I also tried removing the SQL_CALC_FOUND_ROWS instead of replacing it, but the site broke (it does not show products anymore).
Hi @kartiks16
We were able to fix this now, but we ran into another problem. See here
Forum: Plugins
In reply to: [Qty Increment Buttons for WooCommerce] Quantity Button only on Cart Pageyou can adjust the height of the button using css and height property. im not sure though if the selector is gonna work for you as i am using woocommerce.
form.cart .single_add_to_cart_button {
height: 20px !important; /*you can replace the value of 20 to the same height of the ‘Buy Now’ button*/
}Hope this helps!
- This reply was modified 4 years, 11 months ago by ivanpilien.
Forum: Plugins
In reply to: [Qty Increment Buttons for WooCommerce] Quantity Button only on Cart Pagei had the same problem. try adding this to your functions.php or through code snippets plugin
add_action( ‘wp_head’, function () {
if ( is_product() ) {
?>
<style>
.qib-button:not(#qib_id):not(#qib_id) {
display: none !important;
}
</style>
<script>
window.addEventListener(‘load’, function () {
var qty_el = document.querySelector(‘div.qib-container’);
qty_el.className = “quantity”;
});
</script>
<?php
}
} );