Title: ItayXD's Replies | WordPress.org

---

# ItayXD

  [  ](https://wordpress.org/support/users/itayxd/)

 *   [Profile](https://wordpress.org/support/users/itayxd/)
 *   [Topics Started](https://wordpress.org/support/users/itayxd/topics/)
 *   [Replies Created](https://wordpress.org/support/users/itayxd/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/itayxd/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/itayxd/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/itayxd/engagements/)
 *   [Favorites](https://wordpress.org/support/users/itayxd/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 96 total)

1 [2](https://wordpress.org/support/users/itayxd/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/itayxd/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/itayxd/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/itayxd/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/itayxd/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/itayxd/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] AJAX reload/init code?](https://wordpress.org/support/topic/ajax-reload-init-code/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [8 years, 1 month ago](https://wordpress.org/support/topic/ajax-reload-init-code/#post-10452768)
 * the code is [here](https://plugins.trac.wordpress.org/browser/responsive-mobile-friendly-tooltip/trunk/responsive-tooltip.js).
   
   You can see on line 5 all elements a searched for `rel~=tooltip` and on line 
   8 the event is binded. The quick and ugly way would probably be to rerun the 
   whole thing every ajax request. If you implement in a nicer way please post it
   here. -Itay
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] is it a way to pick the content into a pre-registered list for responsive tips](https://wordpress.org/support/topic/is-it-a-way-to-pick-the-content-into-a-pre-registered-list-for-responsive-tips/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/is-it-a-way-to-pick-the-content-into-a-pre-registered-list-for-responsive-tips/#post-10204352)
 * The best way I can think of is a filter on `the_content` which loops through 
   a dictionary and adds the HTML tags. the dictionary itself will probably be saved
   in the DB so you probably want an admin interface for that too. That is if you
   want the whole process to be automatic.
    You could probably also enter all the
   tips to the DB and then just have it autocomplete whenever you start typing, 
   but that would require you to add the tooltip to each instance of the word. Hope
   it helps, Itay
    -  This reply was modified 8 years, 3 months ago by [ItayXD](https://wordpress.org/support/users/itayxd/).
      Reason: typo
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[HTML5 Responsive FAQ] RTL support](https://wordpress.org/support/topic/rtl-support-92/)
 *  Thread Starter [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/rtl-support-92/#post-9885178)
 * a simple fix in hrf-style.php:
 *     ```
       .hrf-title.close-faq{
                      cursor: pointer;
                   }
                   .hrf-title.close-faq::before{
                      content: "";
                      width: 30px;
                      height: 30px;
                      display: inline-block;
                      vertical-align: middle;
       /*               position: relative;
                      left: 0;
                      top: 8px;*/
                      margin-right: 12px;
                      margin-left: -42px;
                      background: '.$bullets_bgcolor.' url('.plugins_url( 'html5-responsive-faq/images/open.png' ).') no-repeat center center;
                   }
                   }.hrf-title.open-faq{
   
                   }
                   .hrf-title.open-faq::before{
                      content: "";
                      width: 30px;
                      height: 30px;
                      display: inline-block;
                      vertical-align: middle;
       /*               position: relative;
                      left: 0;
                      top: 8px;*/
                      margin-right: 12px;
                      margin-left: -42px;
                      background: '.$bullets_bgcolor.' url('.plugins_url( 'html5-responsive-faq/images/close.png' ).') no-repeat center center;
                   }
                   [dir="rtl"] .hrf-title::before{
                      margin-left: 12px;
                      margin-right: -42px;
                   }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Adding a link](https://wordpress.org/support/topic/adding-a-link-5/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/adding-a-link-5/#post-8939194)
 * I know it’s been some time, but perhaps it’ll help someone else.
    The tooltip
   does accept html tags, so you can use `<a href=|link|>|text|</a>` inside the 
   tip without any problem. your problem would be making it clickable as the tooltip
   closes when you live the text. you can remove that bind, but make sure I add 
   a way to close it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Position of tooltip](https://wordpress.org/support/topic/position-of-tooltip-1/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/position-of-tooltip-1/#post-8939151)
 * Link in down..
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Arrow / triangle at wrong position of tooltip on smart devices](https://wordpress.org/support/topic/arrow-triangle-at-wrong-position-of-tooltip-on-smart-devices/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/arrow-triangle-at-wrong-position-of-tooltip-on-smart-devices/#post-8939141)
 * Fixed in the latest release
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Arrow / triangle at wrong position of tooltip on smart devices](https://wordpress.org/support/topic/arrow-triangle-at-wrong-position-of-tooltip-on-smart-devices/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/arrow-triangle-at-wrong-position-of-tooltip-on-smart-devices/#post-8895856)
 * Thank you for reporting I’ll look into it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Recommendations to debug](https://wordpress.org/support/topic/recommendations-to-debug/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/recommendations-to-debug/#post-8895844)
 * Thank you for your comment patrick
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Position of the triangle when scrolling down](https://wordpress.org/support/topic/position-of-the-triangle-when-scrolling-down/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/position-of-the-triangle-when-scrolling-down/#post-7308115)
 * Hi there,
    If you have any front-end skills try look at the code it’s not very
   complicated and it is well written, tell me where your stuck. If you don’t have
   any coding knowledge I’ll have time to look at it only in a few weeks. Itay
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] debug.log errors](https://wordpress.org/support/topic/debuglog-errors-1/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/debuglog-errors-1/#post-7298926)
 * fixed in new version (1.6.2)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Responsive Mobile-Friendly Tooltip] Update: With latest version, went from 4 stars to 5](https://wordpress.org/support/topic/good-but-not-perfect-11/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/good-but-not-perfect-11/#post-8036798)
 * I believe I fixed it, please check version 1.6.1 the scrollTop() was missing 
   from the js.
    ItayXD
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Responsive Mobile-Friendly Tooltip] IT WORKS! – with some caveats](https://wordpress.org/support/topic/it-works-with-some-caveats/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/it-works-with-some-caveats/#post-7971672)
 * Thank you, I uploaded version 1.6.1 that suppose to fix it.
    please check it 
   out
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Responsive Mobile-Friendly Tooltip] IT WORKS! – with some caveats](https://wordpress.org/support/topic/it-works-with-some-caveats/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/it-works-with-some-caveats/#post-7971670)
 * On that specific page? I see no tooltip there
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Responsive Mobile-Friendly Tooltip] Update: With latest version, went from 4 stars to 5](https://wordpress.org/support/topic/good-but-not-perfect-11/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/good-but-not-perfect-11/#post-8036797)
 * Too be honest I don’t have much time to work on the plugin these days (As you
   have probably noticed).
    Now that I know that you are a developer I’d be very
   happy if you can try to work on it and contact me if you succeed. You can send
   me an email or github pull req. or I can add yu here as a dev so you can enter
   the changes yourself & continue working on the plugin with me (I can add you 
   to the credits if you wish). ItayXD
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Responsive Mobile-Friendly Tooltip] Links beneath tool tip are clickable on mobile](https://wordpress.org/support/topic/links-beneath-tool-tip-are-clickable-on-mobile/)
 *  Plugin Author [ItayXD](https://wordpress.org/support/users/itayxd/)
 * (@itayxd)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/links-beneath-tool-tip-are-clickable-on-mobile/#post-5966602)
 * Hi, if this is still relevant I can help you a bit.
    What happens is when you
   click the tooltip it immediately closes so the link beneath it is also clicked.
   what you can do is just tap anywhere else on the screen to close it. Unfortunately
   I don’t have time to work on that issue now. ItayXD

Viewing 15 replies - 1 through 15 (of 96 total)

1 [2](https://wordpress.org/support/users/itayxd/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/itayxd/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/itayxd/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/itayxd/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/itayxd/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/itayxd/replies/page/2/?output_format=md)