wprock
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Cart and Mini Cart 404 pagesOr May be cart is blocked by PHP code. Check the codes into your theme’s file or settings
Forum: Plugins
In reply to: [WooCommerce] Cart and Mini Cart 404 pagesNavigate to Dashboard-> Settings -> Permalink page and click on “Save Changes” button. May be it will help
Forum: Plugins
In reply to: [WooCommerce] woocommerceRe-upload the woocommerce folder via FTP or CPanel->File Manager. Looks like current version is corrupted on your server.
Are you using the latest version of WP and WC?
Forum: Plugins
In reply to: [WooCommerce] Phone field is missing in billing addressGo to WooCommerce Settings page and check the checkout settings
https://docs.woocommerce.com/document/configuring-woocommerce-settings/#section-12
Forum: Plugins
In reply to: [WooCommerce] Product not displayingWhat is your site URL?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Site without online paymentYes. It is doable with WooCommerce. Lot of users are using the WooCommerce for same kind of functionality for their site.
Forum: Plugins
In reply to: [WooCommerce] Checkout ColumnsToo much custom work is involved and it is out of support scope. May be you will hire a developer for it.
Forum: Plugins
In reply to: [WooCommerce] Remove on My Account Page the Default TextLogin to server via FTP or go to Cpanel -> File Manager
1. Create a folder “woocommerce” inside your theme folder
2. Create another new folder “myaccount” inside the “woocommerce” folder
3. Go to plugins/woocommerce/templates/myaccount and copy the dashboard.php file
4. Paste this file into yourthemefolder/woocommerce/myaccount folder
5. Now edit the text and save the fileForum: Plugins
In reply to: [WooCommerce] Shopping cart icon remove – tried everythingIf you provide the site URL, then we can help you here.
Forum: Plugins
In reply to: [WooCommerce] Variation Image does not replace product imageTop one image is adding via your theme’s code or settings. WooCommerce is not adding the top one. You will check your theme.
Forum: Plugins
In reply to: [WooCommerce] No page titles after category page 1Which theme are you using? Your theme’s code is blocking them for inner pages.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce change showing x results to read showing x products1. Connect your server via FTP or go to CPanel->File Manager
2. Go to yoursitefolder(basically public_html)/woocommerce/templates/loop folder
3. Copy the result-count.php
4. Put the file into yourthemefolder/woocommerce/loop folder. If folders are not existing, you will create it
5. Now open the result-count.php file and replace the results text with products
6. Save the fileForum: Plugins
In reply to: [WooCommerce] Custom text after priceAnother option
function cw_change_product_price_display( $price ) { if( ! is_user_logged_in() ) { $price .= ' <span id="tooltips">incl. VAT</span>'; } return $price; } add_filter( 'woocommerce_get_price_html', 'cw_change_product_price_display' ); add_filter( 'woocommerce_cart_item_price', 'cw_change_product_price_display' );- This reply was modified 6 years, 6 months ago by wprock.
I think that you can achieve it with that plugin