Buy me a coffee

Rename Site Title

One Page

Add this code to Page Header Code Injection and click Save

(If your site doesn’t support Code Injection, you can add code via Code Block)

<!-- Rename site title - one page -->
<style>
a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
</style>

Add these codes to CSS Custom Box and click Save

Blog Page (List)

/* Blog List */
[class*="type-blog"].view-list {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Blog Post

/* blog post */
[class*="type-blog"].view-item {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Event List

/* Event List */
[class*="type-event"].view-list {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Event Detail

/* event post */
[class*="type-event"].view-item {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Shop/Category

/* Shop Category */
[class*="type-products"].view-list {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Individual Product

/* Individual product */
[class*="type-products"].view-item {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Cart Page

/* Cart Page */
body#cart {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Homepage Only

/* Homepage Only */
body.homepage {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Other Pages (exclude homepage)

/* Other pages - exclude homepage */
body:not(.homepage) {
   a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Mobile Only

/* Mobile only */
@media screen and (max-width:991px) {
  a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

Desktop Only

/* Desktop Only */
@media screen and (min-width:992px) {
  a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}
}

On Scroll Only

/* On Scroll Only */
header#header.shrink {
  a#site-title:after {
    content: "tuanphan new text";
    position: absolute;
    left: 0;
    visibility: visible;
}
a#site-title {
    visibility: hidden;
}}