wprock
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Quantity Field doesn’t display for Variable ProductsCan you share the site URL?
Forum: Plugins
In reply to: [WooCommerce] Tiny checkout buttonsCan you share the site URL?
Forum: Plugins
In reply to: [WooCommerce] How change shortcode [woocommerce_checkout] ?Check this doc
Forum: Plugins
In reply to: [WooCommerce] How change shortcode [woocommerce_checkout] ?Which fields will you change? There have some filters for billing and shipping address fields
Forum: Plugins
In reply to: [WooCommerce] single product not whowing when clickedSite is showing soon. What kind of error are you getting? Is it giving 404 error?
Forum: Plugins
In reply to: [WooCommerce] Remove cart icon with divi themeAdd this CSS
.et-cart-info { display: none; }Forum: Plugins
In reply to: [WooCommerce] Hiding product image & placeholder from shop pageUse the CSS. Find the correct CSS class name and write this kind of CSS
.select-correct-css { display: none; }Forum: Plugins
In reply to: [WooCommerce] remove banner info from my storeIt is custom work. You should hire a dev for it.
Forum: Plugins
In reply to: [WooCommerce] Change “Product description” to “Product title”Enter the following PHP code in your theme’s functions.php file
add_filter( 'woocommerce_product_description_heading', 'paulc_product_title' ); function paulc_product_title() { return get_the_title(); }You will add the variations from Variation tab and put the price there. General tab will be disabled for variable product type.
Forum: Plugins
In reply to: [WooCommerce] Add custom text to Shop PageNope. you’ll add this into your theme’s functions.php file.
- This reply was modified 6 years, 7 months ago by wprock.
Forum: Plugins
In reply to: [WooCommerce] Changing the City Field on the Cart Pageyou will put the file in your active theme folder like this
yourthemefolder/woocommerce/cart
- This reply was modified 6 years, 7 months ago by wprock.
Forum: Plugins
In reply to: [WooCommerce] Disable Thumbnail Regeneration not workingI 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' ); }Forum: Plugins
In reply to: [WooCommerce] Add custom text to Shop PageYou can try this code
add_action( 'woocommerce_after_shop_loop', 'paulc_display_shortcode' ); function paulc_display_shortcode() { if( is_shop() ) { echo do_shortcode('[auction-nudge tool="listings"]'); } }OR
add_action( 'woocommerce_after_main_content', 'paulc_display_shortcode' ); function paulc_display_shortcode() { if( is_shop() ) { echo do_shortcode('[auction-nudge tool="listings"]'); } }- This reply was modified 6 years, 7 months ago by wprock.
Forum: Plugins
In reply to: [WooCommerce] Buy product buttonYou will use is_singular(‘product’) conditional tag. Are you using the excerpt_more filter for read more button? I am afraid what kind of PHP script you are using for read more and buy product button.