HI there
Please, try to open one topic per question: this way you’ll make life easier to people searching for the answer to their question on this forum
Let’s proceed step by step:
1. There is no option currently to disable title edit form on wishlist page; anyway you can do this via code, adding the following snippet at the end of functions.php file of your theme or child
if( ! function_exists( 'yith_wcwl_disable_title_editing' ) ){
function yith_wcwl_disable_title_editing( $params ) {
$params['can_user_edit_title'] = false;
return $params;
}
add_filter( 'yith_wcwl_wishlist_params', 'yith_wcwl_disable_title_editing' );
}
2. Please, try the following CSS code: you can add it to Additional CSS section of theme customizer
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist {
top: 10px;
right: 25px;
left: auto;
background: red;
padding: 7px 10px 5px;
border-radius: 50%;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist:hover{
background: #c40000;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist i{
color: #fff;
}
.add-to-wishlist-before_image .yith-wcwl-add-to-wishlist img{
display: none!important;
}
This is the final result on your installation; maybe you can start from here and adjust it to your taste
3. You can move it to the top with the following CSS rule
#yith-wcwl-popup-message {
top: 15px
}
Regarding customization, if you describe me better what you want to obtain maybe I could suggest some simple CSS