dragolcho
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How make menus work togetherI am sorry for the stupid title of the post.
I was trying to better explain my intention and I was divided between:
– “How to make menus work together” – thinking about using the locations as a menu (A and B) and making the main nav-menu sensitive to the locations menu
– AND “Can I make a menu context sensitive” – thinking about saving the location as a parameter (or even a custom field) and changing the nav-menu to be case sensitive.Finally, I wrote something totally incoherent as the page title.
Forum: Plugins
In reply to: [SlimStat Analytics] Problem with short codeHi Jason,
Works like a charm! Thanks!
Forum: Plugins
In reply to: [SlimStat Analytics] Problem with short codeHi @coolmann,
Thank you for your reply!
I will appreciate if you keep me updated on the issue. If you do not wish to fix it at the moment, I will try it myself. 🙂
BR,
ValentinPS: My positive review was well deserved!
Forum: Plugins
In reply to: [WP Forum Server] Issue with sortingThe sorting turned out to be OK (the topics are sorted by ‘last_post’. The problem was that last_post was not updated correctly when a new post in a topic is done.
The error is in file wpf-insert.php, line 78.
BEFORE:
$wpdb->query(“UPDATE $vasthtml->t_threads SET last_post = ‘$date’ WHERE id = “.(int)$thread);
AFTER
$wpdb->query(“UPDATE $vasthtml->t_threads SET last_post = NOW() WHERE id = “.(int)$thread);
Somehow there was not $date value. I have not dug deeper into the problem.I am using version 1.8.2 of WP Forum Server.