您好我使用了最新的WP和WC。当客户添加超过剩余库存时,添加到购物车按钮会继续旋转。他们可以购买2件和另外2件,而库存只有2件。
控制台上的错误:
df <- data.frame(LogFold = c(14.20, 14.00, 8.13, 5.3, 3.8, 4.9, 1.3, 13.3, 14.7, 12.2),
Tissue = c("liver", "adrenal", "kidney", "heart", "limb", "adipose", "brown", "hypothalamus", "arcuate", "lung"))
df1<-df%>%
arrange(desc(LogFold))
ggplot(data=df1, aes(x=Tissue, y=LogFold, fill = Tissue)) +
geom_bar(stat="identity")+
scale_colour_gradient2()+
coord_flip()+
ylim(0, 15)+
scale_x_discrete(limits = df1$Tissue)+
theme_classic()
WC在前面显示错误信息: 您无法将该金额添加到购物车中 - 我们有2个库存,您已经有2个购物车。仅在我刷新页面时。
我不想允许后退,我已经搜索过了。那么我可以尝试的解决方案是什么?请帮忙。谢谢,社区!