TimesCoding

Learn, Practice, and Excel with our Coding Tutorials!

Add Line Breaks to Woocommerce Product SKU & Category Name

January 20, 2023 1 Min read WOOCOMMERCE WORDPRESS

We can easily add line breaks between product SKU and category name on the single product page. This formatting will make your product’s single page more user-friendly.

You can add the following snippet of your CSS file of active theme/child theme.

.product_meta>span{
   display: block;
   margin-bottom: 15px;
}

After the line break between product SKU and category name on the single product page.

Related Post:
Optimizing WordPress Search Query Strings for Improved SEO-Friendly URLs − Search query strings are the parameters added to a URL when performing a search on a website. In WordPress, the default search URLs typically include.
Woocommerce Order Place Button Bottom to Right Side − It is very easy to move the product’s review & payment section of the order process to the right side. This customize will make your.
Check WordPress Content Exists or Not Before Post − Are you want to post from front-end of the WordPress website? You can check whether your content already exists in the database or not using.