Is there some way to control the number of search results?
Reply: It is possible with the Pro versions
Is there some way to control the length of excerpts in searhc results?
Reply: Currently, no. If you purchase the pro version, open a support ticket. We can look into it.
Is there some way to remove the icon from search results?
Reply: Please add the following CSS from Settings->Custom CSS. Save and purge the cache plugin before checking.
.wp-chatbot-template-01 .wpbot_card_caption.wpbot_card_caption_saas span {
display: none !important;
}
Thank you!
Thank you. Unfortunately, adding the custom CSS didn’t work for me (see my other support topic).
Is there a developer document for your plugin, where I can see the action and filter hooks?
Please try the following CSS override:
wp-chatbot-ball-container .wpbot_card_caption.wpbot_card_caption_saas span {
display: none !important;
}
I’ve managed to make it happen with this:
#wp-chatbot-chat-container #wp-chatbot-ball-container .wpbot_card_caption.wpbot_card_caption_saas span, #wp-chatbot-chat-container ul.wp-chatbot-messages-container>li.wp-chatbot-msg .wpbot_card_image img { display: none !important; }