Profiles

Interests

Cricket, Movie, Music

  • Member Since: March 15th, 2011
  • Location: Kolkata,India
  • Website: paulchinmoy.com
  • Find me on:
  • Posted a reply to Cart and Mini Cart 404 pages, on the site WordPress.org Forums:
    Or May be cart is blocked by PHP code. Check the codes into your theme's…

  • Posted a reply to Cart and Mini Cart 404 pages, on the site WordPress.org Forums:
    Navigate to Dashboard-> Settings -> Permalink page and click on "Save Changes" button. May be…

  • Posted a reply to woocommerce, on the site WordPress.org Forums:
    Re-upload the woocommerce folder via FTP or CPanel->File Manager. Looks like current version is corrupted…

  • Posted a reply to Can’t edit products | edit.php?post_type=product keeps loading forever, on the site WordPress.org Forums:
    Are you using the latest version of WP and WC?

  • Posted a reply to Phone field is missing in billing address, on the site WordPress.org Forums:
    Go to WooCommerce Settings page and check the checkout settings https://docs.woocommerce.com/document/configuring-woocommerce-settings/#section-12

  • Posted a reply to Product not displaying, on the site WordPress.org Forums:
    What is your site URL?

  • Posted a reply to Woocommerce Site without online payment, on the site WordPress.org Forums:
    Yes. It is doable with WooCommerce. Lot of users are using the WooCommerce for same…

  • Posted a reply to Checkout Columns, on the site WordPress.org Forums:
    Too much custom work is involved and it is out of support scope. May be…

  • Posted a reply to Remove on My Account Page the Default Text, on the site WordPress.org Forums:
    Login to server via FTP or go to Cpanel -> File Manager 1. Create a…

  • Posted a reply to Shopping cart icon remove – tried everything, on the site WordPress.org Forums:
    If you provide the site URL, then we can help you here.

  • Posted a reply to Variation Image does not replace product image, on the site WordPress.org Forums:
    Top one image is adding via your theme's code or settings. WooCommerce is not adding…

  • Posted a reply to No page titles after category page 1, on the site WordPress.org Forums:
    Which theme are you using? Your theme's code is blocking them for inner pages.

  • Posted a reply to Woocommerce change showing x results to read showing x products, on the site WordPress.org Forums:
    1. Connect your server via FTP or go to CPanel->File Manager 2. Go to yoursitefolder(basically…

  • Posted a reply to Custom text after price, on the site WordPress.org Forums:
    Another option function cw_change_product_price_display( $price ) { if( ! $is_user_logged_in() ) { $price .= '…

  • Posted a reply to Is it possible to add product images for variation product per attribute?, on the site WordPress.org Forums:
    I think that you can achieve it with that plugin

  • Posted a reply to Is it possible to add product images for variation product per attribute?, on the site WordPress.org Forums:
    Try swatches plugin.

  • Posted a reply to Add custom field while adding customer, on the site WordPress.org Forums:
    You can do this update_user_meta( $customer_id, 'YOURCUSTOMFIELDKEY',YOURCUSTOMFIELDDATA);

  • Posted a reply to Not the Description tab, but the Details tab, on the site WordPress.org Forums:
    How are you getting Details tab? Are you using the plugin or custom code for…

  • Posted a reply to WooCommerce “Sale!” sticker has disappeared!, on the site WordPress.org Forums:
    Try this once <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if…

  • Posted a reply to WooCommerce “Sale!” sticker has disappeared!, on the site WordPress.org Forums:
    I am getting the sale badge https://www.sbcskincare.co.uk/product/honey-oats-bath-shower-creme/

  • Posted a reply to Downloads are not working, on the site WordPress.org Forums:
    You should hire a developer for this issue.This is my opinion.

  • Posted a reply to Inaccessible order page, on the site WordPress.org Forums:
    What kind of errors are you getting? Are you logged in as administrator and navigate…

  • Posted a reply to increasing woocommerce_ajax_variation_threshold breaking page, on the site WordPress.org Forums:
    Looks like there have problems in coding or product variations settings

  • Posted a reply to Use price variable in button “add to cart”, on the site WordPress.org Forums:
    Just replace this line $new_text = $text . __(' for ', 'woocommerce' ) . $price;…

  • Posted a reply to restrict product search to product title only, on the site WordPress.org Forums:
    You can check this tutorial

  • Posted a reply to Use price variable in button “add to cart”, on the site WordPress.org Forums:
    Here is the snippet: add_action( 'woocommerce_product_single_add_to_cart_text', 'paulc_change_single_add_to_cart_text', 10, 2 ); function paulc_change_single_add_to_cart_text( $text, $product )…

  • Posted a reply to Disable sortable UI for attributes, on the site WordPress.org Forums:
    I tried this snippet add_action( 'admin_footer', function(){ $screen = get_current_screen(); $screen_id = $screen ? $screen->id…

  • Posted a reply to Some products images not appear on Woocommerce, on the site WordPress.org Forums:
    Disable the Shortpixel CDN option or shortpixel plugin and test the shop page.

  • Posted a reply to Custom text field inputs for attributes, on the site WordPress.org Forums:
    You can try this approach add_action( 'woocommerce_product_additional_information', 'paulc_custom_field_data', 40 ); function paulc_custom_field_data( $product ) {…

  • Posted a reply to problem…?, on the site WordPress.org Forums:
    I checked your site. You are using the Elementor for shop page. Properly check the…

  • Posted a reply to Quantity Field doesn’t display for Variable Products, on the site WordPress.org Forums:
    Can you share the site URL?

  • Posted a reply to Tiny checkout buttons, on the site WordPress.org Forums:
    Can you share the site URL?

  • Posted a reply to How change shortcode [woocommerce_checkout] ?, on the site WordPress.org Forums:
    Check this doc

  • Posted a reply to How change shortcode [woocommerce_checkout] ?, on the site WordPress.org Forums:
    Which fields will you change? There have some filters for billing and shipping address fields

  • Posted a reply to single product not whowing when clicked, on the site WordPress.org Forums:
    Site is showing soon. What kind of error are you getting? Is it giving 404…

  • Posted a reply to Remove cart icon with divi theme, on the site WordPress.org Forums:
    Add this CSS .et-cart-info { display: none; }

  • Posted a reply to Hiding product image & placeholder from shop page, on the site WordPress.org Forums:
    Use the CSS. Find the correct CSS class name and write this kind of CSS…

  • Posted a reply to remove banner info from my store, on the site WordPress.org Forums:
    It is custom work. You should hire a dev for it.

  • Posted a reply to Change “Product description” to “Product title”, on the site WordPress.org Forums:
    Enter the following PHP code in your theme's functions.php file add_filter( 'woocommerce_product_description_heading', 'paulc_product_title' ); function…

  • Posted a reply to Variable Product – Impossible to set-up “Price” (“General” section disappear), on the site WordPress.org Forums:
    You will add the variations from Variation tab and put the price there. General tab…

  • Posted a reply to Add custom text to Shop Page, on the site WordPress.org Forums:
    Nope. you add this into your theme's functions.php file.

  • Posted a reply to Changing the City Field on the Cart Page, on the site WordPress.org Forums:
    you will put the file in your active theme folder like this yourthemefolder/woocommerce/cart/

  • Posted a reply to Disable Thumbnail Regeneration not working, on the site WordPress.org Forums:
    I am talking this add_action( 'init', 'paulc_disable_image_regeneration_process' ); function paulc_disable_image_regeneration_process() { add_filter( 'woocommerce_background_image_regeneration', '__return_false' );…

  • Posted a reply to Add custom text to Shop Page, on the site WordPress.org Forums:
    You can try this code add_action( 'woocommerce_after_shop_loop', 'paulc_display_shortcode' ); function paulc_display_shortcode() { if( is_shop() )…

  • Posted a reply to Buy product button, on the site WordPress.org Forums:
    You will use is_singular('product') conditional tag. Are you using the excerpt_more filter for read more…

  • Posted a reply to Disable Thumbnail Regeneration not working, on the site WordPress.org Forums:
    are you put the code inside the init action

  • Posted a reply to Changing the City Field on the Cart Page, on the site WordPress.org Forums:
    You will get the at this location plugins/woocommerce/templates/cart

  • Posted a reply to id=”gallery-2″, on the site WordPress.org Forums:
    need duplicate gallery items multiple times? I think that you will remove it from one…

  • Posted a reply to Sale price remains after sale ends, on the site WordPress.org Forums:
    It is not a bug. You will do this manually. There have no any automatic…

  • Posted a reply to Sale price remains after sale ends, on the site WordPress.org Forums:
    Edit the product and remove the price value from sales price input box.

Plugins