Add WooCommerce add to cart button and quantity field to Shop archive page

Add Products To Cart Archive

…$html, $product ) { if ( is_user_logged_in() && is_shop() && $product && $product->is_type( ‘simple’ ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) { $html = ‘<form action=”‘ . esc_url(…

Read More

How to Add Web Fonts to Beaver Builder Plugin and Theme

Add Web Fonts Beaver Builder

…in your theme folder.   Then add in via enqueuing… https://gist.github.com/neilgee/b70262f6ff2f9b0c1774dbebb6c8c91c#file-enqueue-php Once enqueued add for the Beaver Builder modules in via fl_builder_font_families_system filter… https://gist.github.com/neilgee/b70262f6ff2f9b0c1774dbebb6c8c91c#file-fonts-php Just repeat the formatting as above…

Read More

Filter WooCommerce Order Received Thank You Text

…which you can do using the filter woocommerce_thankyou_order_received_text https://gist.github.com/neilgee/a570907ec8bb4d54741f#file-order-received-append-replace-php Above the original text is being replaced. Or below the original text is being retained with some new text added. https://gist.github.com/neilgee/a570907ec8bb4d54741f#file-order-received-append-php…

Read More