Home › Forums › Legacy Support › Support queries › How-to & Troubleshooting › EventON Month view (Full Cal)
- This topic has 9 replies, 3 voices, and was last updated 8 years, 9 months ago by Anshuman Sahu.
Viewing 10 posts - 1 through 10 (of 10 total)
-
AuthorPosts
-
February 18, 2016 at 5:54 am #29736Grwd1ParticipantHello, I need to set EventOn to month view (Full Cal) for the course events tab but I don't see settings anywhere to do it. Please advise... thanks!February 19, 2016 at 1:40 pm #30263H.K. LatiyanParticipantFor this please use full calender eventOn addon. Refer: http://www.myeventon.com/addons/full-cal/February 21, 2016 at 7:17 am #30664Grwd1ParticipantThanks, there is another issue though. I got the add-on setup and activated but the Daily View is still what shows up for the course events tab. See screenshot.February 23, 2016 at 12:49 pm #31291Anshuman SahuKeymasterPlease try adding the given code in your wplms-customizer.php file in wplms customizer plugin : add_filter('wplms_eventons_course_events_shortcode','full_cal'); function full_cal(){ return '[add_eventon_dv cal_id="88" today="no" show_et_ft_img="no" ft_event_priority="no" wplms_course="1"] '; } Generate the shortcode for the full calendar in wp-editor. Replace the shortcode written with bold and italics with your full calendar shortcode . And in the end of the shortcode just put: wplms_course="1" at end . like this : [full_cal show_et_ft_img="no" wplms_course="1"]February 25, 2016 at 4:28 am #31847Grwd1ParticipantDoesn't seem to be working, the daily view still shows up on the Events tab for all courses. Am I doing something wrong? Here is my code that I edited and put in the php file: add_filter('wplms_eventons_course_events_shortcode','full_cal'); function full_cal(){ return '[add_eventon_dv cal_id="88" today="no" show_et_ft_img="no" ft_event_priority="no" add_eventon_fc load_fullmonth="yes" wplms_course="1"] '; } I am still on WPLMS 1.9.9 if that maters?February 25, 2016 at 2:39 pm #32082H.K. LatiyanParticipantThis filter is added in wplms eveton 2.0+ version only. If you do not want to update your theme and plugins, then also you can update wplms eveton plugin only, it will not effect your website.February 25, 2016 at 5:11 pm #32118Grwd1ParticipantI see, is my above code correct? I just updated to the newest version of the wplms eveton plugin but it still isn't working.February 26, 2016 at 1:33 pm #32396Anshuman SahuKeymasterYes the above code is correct .Please check : http://prntscr.com/a869knFebruary 26, 2016 at 5:13 pm #32433Grwd1ParticipantThanks, I found the issue... looks like when you said
Replace the shortcode written with bold and italics with your full calendar shortcode.
...you only italicized the last part so I was only replacing that. After seeing your image in your last post it was obvious that the whole thing needed to be replaced with my shortcode and then add back the wplms_course="1" at the end. Here is the code that finally worked for me in case anyone else needs it: add_filter('wplms_eventons_course_events_shortcode','full_cal'); function full_cal(){ return '[add_eventon_fc load_fullmonth="yes" wplms_course="1"] '; }February 27, 2016 at 12:18 pm #32609Anshuman SahuKeymasterThanks for sharing the code and sorry my bad explaining that :) -
AuthorPosts
Viewing 10 posts - 1 through 10 (of 10 total)
- The topic ‘EventON Month view (Full Cal)’ is closed to new replies.