Roger
Forum Replies Created
-
I am sorry, but I still think that you misunderstand my question. I don’t think that this function exists in your plugin today at least in the free version, but I will still explain what I mean because I think that it might be useful in future versions:
Normal sequence as seen by a user:
1. User visits content with shortcode [TS_Poll id=”1″]
2. poll is displayed
3. user chooses option, clicks “vote”
4. the results are displayed (if the option has been enabled)What I need:
1. User visits content with a shortcode like [TS_Poll id=”1″ results=”1″]
2. the results are displayed, like in 4 above, but directly, WITHOUT going through the voting phaseI think this is not possible today, but it would be very useful to have it, particularly if the user has already voted.
RP
- This reply was modified 7 months ago by Roger.
I’m sorry, but I don’t understand your answer at all, so I’m afraid you may have misunderstood my question.
The question is this :
– After someone votes, you replace the normal front-end “questions” view with the results of each question in %, displayed as horizontal bars.
– Is it possible for a USER to access this results view DIRECTLY in the front-end for a given poll, without voting first ?Thank you.
It’s all sorted out now. Thanks a lot for the assist!
Hi,
Ok, understood. I found the email by digging in the spam, it had escaped us.
I responded just now.
Thanks,
RP
Hi, yes of course. Thanks a lot for the quick response, I was starting to pull my hair with this problem!
It’s: https://autrefoislevesinet.fr/
The url is linked to my account.
Best regards,
RPThank you very much for the quick and accurate response!
That is fantastic, it worked perfectly, I just couldn’t guess that all the calls to wp-login and wp-admin were aggregated under “loginpage” in the type column – I was looking for the actual page names in the uri column.
Thanks again and best regards,
RPForum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasThanks for the suggestion, I’ll see if it’s practical to do this.
For a future update, you might consider adding some logic in the plugin thumbnail query to start with ‘maxres’ (1280), then fallback to ‘standard’ (640) if not present, then ‘high’ (320, weird naming!). This would ensure getings always the highest available res thumbnail that YT has.
Thanks,
RPForum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasNo need for additional Css, caching the thumbnail is not an issue. I could use a higher res image though, this one seems very small!
Forum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasNo, you’re right – it doesn’t do this when the thumbnail is cached locally, thanks!
The thumbnail is still in low quality though, but it solves my issue, thank you! I’ll close the site again.
RP
- This reply was modified 9 months, 2 weeks ago by Roger.
Forum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasOops! I’m terribly sorry, I block the site normally and forgot to open it up.
Fixed now. Just scroll down the homepage, you’ll see the 2 videos.
Sorry again, and thanks!
RP
Forum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasHi,
Thanks for bearing with me! I started by disabling 90% of the plugins on my main site, to check if there wasn’t some conflict there, but apparently that’s not it.
So I reproduced the issue on my test site, that you can check out here: http://s263012258.onlinehome.fr/
I disabled practically all the plugins. The theme is not a default one, but it’s different from the one on the main site. The homepage has a widgetized area, where I put the same video twice: Once in an iframe with some CSS, the other in the Lyte shortcode with minimal CSS (just the button). I have a valid Google API, which works (tested)
There’s also another problem that I see at large resolutions, it’s that the Lyte cover image is pixellated, although I chose the largest dimension for the video, 960×720 ?
Anyway, when you see the 2 videos’ still covers you’ll see why I need your plugin! 😀
There you are, I really hope you can solve this!
Thanks and best regards,
RP
Forum: Plugins
In reply to: [WP YouTube Lyte] Issue with responsive display in widget areasHi, thanks for the quick response. It’s a live site, so I can’t really post pages with videos that show blank on phones 🙂
I’ll try to set up something on my test site for you to look at. It’ll give me an opportunity to check if it’s some other interaction that’s causing this.
RP
- This reply was modified 9 months, 2 weeks ago by Roger.
Forum: Plugins
In reply to: [Compliance by Hu-manity.co] Notice flashes for an instant then disappearsI found the culprit, so if it can benefit anyone else…
It’s the Malwarebytes adblocker that blocked the banner from displaying.
Forum: Plugins
In reply to: [WP Responsive Recent Post Slider/Carousel] Keep html tags in contentHi,
Thanks for the quick response. Ok, I understand the problem, it’s because you use the core WP function wp_trim_words (), which both trims the text and cleans the html tags.
I found a solution though, so I post it here in case someone else has the same problem: In the file “includes/wppsac-function.php”, you need to replace the line:
$content = wp_trim_words( $content, $word_length, $more );by this one:
$content = force_balance_tags( html_entity_decode( wp_trim_words( htmlentities( wpautop($content) ), $word_length, $more ) ) );This will trim the text to the correct word count specified in $word_length, while keeping all the html tags present.
Best regards,
RP
Thanks Laszlo,
I managed to get it working again, I’m not sure how – it started sending emails again after I fixed a captcha error and moved to captcha V3, perhaps it’s related. I’m blocking auto-update for now, until it’s sorted out.
I should switch to a better maintained one like WP-forms, but it’s a pity because I love the plugin…RP