Profiles

  • Member Since: June 24th, 2022
  • Find me on:
  • Posted a reply to Disable slide effect when removing item from cart, on the site WordPress.org Forums:
    Please add below CSS code to WP-Admin → Appearance → Customize → Additional CSS: .woofc-area…

  • Posted a reply to Fly cart button not working on homepage, on the site WordPress.org Forums:
    Please deactivate the cache management plugin and check again. If the condition persists, please contact…

  • Posted a reply to Exclude a specific page, on the site WordPress.org Forums:
    Hide the Fly cart on a special page. Php code snippets: add_filter( 'woofc_disable', function($flag){ global…

  • Posted a reply to Trigger cart via link?, on the site WordPress.org Forums:
    Jquery code: (function($) { $(document).on('click touch', 'a.your-class', function(e) { woofc_toggle_cart(); e.preventDefault(); }); })(jQuery); Note: Please…

  • Posted a reply to Custom text within open basket, on the site WordPress.org Forums:
    Try this: // Add message to Fly cart add_filter( 'woofc_above_bottom_content', function($html){ return $html . custom_message();…

  • Posted a reply to Add the cart icon in the divi header, on the site WordPress.org Forums:
    Please add below CSS code to WP-Admin → Appearance → Customize → Additional CSS: .woofc-menu-item…

  • Posted a reply to ICON IN HEADER NEXT TO BURGER MENU, on the site WordPress.org Forums:
    Could you please provide more details (preferably images and links to your published products) to…

  • Posted a reply to Redirect to Products when cart is empty, on the site WordPress.org Forums:
    Try this: <script type="text/javascript"> (function($) { $(document).ready(function(event){ var elm = '.woofc-count'; if (woofc_vars.manual_show != '')…

  • Posted a reply to Bubble only shows up when scrolling, on the site WordPress.org Forums:
    Try this: <script type="text/javascript"> (function($) { $(document).ready(function(event){ $(document.body).on('woofc_cart_loaded', function(){ // Hide Bubble when page load…

  • Posted a reply to Disable auto open sidecart, on the site WordPress.org Forums:
    Do you need our help?

  • Posted a reply to stop scroll optin when fly cart open, on the site WordPress.org Forums:
    Try this: <script type="text/javascript"> (function($) { $(document).ready(function(event) { $(document.body).on('woofc_hide_cart', function(){ $(this).css('overflow-y', 'auto'); }); $(document.body).on('woofc_show_cart', function(){…

  • Posted a reply to Disable Scrollwheel changing price, on the site WordPress.org Forums:
    Try this: <script type="text/javascript"> (function($) { $(document).ready(function() { // disable mousewheel on a input number…

  • Posted a reply to Add another filter to cart html, on the site WordPress.org Forums:
    Hi @wereallthieves. Show at, them I have to 1 filter as after: apply_filters( 'woocommerce_cart_item_remove_link', '<span…

  • Posted a reply to Enable the panel for smartphone only, on the site WordPress.org Forums:
    Hi @webfantastic. 1. If you want to hide this panel on devices with screen width…

  • Posted a reply to Auto Hide (close) the fly cart, on the site WordPress.org Forums:
    Hi @islamheza, to auto hide ( close ) the fly cart after 5 seconds. Please…