PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, February 7, 2022

[FIXED] How can I hide categories and tags in quick view in Wordpress?

 February 07, 2022     categories, hide, tags, wordpress     No comments   

Issue

How to hide categories and tags in quick view? I am using WPC Smart Quick View 2.5.0


Solution

I assume you are talking about this plugin. When I visited their website, I saw a live preview page.

I would say the easiest way to hide that meta data would be through CSS. So when I used the Developer Tools of my browser, I was able to figure out the popup modal's id is woosq-popup

enter image description here

And on inspecting the Categories element, I found the class name of its container to be product_meta :

enter image description here

So a custom CSS code like this would resolve the issue:

#woosq-popup .product_meta {
    display: none;
}


Answered By - Akhilesh B Chandran
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home
View mobile version

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing