carlaguite
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Tippy] Special caracters doesn’t worksorry, I don’t know how edit my strange post… the wp hidden the url codes…
from
… htmlentities($tippyNewText) …to
… htmlspecialchars($tippyNewText)…Forum: Plugins
In reply to: [Plugin: Tippy] Special caracters doesn’t workHi!
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 ^^Forum: Themes and Templates
In reply to: Multiple Category and Single-Cat TemplatesI 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 - yellowand 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!