This requires some work on your part, and archives must be enabled.
What this means is that you have to open the attribute name and

for some strange reason no one has a freakin image @#$@%^#$^$%^$%^$%^%$^%$

This requires some work on your part, and archives must be enabled.
What this means is that you have to open the attribute name and
for some strange reason no one has a freakin image @#$@%^#$^$%^$%^$%^%$^%$
The parent should not be positioned!!!!!!!
.child-div {
position:absolute;
left:0;
right:0;
}
I see lots of new WP users trying to optimize their sites using the most advanced plugins and methods, DONT!. Most of the times you end up destroying your site and spend many hours debugging. The following plugins will help you without needing to change their default settings or read tutorials.
WP Super Cache, really easy to use without having to change the defaults. Plenty of documentation and tutorials. Works with WooCommerce and if you have a good host you can enable the ‘expert’ mode.
Autoptimize, use it for HTML, CSS, JS and images.
Redis Object Cache, caches your database queries, unfortunately you need a good hosting company to support it and it can cause trouble some times 🙂
To make it sticky I used the offsetParent, offsetTop and scrollY properties. I placed the button in a positioned element ( not sticky ) hid it with opacity so I can animate it and get the offsetParent ( does not work with display:none; ) and then used scrollY to change it’s opacity. I added a class ‘.sticky-facetwp’ to the button to target it.
The CSS
button.sticky-facetwp {
opacity: 0;
position: absolute;
z-index: 99;
color:#000 !important;
transition-property: opacity;
transition-duration: 1s;
transition-delay: 0s;
}
.archive button.fixed-sticky-facetwp {
opacity: 1;
position: fixed;
}
The JS
const page = document.querySelector('#content')
// get the filter button
const theFilter = document.querySelector('.sticky-facetwp')
const theFilterTop = theFilter.offsetTop
function stickyfacetwp() {
if (window.scrollY >= theFilterTop) {
theFilter.classList.add('fixed-sticky-facetwp');
} else {
theFilter.classList.remove('fixed-sticky-facetwp');
}
}
window.addEventListener('scroll', stickyfacetwp)
Scripts without
async
,defer
ortype="module"
attributes, as well as inline scripts, are fetched and executed immediately, before the browser continues to parse the page.
To get the offsetHeight when using an inline script you can use an event listener like
window.addEventListener(‘load’, start);
load to wait for all assets OR link the script with ‘src’
<script src=”app.js”></script>
to load it after the assets loaded.
If you are new to WP, chances are that you will have issues with your site. Do not panic, you can ask for help or google the exact problem/error you have, most of the times you will find many resources with fixes. From my experience 90% of the cases can be diagnosed easily though.
First things to try :
If you do these and still have the same problem, like not able to view your site or create a post, here are more advanced ways to find the problem.
If again you cannot find the culprit it is better to hire a professional : )
tip: always work on a staging site!
Yes it works, not so easy to find the Google keys + Ids etc but it works, thanks!
Kadence WooCommerce Email Designer
I had to edit a client’s email template and found this gem! Amazing work, great plugin
Easy, you just rename the old xampp directory and install the new version. PhpMyAdmin works for each one so you can import/export your databases and your files! Doh! I was really worried about this for a long time and thought I should share my ‘solution’
© 2021 Simplesteps for WordPress
Theme by Anders Norén — Up ↑