Woocommerce Storefront主题删除购物车页面和结帐时的“运送可用”文本

时间:2018-06-07 20:53:11

标签: php wordpress woocommerce storefront

我想在购物车和结帐页面上删除“可能有货”的文字。我附上了一张图片并用红色圈出我要删除的内容。

Text to be removed circled in red

谢谢!

1 个答案:

答案 0 :(得分:0)

我觉得这是一个白痴 - woocommerce能够帮助我,这是一个非常简单的解决方案 - 只是一些简单的CSS:



library(plotly)
library(ggplot2); library(reshape2)
g <- melt(Gene_states22, id.vars = c("gene_symbol","panel"))
p1 <- ggplot(g, aes(gene_symbol,variable)) + 
  geom_tile(aes(fill = value), colour = "grey50") +
  scale_fill_manual(values=c("white", "red", "blue"))+
  labs(title = "Heatmap",x = "gene_symbol",y="sample",fill="value")+
  theme(title = element_text(family = "sans serif", 
                             size = 14, 
                             face = "bold"), 
        axis.title = element_text(family = "sans serif", 
                                  size = 16, 
                                  face = "bold", 
                                  color = "black"), 
        axis.text = element_text(family = "sans serif", 
                                 size = 11),
        axis.title.y = element_text(margin = margin(t = 0, r = 25, b = 0, l = 25)),
        panel.background = element_rect(fill = NA),
        panel.grid.major = element_line(colour = "grey50"))
p1
ggplotly(p1)%>%
  layout(autosize = F, 
         width = 1450, 
         height = 600,
         hoverlabel = list(bgcolor = "white",
                           font = list(family = "sans serif", 
                                       size = 9, 
                                       color = "black")))
&#13;
&#13;
&#13;