Hi,
One small trick is to change the color of axis labels to color of the background to hide the labels.
If you are using theme_bw() or theme_minimal() then change color of axis.text to white as below.
ggplot + mapping+ geom_bar() +theme(axis.text.x = element_text(colour = "white"))
Hope it helps!