It is working, however it’s hidden behind your other plugin, the Storefront toolbar anchored to the bottom of the screen (My Account, Search, Cart icons element: .storefront-handheld-footer-bar
).
If you raise the z-index
(details in FAQ) in the advanced settings to 10000
the Call Now plugin would be higher than your Storefront toolbar plugin – so you can see it exists, and is working fine.
So, you have two plugins fighting to be in the same place. My plugin intentionally has a lower priority and is visibly hidden.
–
to resolve: you can opt to not use one, or hack one to leave some room for the other. To “hack” one, in addition to the z-index change, in wp-admin > Appearances > Custom CSS, add the following:
html body .storefront-handheld-footer-bar { bottom: 53px !important; }
but as you’ll see doing that really takes away the vertical space.
-
This reply was modified 7 years, 4 months ago by
David Sword. Reason: added css hack