dmenne
Forum Replies Created
-
Forum: Plugins
In reply to: [YOP Poll] Yop Poll switches TinyMCE to Text modeI just noted that the problem is gone now. Will try to check if I can reproduce it.
Sorry, admin access would not be possible.
Forum: Plugins
In reply to: [YOP Poll] Yop Poll switches TinyMCE to Text modeI upgraded to PRO today, but the problem remains the same.
Nick,
sorry, I just noted that I had posted that one in another thread. Here are all details (WordPress 4.0, all Plugins up to date). Could it be that there is some feature in the macro below that kills it?https://www.google.com/calendar/feeds/webmaster%40studentenphilharmonie.de/public/basic
<div class=”gce-list-event gce-tooltip-event”>[event-title] [location]</div>
<p>[if-not-all-day][start-time] – [end-time][/if-not-all-day] </p>
<p>[if-description] <span class=”tooltips” title=”[description]”>Details</span>[/if-description]</p>Recurring Events and Multi-Day off.
I tried all combinations of options (years), always 1 event in the future only displayed. And the strange back/next button which cannot be removed even if it is deselected.
Sorry, Nick.
Just a minor change occurred: Now one event into the future is displayed. But, strangely, the Next/Back button are always there even if I deselected that option. I tried all variants of settings you added in the 06 relase, none changed anything. Even setting the start date far ahead of the one displayed event did not make it disappear.
To be sure, I deleted all files an re-installed; settings were kept. No change. Reverting to 2.03, and all is working again.
Dieter
>>Could you check and see if your recurring events
As far as I see, there are no recurring events in our calendar. Feel free to use(sorry, I just noted I had forgotten to mention that).
Feel free to contact me on webmaster blub studentenphilharmonie blub de to run tests.
Additional info: when I use the preview button to view the feed in calendar mode, the dates are correctly displayed. So the feed seems to be Ok.
Sorry to say: Yes, I tried the 2.05 and did not get it to work under any condition, i.e I tried all variants combinations in the settings. See above, it should be reproducible, the feed is public.
And I definitively cleared the cache every time.
Currently, the page is reverted to 03As a strange side effect, the Back/Next links are always displayed, even when deselected, but nothing else turns up. Looks like there are some vestiges from previous versions around?
This is the public feed:
<div class=”gce-list-event gce-tooltip-event”>[event-title] [location]</div>
<p>[if-not-all-day][start-time] – [end-time][/if-not-all-day] </p>
<p>[if-description] <span class=”tooltips” title=”[description]”>Details</span>[/if-description]</p>And the previous version running on
>>For those that have updated and are having issues. Did you make sure that all your settings got carried over correctly? >>
I had been bitten by a minor problem during upgrading before; you will find the message and the impressively fast correction on this forum and in the revision report. Really great support!
Therefore, I checked and tested several alternatives; the change in definition was mentioned in the upgrade message.
And it looks like it really has to do with the ‘repeating’ setting.
I have the same problem (and the same solution). Also linked to “recurring events”
<div class="gce-list-event gce-tooltip-event">[event-title] [location]</div> <span>[if-not-all-day][start-time] - [end-time][/if-not-all-day]</span> [if-description] <span class="tooltips" title="[description]">Details</span>[/if-description]Forum: Reviews
In reply to: [Wordpress Simple Survey] The price is hiddenNo. The plugin may be worth the money, but the habit to hide it in the Paypal form is last century.
Forum: Plugins
In reply to: [Email Users] Debug writes debug output when users registerI see the point, but it is a bit shocking to see the debug output on the front end at the most sensitive moment, i.e when a user or spammer registers.
Show only for admin is perfectly ok.
Forum: Reviews
In reply to: [Email Users] A clean-lean pluginJust in case someone should need it:
function send_to_streicher() { mailusers_register_group_custom_meta_filter('Aktive Streicher', 'streicher',1,"="); } function update_active_strings_meta_filter(){ $newkey = 'streicher' ; $searchkey = 'instrument'; $searchvalues = array( 'Kontrabass','Cello','Violine I','Violine II','Viola' ) ; update_active_register_meta_filter($searchkey,$searchvalues,$newkey); } function update_active_register_meta_filter($searchkey,$searchvalues,$newkey) { $uq = new WP_User_Query(array('meta_key' => $newkey)) ; foreach ($uq->get_results() as $u) delete_user_meta($u->ID, $newkey) ; foreach ($searchvalues as $val) { $args = array( 'meta_query' => array( 0 => array( 'key' => $searchkey, 'value' => $val, ), 1 => array( 'key' => 'status', 'value' => 'Aktiv' ) )); $uq = new WP_User_Query($args) ; foreach ($uq->get_results() as $u){ update_user_meta($u->ID, $newkey, true) ; } } }