Search snippet
Results
-
Gutenberg Blocks cover image
February 9, 2021
Simple Example of Cover Image Block Very simply, the Cover Image block allows you to include an image with text sitting in front of it, like the image below (where the words “Simple Cover Image Block” are not part of the image but text typed directly i…
-
Remove website from comment form
January 15, 2021
Cat: PHP -
Remove Website field from Post comments
January 11, 2021
add_filter( ‘comment_form_default_fields’, function($fields ) { unset( $fields[‘url’] ); return $fields; }, 11 );
Cat: Beaver -
Add qty inputs next to add to cart button with and without Ajax reload on WooCommerce archives
January 6, 2021
Cat: PHP, woocommerce -
Change ‘Return To Store’ text button in WooCommerce
November 16, 2020
WooCommerce version 2.6 has brought out a new text filter that lets you change the text of ‘Return To Store’ on the button that appears on the cart page when the cart is empty. The filter is called woocommerce_return_to_shop_text and this is how you ca…
Cat: PHP, woocommerce