Is it possible to list staff member's email and phone number when using the staff members VC items, some styles will have the email icon but I'd like the actual email and phone listed below person's name
Thnx, that's the rd_staff_carousel.php file, correct?
If I want to change it, can I move it to my child theme folder? If so, do I need to keep it in a special folder, or just have it inside the root of the child theme folder?
And lastly, does the phone number field has a variable name like the others?
Hi,
Is it possible to list staff member's email and phone number when using the staff members VC items, some styles will have the email icon but I'd like the actual email and phone listed below person's name
Hello Ralph,
Unfortunately this is not possible without modifying the php files.
Do not hesitate to contact us if you have more questions.
Have a nice day!
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Thnx, that's the rd_staff_carousel.php file, correct?
If I want to change it, can I move it to my child theme folder? If so, do I need to keep it in a special folder, or just have it inside the root of the child theme folder?
And lastly, does the phone number field has a variable name like the others?
Hello Ralph,
If you are using the carousel yes.
What you need to do is copy the content of the file in the functions.php of the child theme, this will overwrite the main theme functions.
To get the phone value you can add this line of code :
$phone_number = get_post_meta($post->ID, 'rd_phone', true);
then add $phone_number to call the phone.
Do not hesitate to contact us if you have more questions.
Have a nice day!
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme