Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • sorry, I don’t know how edit my strange post… the wp hidden the url codes…

    from
    htmlentities($tippyNewText) …

    to
    htmlspecialchars($tippyNewText)…

    Hi!

    I had the similar problem.

    I do a change in tippy.php (line 200)
    from

    $tippyString = '<a>htmlentities($tippyNewText) .'\', \''. $tippyHeader .'\', \''. $tippyHref .'\');" onmouseout="domTip_clearTip(\'false\')">'. $tippyTitle .'</a>';

    to
    $tippyString = '<a>htmlspecialchars($tippyNewText) .'\', \''. $tippyHeader .'\', \''. $tippyHref .'\');" onmouseout="domTip_clearTip(\'false\')">'. $tippyTitle .'</a>';

    with it the plugin work well until now =)

    I hope help you!
    sorry my bad english too ^^

    I think I have the same problem ….

    I need a page that can list the last 5 posts of 2 sub-categories of diferents parents. The problem is the sub-categories are choosen by user.

    Example:

    If I have the categories

    Vehicle
    - Car
    - Byclicle
    
    Colors
    - red
    - yellow

    and the user click in link to sub-category ‘bycicle’. In the url …./categoy/vehicle/bycicle the user click in link ‘red’. At this moment I need a page that can filter the last 5 posts in category ‘red’ AND ‘bycicle’ (in BOTH sub-categories)

    My ask: how can I do this page? I can use the category.php or create a new page for this? In this example, how can I do the last page send these two informations ( in a url or wp have a system to send vars to other page )

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)