Poco
Forum Replies Created
-
Forum: Plugins
In reply to: [Blogger Image Import] Test passed, import failSorry to hear that. The best I can suggest is to try and reduce the maximum number of images to be imported down to 1 and see what happens. Another option is to check your server logs for any specific errors.
Forum: Plugins
In reply to: [Blogger Image Import] Didn't import anythingNot really. Do you have a link to the site where it isn’t working? Do you have any error logs from your server? So you have any output from your web browser console?
Forum: Plugins
In reply to: [Google Calendar Widget] German translation and time formatTake a look at the FAQ http://wordpress.org/plugins/google-calendar-widget/faq/
You can replace the date.js file in the plugin with one in the package here here https://code.google.com/p/datejs/downloads/detail?name=Datejs-all-Alpha1.zip&can=2&q=.
You can also change the time format by changing the following lines of code from the plugin
startJSDate.toString("ddd, MMM d, yyyy h:mm tt") dateString = startJSDate.toString('MMM dd');using the formatting defined here https://code.google.com/p/datejs/wiki/FormatSpecifiers
Forum: Plugins
In reply to: [Google Calendar Widget] Spinning Wheel with Google Custom Domain FeedYou must use the “full” calendar link, like this…
http://www.google.com/calendar/feeds/atividades%40institutoprana.com.br/public/full
You will also need to make your calendar public.
I don’t have access to a computer at the moment but what I usually do I’m these cases is load the page and look at the errors in the JavaScript console. Chrome and IE both have good debuggers, check in the menu for developer tools (press F12 in IE).
This will give you a good idea what the problem is since this is usually caused by a script error which prevents the page from loading the calendar.
Forum: Plugins
In reply to: [Google Calendar Widget] Change Format of Calendar TitleDid you get this resolved?
Each of the elements of the calendar have classes that can be styled with CSS rules. ko-calendar.css can easily be updated to configure the look of the elements.
Forum: Plugins
In reply to: [Google Calendar Widget] Expansion just stopped workingI just checked your site and the problem seems to be resolved. Sorry for not helping sooner, but my RSS feed had some issues and I didn’t notice the forum posts.
Forum: Plugins
In reply to: [Google Calendar Widget] showing 2 calendars at the same time in sidebarYou should be able to use multiple calendars on the same page. Do you have a link that you can post to a page with the problem?
I’m on my phone at the moment, but you should be able to disable the wikijs parsing which should help with that. I don’t remember the exact line to change, but you should find it in other replies about this plugin. I’m not sure if you need to change anything else to make it insert raw html.
Forum: Plugins
In reply to: [Google Calendar Widget] [Plugin: Google Calendar Widget] WordPress 3.4I will look into it
I don’t see the calendar widget on the site anymore. If you put it back up and try again, please take a look at your javascript console output. It will quite often indicate the error that is occurring – and this is what I would do if I was able to look at the widget on your page.
Oops, sorry about that. I guess I copied the readme template from my other plugin and before the readme existed it got the title from the php. Should be fixed now.
Forum: Plugins
In reply to: [Google Calendar Widget] Loading wheel doesn't disappearI took a quick look through the SRP and found the offending line in srp-functions.php.
$googlepath = "http://maps.google.com/maps/api/js?sensor=true"; wp_enqueue_script( 'google', $googlepath, FALSE, false, false );You can try replacing the string ‘google’ with ‘googlemaps’ or something unique so that there is no conflict and both plugins will include both files. I’m not sure if they are both needed, but give it a try.
You might want to contact the author of that plugin and see if he has a better option. I don’t know if there is a naming convention for google APIs with wordpress plugins.
Forum: Plugins
In reply to: [Google Calendar Widget] Loading wheel doesn't disappearsamdobrow,
I suspect there is a conflict of some kind with another plugin that is including the Google Maps API, but not the rest of the Google API.
<script type='text/javascript' src='http://marksblythe.com/wp-includes/js/jquery/jquery.js?ver=1.7.1'></script> <script type='text/javascript' src='http://maps.google.com/maps/api/js?sensor=true&ver=3.3'></script> <script type='text/javascript' src='http://marksblythe.com/wp-content/plugins/google-calendar-widget/date.js?ver=alpha-1'></script> <script type='text/javascript' src='http://marksblythe.com/wp-content/plugins/google-calendar-widget/wiky.js?ver=1.0'></script> <script type='text/javascript' src='http://marksblythe.com/wp-content/plugins/google-calendar-widget/ko-calendar.js?ver=3.3'></script>The calendar plugin requires the full Google API included, like the following…
<script type='text/javascript' src='http://www.google.com/jsapi'></script>It is added in the php like this…
wp_enqueue_script('google', 'http://www.google.com/jsapi', false, NULL);My guess is that the other widget has a similar wp_enqueue_script call that registers “maps.google.com” as “google” instead of something like “googlemaps”.
Not sure of the right fix – it depends on your other plugins, but you might want to check for wp_enqueue_script calls.
I am not aware of any issues. Do you have a link to look at? I would check your console output window for any errors.