📚
Ncmaz WordPress theme
New Ncmaz FSEBuy theme now Old demo
  • ⚠️Welcome
  • ☃️Community
    • 🧬Ncmaz theme, React & Graphql
    • 👋Community
  • THEME INSTALLATION
    • Configure Server Settings
    • Download and Install Theme
    • Install Default Plugins
    • Import Demo Contents
      • [ERROR] Failed to import "Home 2" page
    • How do I Update the Theme?
    • 💡Update theme manually
    • Install theme with Multisite
    • 🧐Error after update theme!
  • SING-IN / SIGN-UP
    • SignIn/SignUp With Socials
  • THEME OPTIONS
    • Translation language on front-end react components
    • How to change fonts and theme colors?
    • Customize the radius level for the theme.
    • Enable sidebar in archive pages
  • HEADER - LOGO - MENU
    • Header settings
    • How to setting megamenu?
    • Custom top notify message
  • FAVORITES
    • Icon for Favorite button
    • Custom Reading Time
    • Custom for Favorite
  • Gutenbergs
    • Gutenberg version 3 🎉
    • Ncmaz Gutenberg blocks
    • Build a home page with Ncmaz gutenbergs
    • Add form in Ncmaz Newsletter Block
    • Unexpected token < JSON at position 0
    • This block contains unexpected or invalid content.
    • Using the Elementor plugin?
    • Add Typo default Gutenberg block on Home page (page template is Ncmaz-custom-page)
    • Custom Ncmaz Newsletter Block
    • Widget Ncmaz Gutenberg blocks
    • Issue with Ncmaz users block
  • SINGLE
    • Setting Post format Video, Audio, Gallery
    • Setting single style and toggle single sidebar widgets
    • (Deprecated) Create Post-Submission pages
    • Add Ncmaz Gutenberg blocks to single post
  • ❓How to?
    • Update theme?
    • Translate some missing words
    • Thumbnails are blurry when viewed in mobile mode.
    • Fix hidden login modal on mobile?
    • Style dashboard, account page break?
    • Customize fields in dashboard sections at Frontend
    • Import RTL demo data
    • Integrate the Polylang plugin into the theme
    • (Deprecated) Add ACF fields to the wp-user-frontend-pro form
    • (Deprecated) Create account page (wfu) ?
    • Create frontend submission post page and edit account page
    • You don't have permission to submission the post.
    • Optimize performance and improve GTmetrix score, Google PageSpeed Insights
    • Cover image for archive pages. Settings number of tags, categories on submit post page
    • Ncmaz-frontend plugin project development
    • How to get Youtube video ID
    • Social share link
  • Footers
    • Footer widgets
  • 💊Custom CSS
    • Custom CSS
    • Header custom CSS
    • Change default Bg image on Archive page
  • 🕯️CHANGE LOG
    • Support
    • Change log
  • Ncmaz ACF fields
Powered by GitBook
On this page
  • ~ Change image page 404
  • ~ Hidden Author on Post-cards
  • ~ Change line-clamp on post card title:
  • ~ Change BG on home page:
  • ~ Hidden reading-time:
  • ~ Hidden ViewCount on Single page
  • ~ Hidden both Like button and Comment button
  • ~ Hidden Like button on post card
  • ~ Hidden Comment button on post card

Was this helpful?

  1. Custom CSS

Custom CSS

Please copy the CSS snippets you need below and paste them at

Appearance -> Customize -> Additional CSS

~ Change image page 404

.nc-Page404 header .nc-NcImage img {
   opacity: 0;
}

.nc-Page404 header .nc-NcImage {
    background-image: url('YourImageUrl');
    background-size: contain;
}

~ Hidden Author on Post-cards

.nc-PostCardMeta a.relative.flex.items-center.space-x-2, 
.nc-PostCardMeta span.mx-\[6px\].font-medium {
    display: none;
}

.nc-PostMeta2 a.block.font-semibold {
  display: none;
}

.nc-CardAuthor2 {
    height: 0;
    overflow: hidden;
    opacity: 0;
}

~ Change line-clamp on post card title:

.nc-card-title .line-clamp-1, .nc-card-title .line-clamp-2 {
    -webkit-line-clamp: 4 !important;
}

~ Change BG on home page:

.nc-BgGlassmorphism .bg-\[\#ef233c\] {
   background-color: yourcolorhex !important;
}

.nc-BgGlassmorphism .bg-\[\#04868b\] {
   background-color: yourcolorhex !important;
}

~ Hidden reading-time:

span.span-reading-time.rt-reading-time {
   display: none !important;
}

.nc-PostMeta2 span.mx-2.font-semibold,
.nc-CardAuthor2 span.hidden.lg\:inline.mx-1.transition-opacity {
    display: none !important;
}

.nc-PostMeta2 span.text-neutral-700.dark\:text-neutral-300:last-child {
    display: none;
}

~ Hidden ViewCount on Single page

.nc-SingleMetaAction2__views {
   display: none !important;
}

~ Hidden both Like button and Comment button

.nc-PostCardLikeAndComment {
   display: none !important;
}

~ Hidden Like button on post card


.ncmaz-button-like-post {
   display: none !important;
}

~ Hidden Comment button on post card


.nc-PostCardCommentBtn {
   display: none !important;
}
PreviousFooter widgetsNextHeader custom CSS

Last updated 2 years ago

Was this helpful?

💊