Your cart is currently empty!
Category: WordPress
How to setup Name Your Price in Woocommerce
Use this plugin: WPC Name Your Price for WooCommerce
My RSS for a WordPress site is alive, but feedly is saying it is unreachable. Why?
If your WordPress RSS feed is working but Feedly is showing it as unreachable, there are several potential causes and solutions:
(more…)Should I suppress RSS Feed on WordPress or not?
Whether or not you should suppress the RSS feed on your WordPress site depends on your specific goals and needs. Here are some factors to consider:
(more…)How do I Bulk-fix the permalink of my WordPress Posts
Use Permalink Manager Lite.
Fixing Category Count Issues in WordPress After Moving Post Types Using the Post Type Switcher Plugin
If you’re running a WordPress site, you’ve likely experienced the need to switch post types at some point. Whether you’re restructuring your content strategy, consolidating posts, or simply reorganizing your site, the Post Type Switcher plugin can be a lifesaver. It allows you to move content seamlessly between post types with just a few clicks. However, there’s a common issue that might crop up during this process: category count misalignment.
(more…)What to do when you can’t upload CSV files with WooCommerce
Today I will write about what to do when you cannot import a CSV file when importing products in WooCommerce. A message like the one below appears. “You do not have permission to upload this file type.”
In this case, install the following plugin.
“WP Add Mime Types”
Once installed, add the following string to the additional items field on the settings screen and save.
「csv = text/csv」
Then try importing the CSV file again and it will be able to import.
How to reduce items on WooCommerce checkout page
I will show you how to delete unnecessary items on the WooCommerce checkout page. Just put the following code in your theme’s functions.php and save/update. By entering this, all input other than first name, last name, company name (optional), and email address will be deleted. This is ideal if you are selling virtual products. Please feel free to adjust any items you need.
// Remove billing details from woocommerce checkout field add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['order']['order_comments']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_city']); return $fields; } add_filter('woocommerce_enable_order_notes_field', '__return_false');
How to arrange articles by update date with Cocoon theme
If you change the index order from the posted date to the updated date, the updated articles will be displayed at the top.
This is a feature I really wanted. Being able to bring updated articles to the top means that even if past articles are getting buried, updating them will bring them back to life. Even articles that no longer see the light of day can be revived. It’s kind of nice. I sincerely believe that this is a feature that will make your blogging life even more enjoyable, so I decided to introduce it to you.
How to delete author archives in WordPress
Install the Rankmath plugin. You can do this by going to “Title and Meta” then “Author” and disabling it. However, please note that if you disable this, you will not be able to use the ActivityPub plugin to connect WordPress to Fediverse.
[WordPress] How to notify by email when there is a login
It is best to use “Login Alert” in “SiteGuard WP Plugin“.