Home Forums WoodMart support forum I want to add tool tips in price table.

I want to add tool tips in price table.

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #255537

    av00
    Participant

    I want to add tooltips in the price table please guide me on how to add while using elementor? However, I did it previously using visual bakery and CSS. i.e. https://www.w3schools.com/css/css_tooltip.asp

    #255542

    Artem Temos
    Keymaster

    Hi,

    Sorry, but there is no such option in our theme and Elementor by default. It may require additional code customization or extra plugin but we don’t have an instruction for this. It is out of our theme support scope.

    Regards

    #255565

    av00
    Participant

    I need this only https://xtemos.com/forums/topic/tooltip-pricing-table/ but code is not working here in the price table. Please help me I only need tool tips in price table.

    #255576

    Artem Temos
    Keymaster

    Where exactly have you placed the code? Please, send us a screenshot and the link so we can check.

    #255608

    av00
    Participant

    I have attached the screenshot. Please check

    Attachments:
    You must be logged in to view attached files.
    #255743

    av00
    Participant

    Here is the link

    #255785

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file to fix this

    add_filter(
    	'woodmart_allowed_html',
    	function( $tags ){
    		$tags['div'] = array(
    			'class' => true,
    			'title' => true,
    		);
    		return $tags;
    	}
    );
    #255793

    av00
    Participant

    I added this code in the child theme function.php then activated the child theme but still not working please check the snapshot.

    Attachments:
    You must be logged in to view attached files.
    #255797

    Artem Temos
    Keymaster

    Could you please disable all plugins that are not related to our theme and provide us your admin and FTP access so we could check it?

    Thank you in advance

    #255810

    av00
    Participant

    I have added admin details in private content. Also please tell me which plugins have to disable. As I have added only those plugin which comes with your theme except Wordfence. That too disabled still not working.

    #255812

    Artem Temos
    Keymaster

    You need to write the HTML inline there https://gyazo.com/a23ed9fbbc06d4ef7a63e2a93d665bbe
    Now it seems to work.

    #255822

    av00
    Participant

    Hi!
    Thanks for your support. It is working now. But I am sorry 🙁 still, I did not understand how you fixed it. As I can see here https://gyazo.com/a23ed9fbbc06d4ef7a63e2a93d665bbe you did not change anything. So, where you wrote HTML inline?
    Thanks in advance
    AV

    #255845

    Artem Temos
    Keymaster

    Hello,

    There was a line break before the closing </div> tag. We have removed it and now it works.

    Kind Regards

Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)