Make sure you are not overriding the .facetwp-hidden
CSS class.
Category: Notes
-
FacetWP ‘Load More’ button still showing even when no more posts to show
-
Enable block editor for WordPress custom post type
<?php $args = [ 'show_in_rest' => true ]; register_post_type( 'post-type-slug', $args );
-
Remove /blog from Yoast SEO: Local locations custom post type URL
add_filter( 'yoast_seo_local_cpt_with_front', '__return_false' );
-
Change post type for WordPress posts with WP-CLI
In this example, I’m modifying all the posts with a legacy custom post type that I want to get rid of to use the Yoast SEO: Local custom post type for locations instead.
wp post update $(wp post list --post_type=locations --format=ids) --post_type=wpseo_locations
-
Disable image optimisation on Pagely
PressThumb can be disabled by renaming the
pagely-pressthumb.php
plugin in the mu-plugins directory topagely-pressthumb.php.off
.Pressthumb optimization can be re-enabled by renaming the file back to its original name.