akshat05
Forum Replies Created
-
Hi @bedas,
Thanks for your reply, I posted in WPML forum and the support staff assigned was able to replicate,
Here are the steps for replicating:
1) Go to Toolset -> Post Field and create a new Group and select “Products” in “Where to include this Field Group” option.
2) Add a field to the newly crated group and select WYSIWYG as field type.
3) Select Translate in Translation preferences field.
4) Create a new WooCommerce product, and fill any data in the custom field created and publish.
5) Click on translate product and the field will be displayed as single line field in the translation manager.Kindly keep me updated if there’s any solution for this.
Thanks
Forum: Plugins
In reply to: [WooCommerce] woocommerce_countries_inc_tax_or_vat filter not workingHi @wbrubaker,
In my codes it’s correct, I pasted it without using the code tags of the editor, maybe this is why it’s not appearing correct here.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Template modification not working after update toHi,
You should not modify the core woocommerce files.
You can achieve this by filter.You can write the following snippet in your child theme’s functions.php
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_price’, 10 );
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_price’, 20 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 10 );This would interchange the order of price and excerpt.
Hope this helps
Forum: Plugins
In reply to: [WooCommerce] Products not showing up on Shop PageHi @mteachey,
It seems that you have selected some other page as shop page.
If you want to make Shop page as default page to list all products, you can create a page Named “Shop”, then go to WooCommerce -> Products, here you will see Shop Page, just select the “Shop” page here and save.Hope it helps.
- This reply was modified 7 years, 12 months ago by akshat05.
Forum: Plugins
In reply to: [WooCommerce] Price Messing UpHi @measuringflower,
To fix this you need to add the following to css
.product .summary .price {
display: block;
}If you don’t know how to add CSS, you can follow
http://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/Hope this helps 🙂
Forum: Plugins
In reply to: [WooCommerce] Titles Not AlignedHi @measuringflower,
I visited https://turquoisetiers.com/shop/ and all the titles seems to be aligned in same line. https://prnt.sc/jiacfi
Forum: Plugins
In reply to: [WooCommerce] cart page refreshing to main pageHi @albertandbrown,
It seems like there’s a redirect set from your cart page. It’s hard to answer the exact solution without looking into files, but I’d suggest you to deactivate any recently activated plugin and check. If still there’s any problem you need to check the .htaccess file and functions.php or any theme file which you modified.
Forum: Plugins
In reply to: [WooCommerce] Select Default Shipping methodHi @jablonowski,
No, if user does a page reload or goes back from the checkout page to another page and comes back to checkout page, then the previously selected method is selected by default.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Woocommerce cart icon, search icon, contact iconHi @kristinubute,
To Add My account to header, you can go to Appearance-> Menus -> Create Menu, Add My account to the menu and then select the Menu location “Secondary Menu”.
Or
Click on customize (https://YOUR-SITE-URL/wp-admin/customize.php)
Click on Menus and if you already have a menu click on it and select the location or Click on create new menu, add name, menu items then select the menu location as “Secondary Menu”.Hope this helps 🙂
Forum: Plugins
In reply to: [WooCommerce] Dashboard loading without loginYeah, I even tried reinstalling the woocommerce without clearing data, and enabled storefront theme, but that’s not getting any better, even after disabling all the plugins, there’s no good, most likely this seems to be coming from database.
Forum: Plugins
In reply to: [WooCommerce] ROLL BACK TO OLD VERSIONHi,
If you want to roll back to older version of the plugin you can download from https://wordpress.org/plugins/woocommerce/advanced/ and do a manual install or use https://wordpress.org/plugins/wp-rollback/
but these would only roll back your files, if you want to load old data also, then you need backup file.
Always take a complete backup before proceeding with roll back.Thanks
Forum: Plugins
In reply to: [WooCommerce] debugging an error message added in version 3.0Thanks, I just wanted to confirm, now I’m sure that it’s coming from the plugin 🙂
Forum: Plugins
In reply to: [WOOF by Category] Filter by CategoryI was able achieve this by customizing WOOF plugin.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shipping cost displayYou can use any table rate shipping plugin,
I haven’t tried a free one but you can try https://wordpress.org/plugins/flexible-shipping/
It has an option of Shipping costs based on cart total in free version.