Adding a Sticky Footer to Beaver Builder Theme with CSS

…can also still apply the sticky footer with some Flexbox CSS rules as below. .fl-page { display: -ms-flexbox; display:-webkit-flex; display:-webkit-box; display:flex; -ms-flex-direction:column; -webkit-flex-direction:column; -webkit-box-orient:vertical; -webkit-box-direction:normal; flex-direction:column; min-height:100vh; } .fl-page-content {…

Read More

Change Amount of WooCommerce Products Displayed on Shop Page

woocommerce-display-products

…or Woo’s woocommerce_product_query together with the WooCommerce conditional is_product_category() add_action(‘pre_get_posts’,’bt_shop_filter_cat’); function bt_shop_filter_cat($query) { if (!is_admin() && $query->is_main_query() && is_product_category( ‘accessories’ )) { // change to your product category $query->set( ‘posts_per_page’,…

Read More