cedcommerce
Forum Replies Created
-
Hello,
Thank you for your valuable suggestion, we will surely look into it and resolve it at earliest.
Thanks & Regards,
Forum: Plugins
In reply to: [Hide Price Until Login] Fatal error in woocommerce settingsHello,
Thank you for reaching us.
We are checking and release the new compatible version of plugin with new Woo and WP at earliest.
Thanks & Regards,
Hello,
Thank you for reaching us.
There is no option to remove the title of the sections (Recently Viewed Products/ Most Viewed Products), but you can change them as per you needs.
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] My Account Page – ‘Login’ & ‘Register’ in blackHello,
Please try this style,
#customer_login h2 { color: #ffd800; }
Thanks,
Forum: Plugins
In reply to: [WooCommerce] Custom Field on Product Category Page?Hello,
Please go through this article, i hope this will help you.
https://wpcrumbs.com/how-to-add-custom-fields-to-categories/
Thanks,
Forum: Plugins
In reply to: [WooCommerce] How to change background colors of productdescriptionHello @digitalosaurus ,
You can achieve it by giving your unique class on <p> tag and then apply the additional css accordingly on it. So it do not conflicts with any other part style.
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] My Account Page – ‘Login’ & ‘Register’ in blackHello @grandcompetitionsltd ,
Please share your site URL also. So that this can be analyzed in a better way.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Destabilizes@tocolaviola , please check the documentation of the theme, you will get that from where you have purchased your theme.
Thanks & Regards
Forum: Plugins
In reply to: [WooCommerce] Reviews pagination arrowHello @mstudioil ,
Please add this in your wp-config.php file,
define ('WPLANG', 'ar');
I hop it will work.
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] DestabilizesHello,
Which theme you are using ?
And make sure it must me woocommerce compatible.
Thanks,
Forum: Plugins
In reply to: [WooCommerce] Add buttons to product page and categories pageHello @juanmanuelsanch ,
i think the most suitable way to achieve it is using the mini-cart feature on your site.
There are many free plugins for the mini-cart/ floating-cart functionality on site.
Simply install it, then cart icon will be visible all over the site for the user and make it simple to go cart any time.
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] WooCommerce shortcodeHello,
Please have a look to this link the detailed documentation for the shortcodes, this will surely help you out.
https://docs.woocommerce.com/document/woocommerce-shortcodes/
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] Add custom code above category descriptionHello @tdutkowski ,
The code is fine reason for not working is, in first line you are using remove_action, then it will remove the action ‘woocommerce_archive_description’, then it will not be able to call it’s callback function.
That’s why it is not working, simply use this snippet in your active theme’s functions.php(child theme),
add_action( 'woocommerce_archive_description', 'ced_category_description' ); function ced_category_description() { if ( is_product_category()) { echo 'Your text here:'; } }
Thanks & Regards,
- This reply was modified 4 years, 11 months ago by cedcommerce.
Forum: Plugins
In reply to: [WooCommerce] When I activate this plugin to my website my website breaksHello @tikipack ,
Please try switching your theme.
And which theme you are using and is it woocommerce compatible ?
Thanks & Regards,
Forum: Plugins
In reply to: [WooCommerce] Contact for priceHello @amosson88 ,
You can achieve this by following this method:Step-1:
Remove add to cart button from the products using the below snippet,remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
Step-2:
Add your own custom button on product single page but the title Contact Us and with the contact us page link, etc. For adding the button you can use this action,
add_action('woocommerce_before_add_to_cart_button','ced_custom_button'); function ced_custom_button(){ //your button HTML here with link }
You can also do this by changing the Add to Cart button title and link as well through appropriate action and filters.
Thanks,