wpdevadnan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I transfer my website ?hey,
you can change the website template , page layout etc and also you can do that for whole world.Forum: Fixing WordPress
In reply to: Category and page organisationForum: Fixing WordPress
In reply to: after update to 5.0 i lost graphic edit for pagesinstall classic editor as plugin and you will be done
Forum: Fixing WordPress
In reply to: Unable to to remove the words “Latest Posts” in front page.wpsm-title.under-title-line.middle-size-title {
display: none;
}
add this code in css fileForum: Fixing WordPress
In reply to: Woocommerce/wordpress image loading issuesadd this in css
.lazy-load.preload-me {
opacity: 1 !important;
}- This reply was modified 7 years, 7 months ago by wpdevadnan.
Forum: Fixing WordPress
In reply to: Woocommerce/wordpress image loading issuesadd this code in css
.content .woocommerce .wf-cell img, .woocommerce .content .wf-cell img {
opacity: 1;
}
cheers.Forum: Fixing WordPress
In reply to: Change page title size.site-title {
font-size: 50px;
}
just add this in css with desired font size .Forum: Fixing WordPress
In reply to: Contact Form 7 expiration date and timein custom js or under <script></script> tag
Forum: Fixing WordPress
In reply to: Contact Form 7 expiration date and timevar d = new Date();
var time = d.getHours() + “:” + d.getMinutes() + “:” + d.getSeconds();
if(time > 21 && time < 9 )
$(‘.wpcf7-submit’).prop(‘disabled’, true);
else {
$(‘.wpcf7-submit’).prop(‘disabled’, false);
}