Draba82
Forum Replies Created
-
I have even proposed to buy premium if this was the problem. They responded fast but after giving all details I had no succes. Should be removed this plugin!
Maybe you can give them an email to.
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] HTTP to HTTPS linksI believe your support and comments are awesome.
Apparently I enabled “Remove URL Query Strings” and by disabling it I had no issues with Revolution slider anymore.Thank you again!
PS; I am learning more and more what to do with your plugin. Now unloading lots off css files that are not necessary on other pages then Homepage.
- This reply was modified 6 years, 11 months ago by Draba82.
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] HTTP to HTTPS linksHi Gabe!
Awesome response and you were right.. I disabled hummingbird caching and only use them for pagecaching (and that was my initial thought).
Then I hit some lower response and really high loading time (7s) on the wp-json/v1 file (any idea why?)Now a couple day’s later it is fast and much smaller and wp-json/v1 is not slow anymore. But somehow Rev Slider keeps stucked at loading/spinner on the homepage.
Any idea why? And is this a known issue with revslider?
Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] HTTP to HTTPS linksHi Gabe!
Yes I am using the latest version. Also just started using your amazing plugin 😉
I used the contactform on your website But I will send a direct email with my system info.Forum: Plugins
In reply to: [WooCommerce] Disappearing ordersAlso somehow I see lots off Untitled_xx concepts in Posts
Maybe it’s related somehowForum: Plugins
In reply to: [WooCommerce] Remove address field for downloadsHi @lorro did you have a chance to check out my code?
let me know I would appreciate a lotForum: Plugins
In reply to: [WooCommerce] Remove address field for downloadsHi sir,
I am using code below. Removed some fields from original code.
Then not any field is visible. Even the ones I removed.After changing:
// By default, no virtual product $has_virtual_products = false;from true to false the fields are showing. But it also removes the named fields on products that are not virtual
add_action( 'after_setup_theme', 'avada_lang_setup' ); function custom_override_checkout_fields( $fields ) { if( woo_cart_has_virtual_product() == true ) { unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); return $fields; } } add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); /** * Check if the cart contains virtual product * * @return bool */ function woo_cart_has_virtual_product() { global $woocommerce; // By default, no virtual product $has_virtual_products = true; // Default virtual products number $virtual_products = 0; // Get all products in cart $products = $woocommerce->cart->get_cart(); // Loop through cart products foreach( $products as $product ) { // Get product ID and '_virtual' post meta $product_id = $product['product_id']; $is_virtual = get_post_meta( $product_id, '_virtual', true ); // Update $has_virtual_product if product is virtual if( $is_virtual == 'yes' ) $virtual_products += 1; } if( count($products) == $virtual_products ) $has_virtual_products = true; return $has_virtual_products; }Forum: Plugins
In reply to: [WooCommerce] Remove address field for downloadsWhen I use this script and remove some fields.
It still end up removing all fields.Any idea why?
Seems to be not working. When I copy the code from a manual made item with visual composer codes.
The content field does not accept any . or : or ; signs. So how to fix this?Forum: Networking WordPress
In reply to: Multiple domains same website different TitlesI already thought so! Any other solution to not have 15 copys of every photo?
The-Croupier or soumya12345 you seem to have figured it out… Can you please share this with us? Really cannot find someone to do this.
Dear All,
I am also looking to make my product/category page just like names with add to cart. Wow did not know it was this difficult.
hope someone does have a good guide to do this. Cant figure it out with the broken info up here.