faebu
Forum Replies Created
-
Forum: Plugins
In reply to: Calendar – Browserwhat is the full url in your error message? did you copy all database tables as well? did you update serveral options in the options-table to match the new environment?
Forum: Plugins
In reply to: Calendar – BrowserI cannot see what your problem is?
Can you explain what this exactly means?
I created site(using moxilla as browser of choice) and have copied all the details to another machine running IE(only)
What doesn’t work as expected? Not showing the graphical calendar? Problems in the Admin interface?
Please be more precisely.
Forum: Plugins
In reply to: [WP Calendar] WP Calendar shortcodesFirst of all: Please don’t double post your request!
You have to introduce more categories. What you need is imho very exotic and i think its more a conceptual problem of your categories.
This is the only option you have, if you are not able to handle PHP and SQL. Even if the data modell is very simple (just these 2 tables), you have to consider, that more things have to be done (e.g. filters for output).
Cheers!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Google Map integration with plugins?hi. google maps integration is planned, but i don’t have the time at the moment to implement this.
give me a few weeks.
cheers
Forum: Plugins
In reply to: [WP Calendar] WP Calendar shortcodesThe parameters include are only for event ids, but not for categories. There is no include/exclude mechanism for categories. All you can do is to explicitly include categories using the categorie parameter. If you specify more than one category, this will be queried using an OR condition.
ultimatly i wish a list in 2 parts like the following
# cat 1 posts in cat 4
# cat 2 posts in cat 4
# cat 3 posts in cat 4Therefore this is not possible using short codes. If you’re programming PHP you could select the post ids from the database and then exlude the events you don’t want.
I think what you want is more a problem of your category design.
you have to make sure, that your css code for category 3 is more “important”. You can do this, by placing the css keyword !important behind the single formats. e.g.
div .fc-event.category-3, div .fc-event.category-3 a { background-color: red !important; border-color: red !important; }
You can also handle this by using more specific selectors. there are several rules how these behaves, but to make it simple: the more specific the selector is, the stronger is its format definition. e.g.
div .fc-event.category-2, div .fc-event.category-2 a { background-color: blue border-color: blue; } div.fc-content div.fc-event.category-3, div.fc-content div.fc-event.category-3 a { background-color: red; border-color: red; }
Now Categorie 3 is stronger and its format should apply!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] past event not disappeari don’t think that anyone can help, when you’re providing very small information. please let us know, what you EXCACTLY mean.
how do they no disappear? Admin, Page…
how is it integrated? Widgets, Shortcodes
post your tags– works perfect on my three instances. but i did some optimizations according to some hacks i found
– the category widget seems to be broken, because some wp functions have changed. i have allready fixed that for next version
– shortcodes work for me. consider that this plug-in is not using wp shortcodes, but uses it’s own tag logic. please check your “shortcodes” with the documentation!Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Problem with Encoding UTF-8 (Russian)if you provide just a bit more information, maybe somebody could help. please describe your problem more precisely. where do you get these ???. admin interface? front end? widgets? using functions? using tags? allways?
since the link click (prev/next month) just load other events using ajax, there might be functions of fullcalendar you schould be able to trigger. maybe you should have a look at the documentation of fullcalendar.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] {event-calendar} not workingyou’re welcome!
cheersForum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] {event-calendar} not workingMake sure the necessary libraries are loaded by checking the wp calendar general settings. You find there some options at the bottom wether to load the libraries or not. Make sure these checkboxes are checked!
If you are very sure that these tables arent in use anymore, you can delete them. If you re doing wrong you can break your blog, so be carefull!
Forum: Plugins
In reply to: change calendar month by clicking on an event from widgetjust close this one by setting it to resolved please
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] {event-calendar} not workingcan you find the the code fragment from the first post in the source code of your page? if yes, please check in the sourcecode which javascript library are loaded. i could be also a problem of your theme.
when you click on an event in the widget, all it does is that the single page for the event is shown. have you inserted the grafical calendar even in your single page view?
at the moment it is not possible, because the graphical calendar works indepding from the page (or any widget) which is currently shown.