Category: WordPress FAQ Plugin

Empower Your Users: Introducing Custom FAQ Item Ordering in Front-end — WordPress FAQ Pro Version 4.8.6 Now Available

Hi, dear WordPress FAQ plugin users,  I hope this message finds you are doing well and enjoying wonderful time with your family. 🙂 We just released wordpress faq pro version 4.8.6, in this version, we added a new option ‘Custom FAQ Item Order” in WordPress FAQ global settings panel 🙂

Why Customizing the Order of FAQ Items Can Benefit You

The request for a custom FAQ item order in the front-end is quite insightful and can significantly enhance the user experience for several reasons:

1. **Relevance and Prioritization**: Users may want to highlight certain FAQs that are more relevant or frequently asked. By allowing custom ordering, they can ensure that the most important questions are seen first, making it easier for visitors to find the information they need quickly, users can easily find support, tutorials, and examples.

2. **User-Centric Design**: Different audiences may have different needs. Custom ordering allows users to tailor the FAQ section to their specific audience, ensuring that the content is organized in a way that resonates with their visitors.

3. **Improved Navigation**: A well-structured FAQ section can improve the overall navigation of a website. By customizing the order, users can create a logical flow that guides visitors through the information, reducing frustration and enhancing the overall experience.

4. **Highlighting New Features or Updates**: If a business has recently launched a new product or feature, they might want to move related FAQs to the top. This flexibility allows them to keep their content dynamic and relevant.

5. **Enhanced Engagement**: When users can find answers quickly, they are more likely to stay on the site longer and engage with other content. This can lead to higher conversion rates and customer satisfaction.

6. **Feedback and Adaptation**: As businesses evolve, so do their FAQs. Custom ordering allows users to adapt their FAQ sections based on feedback or changing trends, ensuring that the information remains current and useful.

Overall, this feature request reflects a desire for greater control and flexibility in presenting information, which ultimately leads to a better user experience for both the website owners and their visitors.

Personalize the Order of FAQ Items: A Step-by-Step Guide

Hello there! Ready to customize the order of your FAQ items? Follow this simple guide to make your FAQs more user-friendly!

1: Log in to your WordPress admin dashboard.

2: Make sure you’re using the latest version of the WordPress FAQ Pro Plugin 4.8.6 or WordPress FAQ free 3.8.9

3: In your WordPress dashboard, click on the FAQ menu item.

4: Add / Edit / Delete / Manage FAQ in Frequently Asked Questions via WYSIWYG wordpress standard editor

adding new wordpress FAQ plugin

adding new wordpress FAQ plugin

Step 5: Next, click on the Global Settings submenu.

Step 6: In the FAQ Global Settings, you’ll find a new option called “Custom FAQ Item Order.” It looks like this:

Wordpress FAQ Global Settings

WordPress FAQ Global Settings

Step 7: You can customize the order of your FAQ items by arranging the FAQ IDs in your preferred sequence. For example:
177, 232, 231, 207, 131, 172, 173, 174, 175.
Make a note of this ID sequence, as we’ll use it shortly!

How to Find FAQ Item IDs:

Step 7.1: In your WordPress dashboard, click on the FAQ menu item.

Step 7.2: This will open the FAQ settings panel.

wordpress FAQ posts

Step 7.3: To find the FAQ IDs, simply hover your mouse over the ‘Edit’ link of each FAQ item. You’ll see a link that looks like this:
tooltips.org/wp-admin/post.php?post=232&action=edit
The number ‘232’ in this link is the FAQ ID. Copy these IDs and arrange them in your desired order.

Step 8: Create a demo FAQ page by entering the shortcode [FAQ] as the content. On the front end, you’ll see a sample of the WordPress FAQ plugin using the Blue-Yellow template, which looks like this::

using different templates for wordpress FAQ plugin

using different templates for wordpress FAQ plugin

As you can see, the default sorting is alphabetical. Now, let’s customize the order of the FAQ items!

Step 9: Back in your WordPress dashboard, click on the Global Settings submenu again. At the bottom of the FAQ Global Settings panel, you’ll find the Custom FAQ Item Order option. Enter the ID sequence you noted earlier:
177, 232, 231, 207, 131, 172, 173, 174, 175
Then, click the blue Update Now button.

Step 10: Check the front end of your site, and you’ll see that the order of your FAQs has been successfully customized according to the ID sequence you specified!

 

Happy customizing! If you have any questions, feel free to reach out!

### What is an FAQ?

**FAQ** stands for **Frequently Asked Questions**. It is a list of common questions and answers related to a specific topic, product, or service. FAQs are designed to provide quick and accessible information to users, helping them find answers to their queries without needing to contact support or search extensively. They can cover a wide range of topics, including:

– Product features and specifications
– Pricing and payment options
– Shipping and return policies
– Technical support and troubleshooting
– General company information

FAQs are beneficial for both users and businesses, as they enhance user experience, reduce the volume of repetitive inquiries, and provide a centralized source of information.

### What is a WordPress FAQ Plugin?

A **WordPress FAQ Plugin** is a tool that allows website owners to easily create, manage, and display FAQ sections on their WordPress sites. These plugins typically offer a user-friendly interface and various features to enhance the FAQ experience, such as:

– **Easy Creation and Management**: Users can add, edit, and delete FAQ items directly from the WordPress dashboard.
– **Customizable Layouts**: Many plugins provide different templates and styles to display FAQs, allowing users to match the design with their website’s theme.
– **Search and Filter Options**: Some plugins include search functionality, making it easier for visitors to find specific questions.
– **Collapsible Sections**: FAQs can often be displayed in collapsible or accordion-style formats, saving space and improving readability.
– **Custom Ordering**: Users can arrange FAQ items in a specific order to highlight important questions or create a logical flow of information.
– **Shortcodes**: Most FAQ plugins allow users to insert FAQs into posts or pages using shortcodes, making it easy to integrate them into the site.

Overall, a WordPress FAQ plugin is a valuable addition for any website looking to improve user experience by providing quick access to important information.

For more details and to unlock additional FAQ features, click here.

We are developing more functions for wordpress FAQ users, such as Bullets Screen.  If you have any  feature requests, please don’t hesitate to contact us

Thanks, have a blessed weekend with your family 🙂

Best Regards,

WordPress Tooltips Support

Tagged with: , ,

WordPress FAQ plugins free 3.8.3 Released, Enhanced Code Security

Hello, esteemed users of WordPress FAQ Plugin! I hope this message finds you well and enjoying joyful moments with your loved ones. 🙂

Thank you for using our wordpress FAQ free plugin, as a user of wordpress FAQ plugin you may know that we developed this plugin many years ago, these days we have been refactoring our wordpress FAQ plugin, we are adding new FAQ features while rewriting our code to the wordpress specification and rewriting the code of our wordpress FAQ plugin.

Today, we used wp_nonce_field and check_admin_referer inside each form to validate the legitimacy of the form and the request according to the wordpress specification:

The wp_nonce_field() function in WordPress is used to generate a security token (Nonce). Nonce is a security mechanism to prevent Cross-Site Request Forgery (CSRF) attacks and verify the legitimacy of forms and requests. The function serves the following purposes:

  1. Form validation: By using wp_nonce_field(), a hidden field containing a unique security token is generated for a form. When the form is submitted, the server can validate this token to ensure the form submission is legitimate and prevent CSRF attacks.
  2. Request validation: In operations like links, button clicks, and AJAX requests, wp_nonce_field() can be used to generate a hidden field with a security token. The server can validate this token to confirm the legitimacy of the request.

On the server-side code, the validity of the security token can be checked using functions like check_admin_referer() or wp_verify_nonce(). Some important points to note:

  • The security token generated by wp_nonce_field() is typically meant for single-use, ensuring a new security token is used for each request.
  • The security token is user-specific, meaning each user will have their own security token. Thus, operations requiring verification of the security token should ensure that the user is logged in.
  • This function is commonly used in backend development, custom plugin, or theme development to enhance form and request security. For more detailed information about Nonce, you can refer to the official WordPress documentation.

Now we are adding more and more functions in wordpress FAQ free plugin from wordpress FAQ pro plugin, if you check our wordpress FAQ pro plugin, you will find it is easy to use plugin, users can select pretty FAQ templates from pre-designed template, custom FAQ style in back-end via a few clicks, Support use OpenAI ChatGPT to generate high-quality content for WordPress F.A.Q and wordpress post automatically, support WooCommerce Product FAQ, Responsive FAQ, Multiple FAQ Templates, FAQs grouped by category, specified number of FAQ items for each FAQ:

What is WordPress FAQ Plugin?

WordPress FAQ plugin is a powerful & fast jQuery FAQ solution to help wordpress blodder create / manage / edit FAQs easily, select default pretty FAQ template and custom FAQ style in back-end via a few clicks. With wordpress faq plugin, it is very easy to create and show accordion FAQs, display FAQs grouped by category…etc, it is developed by wordpress tooltips team based on many wordpress tooltips user’s feedback.

Further Reading: What is WordPress Tooltips Plugin?

Features in WordPress FAQ Plugin

* Lightweight & load fast & easy to use, just 3 minutes, you can build your own wordpress FAQ lists via wordpress custom post type editor and manage with wordpress custom post type manager

wordpress FAQ posts

wordpress FAQ posts

* AI FAQ — Support use OpenAI ChatGPT to generate WordPress F.A.Q automatically

You can use OpenAI ChatGPT to general high-level FAQ content automatically, just enter your OpenAI ChatGPT key in wordpress FAQ global settings panel:

WordPress FAQ Pro 4.0.6 Global Settings

And then click AI FAQ sub menu item, you will open “Generate FAQ via OpenAI” panel:

Generate FAQ via OpenAI

As you can see, just enter the FAQ title, and wrie prompt, max tokens, select to publish as FAQ post or wordpress post or wordpress page,  then click “Generate Content Automatically”, then OpenAI ChatGPT will generate high-quality wordpress FAQ or wordpress post for you automatically.
Please read more step by step document about AI FAQ

* Responsive FAQ design

* Add / Edit / Delete / Manage FAQ in Frequently Asked Questions via WYSIWYG wordpress standard editor

adding new wordpress FAQ plugin

adding new wordpress FAQ plugin

* Using any existed post or even custom post as FAQ:  WordPress blogger can use any eixted wordpress posts / pages / custom post type / ….etc as content of a wordperss faq item, it help you build FAQ page every fast and super easy, you do not need to re-write duplicated content in FAQ — that is not good for SEO,  we will reuse the post title as FAQ title, and reuse the post content as FAQ content  

Using existed post as wordpress FAQ post

Using existed post as wordpress FAQ post

* One click to change wordpress FAQ template and wordpress FAQ schema

By default, we have included a few pretty pre-designed faq template for you, what you need just select a pre-designed template via a few clicks:

In back end of WordPress FAQ Plugin:

wordpress faq preset templates

wordpress faq preset templates

In front end, a sample of wordpress FAQ  plugin Blue-Yellow template:

using different templates for wordpress FAQ plugin

using different templates for wordpress FAQ plugin

* Custom FAQ Color from wordpress color picker:

WordPress FAQ pro plugin support customize background color of FAQ question and FAQ answer, customize font color of FAQ question and FAQ answer, customize font size of FAQ question and FAQ answer, customize FAQ accordion activate item border color…etc, If you want to custom wordpress faq style, you do not need to add CSS manually, what you need to do  is just select color from color picker:

wordpres faq pro custom faq title background color

* Create FAQ categories and assign FAQ posts to categories

WordPress FAQ Categories

WordPress FAQ Categories

* Support display FAQs grouped by category, you can use You can use shortocde

to show FAQs by categories, in the case you have multiple products, you can build multiple faq lists which grouped by FAQ categories

 

* Support create multiple FAQs for different usage

* Support all morden browser

* Unlimited FAQs

* Unlimited FAQ categories

* In frontend, you can use shortocde

AI Tooltips for WordPress -- Revolutionizing Content Creation

In the latest update, WordPress Tooltip introduces a groundbreaking feature called AI Tooltips, powered by OpenAI's ChatGPT. This innovative addition enables users to effortlessly generate high-quality content for tooltips. With just a tooltip title and prompts, the plugin generates comprehensive content in minutes, revolutionizing content creation for WordPress Tooltip users.

To utilize AI Tooltips, users must download and install the latest version of the WordPress Tooltip Pro+ plugin (version >= 19.4.8). Following installation, they can input their OpenAI API key and create AI-generated tooltips. The generated content is conveniently saved as drafts, allowing users to review and edit it before publishing.

Please check our detailed document How to use artificial intelligence to automatically generate tooltip content.

The article also provides clear guidance on registering as an OpenAI user and obtaining an API key. It introduces OpenAI Max Tokens, a utility token facilitating access to OpenAI's services and promoting the development of AI tools and technologies.

Furthermore, the article defines tooltips, highlighting their importance in providing users with contextual information when they hover over website elements. While tooltips enhance user experience, it emphasizes the significance of maintaining clear and self-explanatory design to ensure seamless navigation on websites. This comprehensive update signifies a significant leap in content creation and user interaction within the WordPress Tooltip ecosystem.

Can I click links in tooltip content box?

Yes, you can:

1: Log in to your WordPress admin area.

Click on the "Tooltips Style" submenu.

This will open the "Tooltip Box Customize Setting" panel, which appears like this: tooltips font size link in wordpress tooltips pro plus Tooltips Style panel

Take a look at the "Tooltip Hidden When" option, where you can select the "Stay Open A While" option.

On the front end of your website, when you hover over WordPress tooltip terms, you can now click on links, videos, or audios within the tooltip pop-up box.

Does this plugin slowed the site speed?

No, we have a quick load speed, everything is CSS and Javascript, no image are used,also we do not use a lot of DOM, our algorithm make everything running quickly.

In wordpress tooltips pro plus version, we have used many methods to optimize the page loading speed of WordPress and tooltip, for example: we move all inline javascript code of tooltip term in a static javascript file to speed up page load speed, we load tooltips js codes / directory js codes / in wordpress footer, we move inline css code of tooltip in static css file to speed up wordpress pages automatically...etc

please check our detailed document at:

Improved tooltip performance optimization module which automatically optimize the loading speed and performance of wordpress post in WordPress Tooltips Pro Plus 25.1.8

How to Move all inline javascript code of tooltip term in a static javascript file to speed up page load speed? Supported by wordpress tooltips pro plus 20.4.8

Optimized WordPress tooltip running speed, wordpress tooltips pro plus 25.0.8

Rewrote the summary function to improve page load speeds, wordpress tooltips pro plugin 18.5.6

WordPress Tooltips Pro Plugin 15.5.2 Released, Increase Loading Speed of WordPress Pages

WordPress Tooltips Plugin 9.7.2, Optimized Code to Speed up Your Page Load Time

...and more

Hello, I bought and installed the plugin, added a "tooltip" I can see the highlighted word, but no window is displayed on the word

Hi,Hope this message find you are doing well and have happy days  with your family. 🙂Thanks for the message, we are very happy to help you solve the problem 🙂In general, this may caused by a cache plugin which compressed javascript code of plugins, sometimes it will caused similar problem, would you please try:1: In wordpress tooltips back-end, navigated to global settings, and locate to the option "load tooltip javascript in the wordpress header or wordperss footer".Please try to load tooltip js code at the footer, if it not work, then try to load js code at the header. 🙂2: You can also enable jquery-migrate in global settings.3: If this do not work , in cache plugin side, try to disable the option of compress javascript codesYou can check our detailed step by step document with screenshot at:How to let WordPress Tooltips Plugin Works Well With a Few Cache plugin?How to Let WordPress Tooltips Plugin Works Well With WP-Optimize?please note, in some advanced wordpress theme, they have js compress option, please try to disable it.If it still not work, sometimes, we found a few plugin using the same tooltip code like ours,and some of them did not follow wordpress API to return the content value correctly, in this case, lease tell us the URL which have the problem, I will assign our developer to check it and solve it for you asap 🙂Thanks, have a blessed day with your family 🙂Best Regard,Wordpress tooltip support

How can I change the Tooltips font-family?

You can change "Tooltip Title Font Family" and "Tooltip Content Font Family" via a few clicks in tooltips style settings panel, it looks like this:wordpress tooltip style settings panel 14.1.6For expert developer you can add more font-family for the class qtip-content and the class tooltipsall in tooltip.css. 🙂

How could I add a tool tip to an image? Not to a text phrase

Please check out detailed step by step document with screenshot at: WordPress Image Tooltips DemoAlso we have many wordpress tooltip shortcodes support add tooltip to images and icons, please check: Wordpress tooltip shortcode

How to add tooltip effect on dashicons / icons in wordpress post?

WordPress tooltips pro plugin have supported this feature with a few methods,Please check our detailed step by step document with screenshot at How to add tooltip effect on dashicons / icons in wordpress post?

How to add wordpress tooltips to the sidebar?

Please logged in your admin back end, enter control panel, click "widget" in "appearance" area, you can find "Tooltips" in the "available widget", drag "Tooltips" into sidebar, input the title, you will see all your tooltips appeared in the sidebar.

How to Create Your First Tooltips In WordPress Tooltips Pro Plugin?

How to customize tooltip style like background, font color, underline, shadow, direction…?

How to customize wordpress tooltip z-index value via one click?

How to deactivate free version of Wordpress tooltips?

How to disable wordpress tooltip for a specific page

When using the standard WordPress editor to add or edit a post/page (URL: https://yourdomain.com/wp-admin/post-new.php), you'll notice a "Disable Tooltip for this Page" metabox on the right-hand side. By checking the "Disable tooltips for this page" option in this metabox, our plugin won't automatically show tooltips on this post/page.For example, if your posts contain the word "wordpress" and you have a corresponding tooltip term and content, our plugin would add tooltip effects (such as dotted or double lines) and display the tooltip popup when users hover over the word "wordpress". However, if you disable tooltips for this page, even if the word "wordpress" appears in your post, we won't apply tooltip effects or show the tooltip content when users hover over it.Please note that even though tooltips won't work automatically on this page, you can still manually add tooltips using the tooltip shortcodeYou can find more detailed document with screenshots at:How to disable wordpress tooltips for a specific wordpress page  

How to displays the value of the alt attribute, rel attribute and title attribute  as a tooltip when you hover over an image?

How to download wordpress tooltips pro plugin?

How to Enable / Disable Glossary Search Bar on WordPress Tooltip Glossary Page?

Please check our detailed wordpress tooltip glossary document at: How to Enable / Disable Glossary Search Bar on WordPress Tooltip Glossary Page? 🙂

How to Enable/Disable WordPress Tooltips for Images?

How to Get Wordpress Tooltip Document?

Please check our URL of wordpress tooltip document, in wordpress tooltip plugin document, we have wrote 416 detailed document for wordpress tooltip users, our document include video,screenshot, step by step detailed how to use text, it is very easy to understand how to use wordpress tooltip plugin 🙂

How to import WordPress Tooltips From csv?

How to upgrade wordpress tooltips without delete my configuration?

Upgrading the WordPress Tooltip plugin is easy and safe. Our built-in upgrade function detects your current version and upgrades your settings and options without any data loss.

To get the latest version, please log in to your account at https://tooltips.org and download the new plugin. To install it, first deactivate and delete the old version from your WordPress admin area, then click the "Upload" link in the plugins panel, select the new ZIP file, and activate it. You'll see new menus and updates in the 'Tooltips Pro' menu, and the upgrade process is safe and won't cause any data loss.

How to upload and activate wordpress tooltips pro plugin?

How to use 7 preset stylesheet and beautiful color schemes?

How to use WordPress Tooltip Keyword Matching Mode?

How to use wordpress tooltips pro plugin?

Using the WordPress Tooltips Pro plugin is incredibly easy. Our focus is on providing a user-friendly system and ensuring a seamless user experience. To add, edit, or delete tooltips, simply log in to the admin panel and navigate to the "Tooltips" menu. From there, you can access the "All Tooltips" submenu to edit or delete existing tooltips, or the "Add New" submenu to create new ones.

The plugin fully integrates with the standard WordPress TinyMCE editor, allowing you to add various types of content such as text, images, songs, videos, and more.

When it comes to creating tooltips, we utilize the post title as the keyword and the post content as the tooltip content. For example, if your post title is "WordPress" and the content includes the phrase "we love WordPress," our plugin will automatically detect the word "WordPress" within the post. It will highlight the word with a dotted line and display a tooltip popup when users hover over it, revealing the content "we love WordPress."

If you wish to customize the style of your tooltips, simply go to the "Tooltips Style" menu. We provide a range of preset stylesheets and beautiful color schemes, including White, Blue, Light, Dark, Red, Cream, and Green. You can easily select your preferred style from the "tooltips box style" options.

Furthermore, you have the flexibility to customize the tooltip styles further in the "customize setting" box. Here, you can adjust the width, background, font color, and more. Once you've made your desired changes and clicked the "update now" button, the styles will be applied to your front page. Even if you forget to include units like "px" for the width or "#" for colors, the plugin will still function correctly. Alternatively, if you prefer manual customization, you can find the tooltips.css file in the tooltips folder within your theme's style.css.

In the wordpress tooltips pro plug version, we have hundreds of options to help users quickly build powerful and beautiful tooltips, glossary, bullet screen, directory...etc

How to customize glossary settings?

I just saw that is displayed a tooltip on the logo? How to remove it?

Hi,Thanks for the message 🙂About tooltips on the logo, would you please try:1: In wordpress tooltip global settings panel, navigate to "enable tooltips for image" option, then select "I want to disable tooltips for image"If you want to enable tooltips function for image yet, then you can try:2: In wordpress tooltip global settings panel, locate to "tooltips for mage setting“ option,  select "use rel attribute in img tag as content of tooltips for image"We have detailed step by step document with screenshot at:How to Avoid WordPress Tooltip Displayed on the Site Logo and Other Images?Hope this have a little help 🙂Thanks, have a blessed day with your family 🙂Best Regard,Wordpress tooltip support

I purchased Tooltips Pro, where is the download?

After completing your purchase, you will be redirected to the download link once you log in to our site. Please note that our hosting provider, dreamhost, may experience occasional instability. In such cases, after logging into your account, you can find the download link by clicking on the "Download" menu item located at the top menu bar.

I used the free version, When I add a url to the tooltip content is shows up fine but once the user’s mouse leaves the keyword to click on the link, the tooltip disappears so they can not click on the link… any help would be great… love the plugin

Thank you for using our free version. In the tooltips pro version, we provide support for your requirements. We offer 9 trigger methods in the backend: Mouse Over, Double Click, Click, Mouse Leave, Mouse Enter, Mouse Out, Mouse Move, Mouse Up, and Mouse Down. If you want the tooltip box to remain visible and allow your clients to click on a link, you can select the "Click" or "Double Click" option. This way, when users click on the link, they will be redirected to the specified URL either in a new window or in the current page.

I used your free version on my site, very great plugin! Works perfect for me. before this plugin I’ve tried a couple and this is the best.The color of the box is perfect but I would like to changes the style of the text in the box. Is this possible?

Thank you for using our free version. In the tooltips pro version, we offer 7 preset stylesheets and beautiful color schemes: White, Blue, Light, Dark, Red, Cream, and Green. Additionally, in the tooltips pro version, you have the flexibility to customize the entire stylesheet either in the customization panel or in the CSS file with ease. You can set any color, opacity, width, show method, hidden method, and more for your tooltip box according to your preferences.

The tooltips link is text the cursor is a text cursor. How can I change this to a hand cursor

Yes you can change it, we support customize your advance style of tooltips, please open tooltips.css which in our tooltip pro plugin folder, add the code lines like this:
.tooltipsall{ cursor:pointer; } 
It will works like what you wanting, have a good day. 🙂

Where is the CSS File of WordPress Tooltip Plugin?

Typically, users don't need to modify CSS codes directly in the CSS file. Instead, you can easily set up tooltip style options with just a few clicks. Here's how it works:

When accessing the WordPress tooltip style settings panel (version 14.1.6), you'll find various options to customize the tooltip appearance. It allows you to choose different styles and customize them according to your preferences. tooltips font size link in wordpress tooltips pro plus Tooltips Style panel

However, we also provide an alternative method for developers who want to customize the styles further using a CSS file. If you have activated the Tooltips Pro plugin, please check the page source, and you'll see that the tooltips.css file is loaded:

html:

<link rel="stylesheet" href="http://yourdomain.com/wp-content/plugins/tooltips-pro/tooltips.css" type="text/css" media="screen" />
By opening the tooltips.css file, you will find some commented code sections serving as a reference. Within these sections, you can edit the CSS properties. For example:

css:

.classtoolTips0 { color: red !important; }

to show all accordion faq in any wordpess post or page

* In frontend, users can toggle between hiding and showing large amount of faq content via a few clicks
and more…

Tagged with: ,

WordPress FAQ with tooltips 4.9.0 Released

Hi, Dear WordPress Tooltip plugin users, hope this message find you are doing well and having wonderful holiday with your family:)  We get a ticket from wordpress FAQ with tooltips plugin user:

Hello,
I recently purchased the WordPress FAQ with Tooltips Pro plugin and I must say it is one of the most powerful FAQ plugins I have come across.

However, I noticed that the plugin version I purchased was 4.5.6, but shortly after, I discovered that the current version on your website is already 4.8.6. It seems that you release updates frequently, and I am eager to benefit from the enhancements in a timely manner.

I have a request: would it be possible for you to add a push notification feature for updates to the plugin? This would greatly help me stay updated with the latest versions and take advantage of new features promptly.
Thank you for your attention to this matter.

Yes, we are happy to add a push notification feature for updates to the wordpress FAQ with tooltips plugin. Now, if you upgrade to wordpress FAQ with tooltips pro 4.9.6, when there are new version be released  in our site tooltips.org, at the top of your wordpress back-end, you will find a new plugin released notification bar, you can dismiss it or just click it to download your new version of wordperss FAQ with tooltips pro plugin 🙂

Thanks for the great feature request, if you have any more question, please don’t hesitate to contact us, we are happy to realize your requirement always 🙂
Thanks, have a blessed day with your family 🙂

Best Regards,

WordPress tooltips plugin support

Tagged with: , ,

Improving advanced features to the AI writer for wordpress FAQ with tooltips plugin, wordpress FAQ with tooltips plugin 4.8.6

Greetings, esteemed users of the WordPress Tooltip plugin! I hope this message reaches you in good health and amidst joyful moments spent with your loved ones during this festive season.  🙂

Yesterday, we reported that we have released wordpress tooltips pro plus 27.7.8, based on a feature request from an amazing wordpress tooltips plugin user, the user expresses their satisfaction with the WordPress tooltips plugin and its efficiency in automating the creation of tooltip terms and content. They are impressed by the additional feature of generating WordPress posts automatically, which saves them time and improves the quality of their posts. The user now wants to explore the possibility of using the AI Tooltip feature to automatically generate course content for their installed LMS plugin, and they kindly ask for tips on how to accomplish this.

Furthermore, the user suggests that although the layout of the AI Tooltip panel is slightly confusing, it does not affect their overall experience. They mention that if the panel could be organized in a neater way, it would enhance their user experience even more.

The user concludes their message by expressing gratitude for the plugin and its features.

We are working had to add bootstrap tabs setting panel to add more options of AI writer in wordpress tooltips plugin, at the same time, our developer said we should improve our FAQ AI in wordpress FAQ with tooltips plugin too, so we re-designed our FAQ AI panel for wordpress FAQ with tooltips users,  now you can use advanced editor to edit the FAQ content which generated by OpenAI ChatGPT, and we optimize the pretty UI for users too 🙂

If you have any more feature request or question, please don’t hesitate to contact us, we are very happy to improve functinos of wordpress FAQ with tooltips plugin for you 🙂

Thanks, have a blessed day with your family

Best Regards,

WordPress tooltips plugin support

 

Tagged with: , , , , ,

WordPress FAQ with tooltips pro 4.7.6 Released

Hi, Dear   WordPress Tooltip plugin users, hope this message find you are doing well and having wonderful weekend with your family:) We just released wordpress faq with tooltips pro 5.7.6,in this version, we re-designed our WordPress FAQ global settings panel, the new WordPress FAQ global settings panel looks like this:

wordpress faq global settings panel in 4.7.6

As you can see, the new wordpress FAQ plugin interface is more colorful and powerful, you can select the pre-designed FAQ template through the FAQ TEMPLATE of wordpress FAQ with tooltip pro, you can also select the color through the wordpress color You can customize the color and background of all components of wordpress FAQ with tooltip pro, including wordpress faq with tooltip pro FAQ answer, FAQ question, FAQ bolder…etc. You can also customize the color and background of all components of wordpress FAQ with tooltip pro. .etc, you can also customize fonts for all wordpress faq with tooltip pro components, you can also allow WOOCOMMERCE FAQ TAB to add FAQ TAB to your WOOCOMMERCE products, or allow the use of FAQ AI WRITER to automatically write FAQ content or automatically write WordPress posts…. .etc

The WordPress FAQ Pro plugin seamlessly integrates with the WordPress Tooltips plugin, offering a comprehensive solution. The FAQ editor allows you to enrich your FAQ questions and answers by incorporating various media elements such as videos, audios, images, texts, links, music, YouTube videos, films, and more into the tooltip terms. We are adding more and more amazing features into wordpress FAQ with tooltips plugin, based on user’s feedback,  If you have any further questions or suggestions for new features, please feel free to reach out to us. We are dedicated to continuously improving the functionality of the WordPress FAQ plugin to better serve your needs.

 

Thanks, have a blessed day with your family

Best Regards,

WordPress tooltips plugin support

Tagged with: , , ,

Customize FAQ question font size, wordpress faq pro with tooltips 4.6.6 released

Hi Dear users of  WordPress Tooltip plugin, hope this message find you are doing well and having wonderful days with your family:) A user of the wordpress faq pro plugin reported a problem to us:

Hi there!
I hope this message finds you well. I just wanted to take a moment to express my utmost gratitude for developing the incredible . It has become an essential tool for me, and I truly appreciate all the hard work and dedication you’ve put into creating such a fantastic plugin.

One of the aspects that I absolutely adore about your FAQ plugin is the flexibility it offers. I’m thrilled that it allows me to utilize any pre-existing WordPress post, or even a custom type post, as FAQ content. This feature has been a game-changer for me, particularly when I’m creating FAQs for my yoga class. I can easily quote my LMS plugin content directly as FAQ content, saving me a significant amount of time.

Moreover, I wanted to commend you on the integration of AI for writing FAQ questions and answers directly. The quality of the generated content is exceptional, and it has truly expanded my creative horizons while enhancing the overall quality of my posts. I couldn’t be happier with how well it works!

However, I’ve encountered a minor issue regarding the font size of the FAQ questions. Occasionally, when I attempt to set the font size, it doesn’t seem to work as expected. I was wondering if you could kindly assist me in resolving this matter. Your guidance and support would be immensely appreciated.

Once again, thank you from the bottom of my heart for developing such a remarkable plugin. I look forward to your kind assistance and remain forever grateful.
Warmest regards,

We build a development platform to re-play the issue for the amazing user, finally we found the problem and we fixed this problem in wordpress faq with tooltip plugin 4.6.6, please upgrade to the latest version asap you can 🙂

Yes,  based on many wordpress tooltips user’s feedback, we have added many amazing functions to realize user’s feature request, now wordpress faq with tooltip plugin support use OpenAI ChatGPT to write FAQ question and answer and wordpress post automatically, it looks like this:

Generate FAQ via OpenAI

WordPress faq pro plugin also works well with wordpress tooltips plugin, FAQ editor can add video / audio / image / text / links / music / youtube / films …etc on tooltip terms in FAQ question / answer.  If you have any more question of feature request,  please don’t hesitate to contact us, we are very happy to improve functions of wordpress faq plugin for you

Thanks, have a blessed day with your family

Best Regards,

WordPress tooltips plugin support

Tagged with: , , , ,

Support customize the background color of the FAQ questions, WordPress FAQ with tooltips free plugin 3.7.7 Released

Hi Dear WordPress Tooltip plugin users, hope this message find you are doing well and having wonderful days with your family:) An amazing wordpress FAQ free user wrote to us:

Dear plugin development team,

I am writing to express my utmost appreciation and love for your WordPress FAQ plugin. It is an amazing plugin with fantastic features, and I am thoroughly impressed by its performance! However, I have encountered a minor issue. Due to the customization of my website theme, the background color of the FAQ question section in the current WordPress FAQ plugin does not match the color of my theme. On the other hand, I absolutely adore the color of the FAQ answer section. Upon reviewing the documentation of your WordPress FAQ plugin, I have discovered that the WordPress FAQ Pro plugin supports customizing the background color of the FAQ questions. I was wondering if this feature could be added to the free version of the WordPress FAQ plugin? If it is possible to incorporate this feature into the free plugin, I would be extremely grateful. It would help me maintain a consistent appearance on my website and enhance the overall user experience. I believe this improvement would also benefit other users of the WordPress FAQ plugin. Once again, I would like to express my gratitude for creating such an excellent plugin and thank you for your attention and assistance with my request!

Best regards,

Yes, our wordpress FAQ plugin support customize background color of FAQ question and FAQ answer, customize font color of FAQ question and FAQ answer, customize font size of FAQ question and FAQ answer, customize FAQ accordion activate item border color…etc. We are very happy to move the function of customize FAQ answer background color from wordpress FAQ pro version to wordpress FAQ free version for the user 🙂

Also wordpress FAQ pro plugin have more functions, for example:

* AI FAQ — Support use OpenAI ChatGPT to generate WordPress F.A.Q automatically

You can use OpenAI ChatGPT to general high-level FAQ content automatically, just enter your OpenAI ChatGPT key in wordpress FAQ global settings panel:

 

WordPress FAQ Pro 4.0.6 Global Settings

And then click AI FAQ sub menu item, you will open “Generate FAQ via OpenAI” panel:

Generate FAQ via OpenAI

As you can see, simply enter the FAQ title, write the prompt, set the maximum number of tokens, choose whether to publish as a FAQ post, a WordPress post, or a WordPress page, and then click on “Generate Content Automatically”. Our OpenAI ChatGPT writer will automatically generate a high-quality WordPress FAQ or WordPress post for you.
For more detailed instructions, please refer to the step-by-step document about AI FAQ

* Support display FAQs grouped by category, you can use You can use shortocde

to show FAQs by categories, in the case you have multiple products, you can build multiple faq lists which grouped by FAQ categories

* Support works with wordpress tooltips plugin to add tooltip effect in FAQ answer: you can add video / audio / map / image / text on tooltip terms in FAQ answer.

… and more

 

If you have any more question of feature request, please don’t hesitate to contact us, we are very happy to improve functions of wordpress tooltip plugin for you

Thanks, have a blessed day with your family

Best Regards,

WordPress tooltips plugin support

Tagged with: , , ,

WordPress FAQ with Tooltip Pro 4.5.6 Released

Hi, Dear users of wordpress tooltip plugin , hope this message find you are doing well and having happy days with your family   Maybe you know, we developed many wordpress plugins which support display tooltips effect on content that generated by these extended wordpress plugins, wordpress faq with tooltips is the one of plugin which support tooltip effects. 🙂

Yesterday, a user of wordpress tooltips plugin wrote to us, he said he installed wordpress faq pro plugin and wordpress tooltips pro plugin in his site, and then he found the color picker in wordpress tooltip style panel not works well, our developer do a check, and he found there are a conflict in wordpress color picker section, he re-developed wordpress faq with tooltip plugin to solve the problem, that why WordPress FAQ with Tooltip Pro 4.5.6 be released 🙂

WordPress FAQ plugin is a easy to use faq plugin for wordpress, you can select pretty FAQ templates from pre-designed template, custom FAQ style in back-end via a few clicks, Support use OpenAI ChatGPT to generate high-quality content for WordPress F.A.Q and wordpress post automatically, support WooCommerce Product FAQ, Responsive FAQ, Multiple FAQ Templates, FAQs grouped by category, specified number of FAQ items for each FAQ… and more and more

Thanks for the bug report, we added a wordpress AI smart content link plugin license for the amazing user,

Smart content links are a powerful tool for enhancing your website’s content and improving the user experience. By embedding links to related content within your wordpress blog posts, you can provide valuable context, information, and resources to your readers without disrupting their flow or distracting them from your main message. These smart links are designed to provide readers with quick access to related resources and information, making it easier for them to learn more about the topic at hand.

Smart content links using AI NLP(Natural Language Processing) to help you build best internal links — it is important to improve your SEO quickly, you can enter a keyword in back-end, Smart content links will ranking posts based on the best match with keywords using AI calculations 🙂

If you have any question or feature request to our wordpress tooltip plugins, please don’t hesitate to contact us, we are happy to realize your requirement and we always give users gift as THANKS 🙂

Thanks, have a blessed weekend with your family

Best Regards,

WordPress tooltip plugin support

Tagged with: ,

How to Customize WordPress FAQ Content Font Size ? Supported by WordPress FAQ with Tooltips Pro 4.4.6

Hi, Dear  wordpress tooltip plugin users,  hope this message find you are doing well and having happy weekend with your family:) Yesterday we released wordpress faq with tooltips pro 4.3.6, today we get another wordpress faq plugin user’s feedback, he said +1, and he told us we should add an option to allow wordpress editor to customize wordpress faq content font size too 🙂

We did a check of his wordpress faq pages, very smart guy, he make his faq page pretty, he’s got everything organized. He using our woocommece faq module to build product FAQs, wordpress faq with tooltip plugin can create a product faq tab for woocommerce store, where customers can find answers to common questions about woocommerce products, shipping, returns…etc. This will help to establish authority and trust,  A well-crafted woocommerce product FAQ tab demonstrates your expertise, establishes your authority in your niche, and builds trust with your audience. By providing clear and helpful answers, you can instill confidence in your visitors and potential customers. Also it is use our woocommerce tooltip to increase your product sales too.

How to Customize WordPress FAQ Content Font Size

1: Login wordpress tooltip plugin site and download wordpress faq with tooltips pro plugin which version >=4.3.6

2: Login dashboard of your wordpress site, delete the old version of wordperss faq pro plugin, then upload new version of wordpress faq with tooltip plugin, activate it

3: Click FAQ menu item and then click glossary settings sub menu item, you will open FAQ global settings panel, it looks like this:

FAQ Global Settings in faq pro plugin 4.4.6

4: As you can see, we added a new option “FAQ Content Font Size”,in here you can customize the faq answer content font size

Thanks for the great feature request, we give the amazing wordpress faq with tooltip plugin user a wordpress pro plugin Woocommerce product cart anywhere with tooltip,

Woocommerce product cart anywhere will display product information with carts via [[product_anywhere]] shortcode,  by default,  the product image will be displayed on the left hand, then display product name, product price on the right hand, under the product price, we will display “add to cart” button and “view cart button”, Users can add the product to the cart via “add to cart” button, and click view cart button to view the cart and checkout 🙂

We always return gifts to user’s great thoughts, if you have any pretty thoughts, please don’t hesitate to contact us, we are very happy to give you a gift and realize your feature request 🙂

Thanks, have a blessed day with your family

Best Regards,

WordPress tooltip support

 

Tagged with: , , , ,

How to Custom FAQ Title Font Size? Supported by WordPress FAQ with Tooltips 4.3.6

Hi, Dear users of wordpress tooltip plugin,  hope this message find you are doing well and having happy days with your family:) We just released wordpress FAQ with tooltips Plugin 4.3.6, based on a wordpress faq plugin user’s suggestion 🙂

A wordpress FAQ plugin user told us, he using our wordpress faq with tooltips plugin to build his support FAQs,  to improve customer support,  he create a dedicated FAQ support page where users can find solutions to common issues and troubleshoot problems. After installed our wordpress faq plugin, he found it reduceed support requests, with the well-organized and comprehensive FAQ page, he address common inquiries and provide solutions to common issues for users,  and he added faq page at the menu item, in web log, he found many users click FAQ page directly and  this helps reduce the number of support requests, saved  time and resources. 🙂

The problem is he using a big, wide wordpress theme, because he need insert many products / services / promote / discount …etc in his 3 column sidebar, so he customized a small font in the wordpress theme option, the problem is, in his wordpress pages, he using H3 as wordpress title, but in wordpress faq items, there are no H3 tag, so the faq title font size is a little small, it is not good for his users, he want an option to make the faq title font size lager 🙂

Our wordpress tooltip developer realized this function for the amazing wordpress faq user quickly, now you can custom font size for FAQ title easily 🙂

How to Custom FAQ Title Font Size?

1: Login wordpress tooltip plugin site and download wordpress faq pl with tooltips pro plugin which version >=4.3.6

2: Login dashboard of your wordpress site, delete the old version of wordperss faq pro plugin, then upload new version of wordpress faq with tooltip plugin, activate it

3: Click FAQ menu item and then click glossary settings sub menu item, you will open FAQ global settings panel, it looks like this:

Global Settings in wordpress FAQ pro plugin 4.3.6

4: As you can see, we added a new option “FAQ Bar Font Size”,in here you can customize the faq header title font size 🙂

Thanks for the great feature request, our FAQ plugin is driven by user’s requirement, we give the amazing wordpress faq with tooltip plugin user a wordpress pro plugin WordPress Fingerprint by wordpress tooltip, because he is offer wordpress support for his users, he need fix errors for wordpress users quickly,our WordPress fingerprint Checksum Calculator plugin will calculate the digital fingerprint for each file in your wordpress site and allow wordpress admin export the digital fingerprint of each file as a csv file.

WordPress file fingerprint is a unique identifier generated from a set of data that can be used to identify and verify the integrity of a file. A file fingerprint is often calculated using a cryptographic hash function, which generates a fixed-size value that represents the contents of the file. This value is unique to the file’s contents, and any changes to the file’s contents, no matter how small, will result in a different value. File fingerprints are commonly used to detect unauthorized modifications to files, verify the integrity of downloaded files, and ensure that backup copies of files are identical to the original files. 🙂

We always offer gift to user’s feedback, if you have any pretty thoughts, please don’t hesitate to contact us, we are very happy to give you a gift and turn your dream into the truth 🙂

Thanks, have a blessed day with your family 🙂

Best Regards,

WordPress tooltip support

Tagged with: , , ,
Top