wp-lefty
Forum Replies Created
-
Forum: Plugins
In reply to: [RS EVENT multiday] Different CSS class for dates in the pastsolved, sort of…
Forum: Plugins
In reply to: [RS EVENT multiday] Different CSS class for dates in the pastHi Mike,
great idea, however, the new css-classes might interfere with the way other users have set up their functions and plugins.
You can easily get what you want by using the function rs_event_id(). Just use it twice, the first time for future events, the second time for past events. As soon as you have the ids of the posts, you can modify the output the way you want it.
Of course, this works similar with the function rs_event_list().
If you use the widget, simply add to instances of the widget and modify the settings.Forum: Plugins
In reply to: [RS EVENT multiday] Different date formats for multi day eventsPlesse, have a look at the control settings of the widget (Design -> Widgets). There, you can change the format of the start and the end date of multiday events. Just change the values at “Date-1 formating” and “Date-2 formating”.
Forum: Plugins
In reply to: [RS EVENT multiday] Any ideas for a page with a calender-view?Well, I have thought about it, but at the moment, I do not really have the time or ressources to manage a huge step like this. However, you can give it a try on your own or maybe the community knows an easy solution for that. The “sort by date” option or the function rs_even_id() might be a good starting point.
Forum: Plugins
In reply to: [RS EVENT multiday] Visitors can enter events themselves?Hmm, I don’t think so. I am not experienced with frontend editing at wordpress so far so I do not know, if the “RS EVENT multiday”-box of the edit-post page is visible at the frontend editing panel as well. You may give it a try, but I don’t think it will work (so far).
Forum: Plugins
In reply to: [RS EVENT multiday] How to create an events list on a pageIt is. Just edit the file page.php of your theme or create a new page template for your theme and then add the function rs_event_list() to the code of the template.
In order to customize the function rs_event_list(), you can pass several parameters. For further information on that, please the “Description”. http://ww.wp.xz.cn/extend/plugins/rs-event-multiday/Forum: Plugins
In reply to: [RS EVENT multiday] Does it works with WPML?Honestly, I have no idea since I am not experienced to work with WPML. However, the widget performs an ordinary wp query, so it should work, since the widget list is nothing else than all the other content on a page/post.
If you give it a try, please post your experience here.Forum: Plugins
In reply to: [RS EVENT multiday] Show RS EVENT date in All posts adminHonestly, I have no idea how to influence the list on yourpage.xyz/wp-admin/edit.php so it shows the event-date as well. Setting the edit-post-date similar to the event date is definitely not a good idea 😉
My idea or advice is to create a private page (that only you can access) and assign a special page-template to it. In the template, you include the function rs_event_list() and modify it, so it outputs the list exactly the way you want to have it. Of course, the list should include an edit-post-link.
Forum: Plugins
In reply to: [RS EVENT multiday] %EXCERPT% not working in rs_event_listresolved
Forum: Plugins
In reply to: [RS EVENT multiday] 12:00 AM end time on old postsresolved
Forum: Plugins
In reply to: [RS EVENT multiday] 12:00 AM end time on old postsAre you sure, that the problem occurs just with rs_event_post() and definitely not with rs_event_list()?
If this is the case, it would be good news, because now I can localize the bug. It is on line 914.
Please change the code as followed:before (with bug):
$fake_secondend = mysql2date('s', gmdate('Y-m-d H:i:s', $ts_p_endtime));new (bugfix):
$fake_secondend = $ts_p_endtime ? mysql2date('s', gmdate('Y-m-d H:i:s', $ts_p_endtime)) : 58;And please let me know, if your problem is solved, so I can add that bugfix to version 1.3.2
Btw: The $fake_second and the “fake_sencondend just help to store or identify the information, if a starttime and/or endtime is entered or not.
Forum: Plugins
In reply to: [RS EVENT multiday] %EXCERPT% not working in rs_event_listI thought of that. Thank you! I will publish a new documentation along with version 1.3.2. Please have a look at it after I published it and feel free to comment on it (maybe at a new forum thread), especially in order to use proper and correct English terms (since I am obviously not a native speaker) and to make the text easy to comprehend.
Forum: Plugins
In reply to: [RS EVENT multiday] %EXCERPT% not working in rs_event_listThe problem is indeed in line 693 and it is a bug. The correct version of this line is:
if($event->excerpt == '' && $fulltext_active == 1)
(“1” instead of “0”)
I will publish a new version (1.3.2) with this bugfix as soon as possible.However, if you manually add an excerpt when you edit a post in the backend, there should not be any problem and the excerpt gets printed.
Forum: Plugins
In reply to: [RS EVENT multiday] [Plugin: RS EVENT multiday] edit css rsevent multidayresolved
Forum: Plugins
In reply to: [RS EVENT multiday] [Plugin: RS EVENT multiday] edit css rsevent multidayThe horizontal line is part of the default settings. You can easily change this by editing the settings of HTML-1, HTML-2, HTML-3 and/or HTML-4 output at the widget settings. If you use the function rs_event_list() in a template, just pass on arguments for html_list_v1, html_list_v2, html_list_v3 and/or html_list_v4.