Elementor

Elementor Anchor Margin

Use the “Menu Anchor” element and then use this css. Change the “100” to adjust height. body:not(.elementor-editor-active) .elementor-menu-anchor:before { content: “”; display:block; height: 100px; /* fixed header height*/ margin: -100px 0 0; /* negative fixed header height */ visibility: hidden; pointer-events: none; }

Elementor Child Theme

Go to this website: https://github.com/elementor/hello-theme-child Click the “code” button < Download ZIP. Upload zip to the theme section in WordPress.    

Elementor Popup Condition Based on Products in Cart

You need to create a function and put it e.g. in your child theme’s function.php. I have created a gist with the functions code, please see https://gist.github.com/DigitalFactoryCR/c95e26d10ba920db1caf2f05211da00c Once done that add the following PHP statement in your Conditional: is_in_cart( [ 977,694,693,692,691 ] ) You need to add another function e.g to your child theme: https://gist.github.com/DigitalFactoryCR/827bb567bd77cf4b3fe91e43046edb24 […]