pad11
Forum Replies Created
-
Forum: Plugins
In reply to: [Thumbs Rating] Changing Site URL broke pluginThis is fixed – was a cache issue.
Forum: Plugins
In reply to: [Thumbs Rating] "Top Votes" in PHP (no widget)Many thanks. Amazing support!
Forum: Plugins
In reply to: [Thumbs Rating] Vote shows as -1 on iOSNothing, I just get OCD about wp_head and remove as much as I can, but I have fixed it!
Thanks so much for your help, it works flawlessly now.
Forum: Plugins
In reply to: [Thumbs Rating] Vote shows as -1 on iOSThanks, I identified the issue as being AJAX related due to wp_head issues.
Forum: Plugins
In reply to: [Thumbs Rating] Voting Count shows up as -1Having this issue too on mobiles only.
Forum: Plugins
In reply to: [Thumbs Rating] just not workingHaving this issue too.
Forum: Plugins
In reply to: [Thumbs Rating] Vote shows as -1 on iOSThere are 3 other posts saying similar.
It’s isolated to iOS for me. No idea at all? Happens on clean install too.
Forum: Plugins
In reply to: [Psychological tests & quizzes] Echo logged in user's most recent result?That’s a shame.
I would pay 50$ for what I asked for: echo the user’s most recent result value in my theme.
i.e. if user’s result on the test is “The Achiever” I can echo this in the header template of the site when logged in like “Your type: The Achiever”.
Otherwise, 50$ to simply redirect to results page, for me is too much for not enough functionality.
The plugin is fantastic so I hope you can update further in the future.
Forum: Plugins
In reply to: [Psychological tests & quizzes] Change "Please select only one answer" textThanks! Keep up the great work.
Forum: Plugins
In reply to: [Psychological tests & quizzes] Change "Please select only one answer" textHi,
I cannot screenshot it but it is in the pop-over which appears if you do not select any answer on a non-skippable question.
Forum: Fixing WordPress
In reply to: RSS feed – how to show post up to "more" tagIs this just not possible then?
It was in previous wordpress versions. ??
Forum: Fixing WordPress
In reply to: Please help! Just want to echo 10 latest bbpress topics in WPGoing to try once more before I cry and give up.
If Google doesn’t know and no one is answering here perhaps it’s just not possible. ??
Forum: Fixing WordPress
In reply to: Please help! Just want to echo 10 latest bbpress topics in WPAny help would be massively appreciated!
Forum: Fixing WordPress
In reply to: RSS feed – how to show post up to "more" tagIt’s already set to that, but I want it to stop in the RSS feed at the “more” tag in the post but it ignores this and stops after a certain number of characters with a […] ending.
Forum: Fixing WordPress
In reply to: Echo "Last updated" time for specified/current categoryAny ideas?
I found this:
function site_last_updated($d = '') { $allposts = new WP_Query(); $allposts->query('orderby=modified&cat='.get_query_var('cat').'&paged='.$paged); if ( $allposts->have_posts() ) { $allposts->the_post(); $last_update = the_modified_date($d); echo $last_update; } else echo 'No posts.'; }
This code works to show the last update time for categories.
But how about seeing when a tag was last updated?