Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Add Text After or Before on the Shop Page/Archive Page

1
remove_action( 'woocommerce_shop_loop_item_title','woocommerce_template_loop_product_title', 10 );
	function customize_shop_page_product_title() {

    $custom_text = 'My Custom Text';
    echo '<h3 class="woocommerce-loop-product__title">' . get_the_title() .$custom_text.'</h3>';
}
add_action('woocommerce_shop_loop_item_title','customize_shop_page_product_title');
Comment

PREVIOUS NEXT
Code Example
Php :: Clear any previous error php 
Php :: php create html code 
Php :: install all php extensions ubuntu 20.04 
Php :: how to rename a table element in laravel 
Php :: cmd run php file 
Php :: wordpress rest_no_route custom post type 
Php :: edd login page wordpress 
Php :: php public folder 
Php :: best custom email validation rule for laravel 
Php :: laravel migrate error default character 199 boot 
Php :: guarded and fillable in laravel 
Php :: spatie laravel pdf image 
Php :: create resource controller in admin folder laravel 
Php :: laravel date format valdiate 
Php :: audio validation in jquery validation 
Php :: laravel eloquent with query parameter 
Php :: turn off wordpress user list exposed 
Php :: wp_query start from second post 
Php :: php while select query 
Php :: recursive directory only listing php 
Php :: laravel-check-if-related-model-exists 
Php :: QR code for laravel 
Php :: laravel query when 
Php :: view blob phpmyadmin 
Php :: woocommerce_recently_viewed 
Php :: php get day of week number 
Php :: php How to remove from a multidimensional array all duplicate elements including the original 
Php :: how to fetch associate data from csv in php 
Php :: debugbar:clear in laravel 
Php :: overloading and overriding in php 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =