marge123
Forum Replies Created
-
Forum: Plugins
In reply to: [Pronamic Pay] get_version package.json not foundThank you very much!
Forum: Plugins
In reply to: [Pronamic Pay] get_version package.json not foundThanks for your quick response.
Even an empty package.json file I put earlier in /wp-content/plugins/pronamic-ideal/vendor/pronamic/wp-mollie/ did prevent the error also. However, I think the file does not come standerd within the installation of pronamic because it works fine on another site, even though the file package.json” is missing there as well.Forum: Themes and Templates
In reply to: [Materialis] Mobile Navbar/Menu Not OpeningLooking at the css classes of the menu upon opening, it seems the
.force-hideclass is not removed. Moreover, upon actually opening the menu, the responding <div> is assigned classes for this animation, which should be replaced by the.openclass when finished. This also does not happen.The issue can be temporarily fixed by adding the following code to the (custom) css:
#offcanvas-wrapper.force-hide:not(.hide) { display: flex !important; overflow: auto; width: auto !important; }Do note that this uses the pseudo-selector
:not, which does not work for old browsers.