VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Development & Testing => Topic started by: abrodski on August 18, 2016, 17:42:44 PM

Title: How to remove tcpdf from Components in Joomla admin panel?
Post by: abrodski on August 18, 2016, 17:42:44 PM
Hello!

A while ago in this thread here:

https://forum.virtuemart.net/index.php?topic=126403.0

GJC Web Design described the way to get rid of "Virtuemart aio" empty menu item in Joomla's "Components" menu by doing this in the database:

SELECT * FROM `jos_menu` WHERE `link` LIKE '%allinone%'

Now my question is... what SQL query is necessary to remove "tcpdf" empty entry from Joomla's "Components" menu?
Title: Re: How to remove tcpdf from Components in Joomla admin panel?
Post by: GJC Web Design on August 18, 2016, 17:58:47 PM
SELECT * FROM `#___menu` WHERE `title` LIKE '%tcp%'
Title: Re: How to remove tcpdf from Components in Joomla admin panel?
Post by: abrodski on August 18, 2016, 18:39:32 PM
Quote from: GJC Web Design on August 18, 2016, 17:58:47 PM
SELECT * FROM `#___menu` WHERE `title` LIKE '%tcp%'

Thank you! Just to be sure...

SELECT * FROM `#___menu` WHERE `title` LIKE '%tcp%'

means this?

SELECT * FROM `jos_menu` WHERE `title` LIKE '%tcp%'

where I just change the "jos" for my own Joomla prefix? Correct?
Title: Re: How to remove tcpdf from Components in Joomla admin panel?
Post by: GJC Web Design on August 18, 2016, 18:52:28 PM
if u have jos yes
Title: Re: How to remove tcpdf from Components in Joomla admin panel?
Post by: abrodski on August 18, 2016, 18:54:05 PM
Quote from: GJC Web Design on August 18, 2016, 18:52:28 PM
if u have jos yes

Okay, I understand. Thanks again!