rasheedsamawi
Forum Replies Created
-
Forum: Plugins
In reply to: [Comment Images Reloaded] Translate to English pleaseHello,
this would be great thank you ??Forum: Plugins
In reply to: [Comment Images Reloaded] Translate to English pleasehi,
is it possible to have this translation in German ?
Dein Brot Bild (GIF, PNG, JPG, JPEG):
Best Regards
same results here
I’ve added the following to the functions.php file as the tutorial:
function jptweak_remove_share() {
remove_filter( ‘the_content’, ‘sharing_display’,19 );
remove_filter( ‘the_excerpt’, ‘sharing_display’,19 );
if ( class_exists( ‘Jetpack_Likes’ ) ) {
remove_filter( ‘the_content’, array( Jetpack_Likes::init(), ‘post_likes’ ), 30, 1 );
}
}add_action( ‘loop_start’, ‘jptweak_remove_share’ );
and the following the content-single-product.php:
if ( function_exists( ‘sharing_display’ ) ) {
sharing_display( ”, true );
}if ( class_exists( ‘Jetpack_Likes’ ) ) {
$custom_likes = new Jetpack_Likes;
echo $custom_likes->post_likes( ” );
}thanks
- This reply was modified 8 years, 5 months ago by rasheedsamawi.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] duplicate social iconsHi,
I’m new to WordPress and I’ve added the following snippet to functions.php to remove the duplicated icons
function jeherve_remove_jp_woo_buttons() {
remove_action( ‘woocommerce_share’, ‘jetpack_woocommerce_social_share_icons’, 10 );
}
add_action( ‘loop_start’, ‘jeherve_remove_jp_woo_buttons’ );and the following to custom-single-product.php to view the sharing icons underneath the product description
if ( function_exists( ‘sharing_display’ ) ) {
sharing_display( ”, true );
}if ( class_exists( ‘Jetpack_Likes’ ) ) {
$custom_likes = new Jetpack_Likes;
echo $custom_likes->post_likes( ” );
}you can take a look
is there any way to remove the sharing icons under the product tabs ?
thanks ??
- This reply was modified 8 years, 5 months ago by rasheedsamawi. Reason: forgot the main question :)
Forum: Plugins
In reply to: [Comment Images Reloaded] Translate to English pleasethank you very much, I’ll send you the translation as soon as possible.
Forum: Plugins
In reply to: [Comment Images Reloaded] Translate to English pleaseis it possible to translate to German ?
thanks
Forum: Plugins
In reply to: [Display Widgets] Display German Letters Problemi solved the problem using HTML Entities.