If you want to keep your woocommerce product remain published but want to make it hidden or not to show in product loop, then select this option in your product page editor.
Rosalie By SiloCreativo : Modification of header, footer, borders, backgrounds, fonts,contents, colors and more
Rosalie is an elegant, minimalistic and responsive modern WordPress theme built specifically for bloggers who love craft, lifestyle, fashion and generally are cool people. Designed for WordPress.com. You can check Roaslie by Silo Creative theme demo. Here I am sharing you some css customization which you can use to give your site a new look. The theme comes free with wordpress.com premium plan and business plan. You can ask question regarding any issue you are facing.
Continue reading “Rosalie By SiloCreativo : Modification of header, footer, borders, backgrounds, fonts,contents, colors and more”
WordPress theme Cubic by Automattic : CSS Documentation
Cubic, a single-column, grid-based theme with large featured images, perfect for photoblogging. Though I shared customization of WordPress theme Photography by The Theme Foundry , Photographer By Organic Themes which are also great for photography or photoblogging. Now I am sharing the modifications of Cubic theme by Automattic.
Cubic Theme by Automattic zip download
You can use my shared css code or can ask question in the comments section.
Continue reading “WordPress theme Cubic by Automattic : CSS Documentation”
Radcliffe 2 By Anders Norén :CSS Modifications
Anders Norén is the creator of Baskerville 2 and Radcliffe 2 wordpress theme. Radcliffe 2 is a theme for bloggers who want their content to take center stage. It comes free with wordpress.com. Though I am sharing you the zip of Radcliffe 2 theme along with child theme which you can download from here and also I am sharing here some CSS customization using which you can use to make your site beautiful or to give some extra touch of your wish.
Download Radcliffe 2 By Anders Norén Main / Parent theme
Download Radcliffe 2 By Anders Norén Child theme
Continue reading “Radcliffe 2 By Anders Norén :CSS Modifications”
WordPress simple text rotator
One of my client asked to add a text rotator in her site. I searched for plugins for that but didn’t appropriate free plugins for that. At last i got a piece of jquery code which at last I used to make the work done.
The code has two (2) parts.
1. Jquery code which you can put either in your theme’s header.php or in theme option (if your theme provides option to add script)
2. The HTML and Text portion, which you can put in any portion of your site where you want to show the text rotator.
Here I am sharing you the code.
If you have any issue feel free to let me know in comments section
/***************** First Part Jquery code ***************** /
https://code.jquery.com/jquery-3.6.4.js
<script>
$(document).ready(function() {
var items = $(‘#rotate div’);
var currentItem = 0;
var nextItem = 1;
items.hide();
items.eq(currentItem).show();
setInterval(function() {
items.eq(currentItem).fadeOut(500, function() {
items.eq(nextItem).fadeIn(500);
currentItem = nextItem;
nextItem = (nextItem + 1) % items.length;
});
}, 2000);
});
</script>
/***************** Second Part HTML and Text ***************** /
<div id="rotate">
<div style="display: block; opacity: 0.90557;">
This is first text to rotate.
</div>
<div style="display: none;" class="red">
This is second text to rotate.
</div>
</div>
Make Woocommerce single product page image round shape with border
This is a simple css trick to make your woocommerce single product page to be round shape with a border. Use the code below in your custom css portion.
If you face any issue feel free to take help in the comments section.
.woocommerce-product-gallery__image img {
border-bottom-left-radius: 50% 50% !important;
border-top-left-radius: 50% 50% !important;
border-top-right-radius: 50% 50%;
border-bottom-right-radius: 50% 50%;
border-bottom-left-radius: 50% 50% !important;
height:382px !IMPORTANT;
border: 5px solid #f5f5f5 !important;
}
.woocommerce-product-gallery__image {
width: 382px !IMPORTANT;
}
.woocommerce div.product div.images li img {
border: none !important;
transition: opacity .5s ease;
border-radius: none !important;
height: auto !important;
}
How to add auto calculation fields or calculator in Contact Form 7 using Jquery
This tutorial is only for those who are trying to add calculator fields like where user will put value in one field and some calculation will be done automatically and result will be viewable in other single or multiple fields in contact form.
This technique I have shared is for advance level users who have knowledge of Jquery and using Contact form 7 . If you are new or facing problem to implement such type of fields, feel free to message me in comments section or take my personal help in my profile.
Here is the technique
1. At first put your calculator fields where you want to do or show calculation
2. Use Jquery code something like this
I have shared you the Jquery auto calculation code for contact form 7 below
<script> jQuery(document).ready(function(){ //alert("Welcome"); var ce; var ps; var ar; jQuery("#ce").on("change", function() { ce= this.value ; ps=(((ce/30))/5)*1.2; ar=(((ps*1000)/250)*(0.941*1.65)*1.6); jQuery("#ps").val(ps.toFixed()); jQuery("#ar").val(ar.toFixed()); }); }); </script>3. Result
If you have any issue feel free to ask me question here in comments section
Theme Boardwalk By Automattic : CSS Customization
Before I shared you modifications or styling of a beautiful wordpress theme Toujours by Automattic. Today I am sharing with you the customization of another theme named Boardwalk. Theme Board by Automattic is a minimalistic theme with horizontal scrolling. Using my provided css code you can give the theme a new look.
I am sharing you the theme and child theme ( to do your own customization)
Theme Boardwalk By Automattic Parent Theme
Theme Boardwalk By Automattic Child Theme
So You can use my shared code to modify Boardwalk theme and ask question in the comments section.
Continue reading “Theme Boardwalk By Automattic : CSS Customization”
Theme Toujours By Automattic : CSS Customization
Toujours has a simple, elegant design that’s perfect for planning and sharing moments from your wedding. The theme highlights your content with a slideshow, large featured images, and a unique layout for recent posts.
Download Toujours theme by Automattic to create your own wedding / blogging website.
Download Toujours theme by Automattic Child Theme to modify the theme without touch the parent theme.
Here i am sharing some customization of Toujours theme. So You can use my shared code and ask question in the comments section.
Continue reading “Theme Toujours By Automattic : CSS Customization”
WordPress Theme Bari By Themetry: Styling,Modifications, CSS Customization and more.
Bari By Themetry A simple photography theme . If you are using wordpress.com premium plan you can use it ( costing $49).
Previously I shared customization of Photographic themes Like Photography by theme foundry and Photographer by Organic theme which you can check also.
Here i am sharing some customization of Bari theme. So You can use my shared code and ask question in the comments section.









