fneumeier
Forum Replies Created
-
Forum: Plugins
In reply to: [Live Blogging] Showing Blog Post Title in each of the Live Blog Entries?Just in case someone is interested – I now found a pretty rough, but working solution for this:
I do have a custom template for Live Blog entries (check out WP documentation how to have individual custom templates for different post types …):
In this custom template file the following code does the magic:
<h1>Update: <?php $masterid = wp_get_object_terms($post->ID, 'liveblog', array( 'fields' => 'names' )); if ($masterid[0]) { $mastertitle = get_the_title($masterid[0]); $masterlink = get_permalink($masterid[0]); //use this if you want to add a link to the master document, e.g. below each entry echo $mastertitle; } ?> </h1>
Forum: Plugins
In reply to: [WP-Slimbox2 Plugin] Reverting to old version?Thanks goddess_six, this fix works perfectly and no issues with login or admin interface anymore either now ??
Forum: Plugins
In reply to: [WP-Slimbox2 Plugin] Reverting to old version?in addition to that, it also breaks almost the whole admin interface for me. i.e. if I clear all cookies and browser cache, I can’t log into wordpress anmore; only removing the wpslimbox2 plugin from the plugin folder via FTP solves the issue …
Forum: Themes and Templates
In reply to: looking for slim backend for use with slow internet connectionOkay, got you; good point. Might be an option. I’ll give it a try.
Still, working in my familiar environment in a laptop, big display, nice keyboard etc. would be the preferred way doing it ??
Forum: Themes and Templates
In reply to: looking for slim backend for use with slow internet connectionThe issue is more the slow internet connection than the device. I’m travelling a lot on cruise ships and their Internet rates are outrageous (about 65 cents per minute) and the connection is slow. So just waiting for the backend to show up in the browser sometimes costs me 2 Dollars and publishing a post costs another 3 Dollars …
So what I’m looking for is an interface that is very slim, reduced to the absolute minimum in traffic volume I can use alternatively when using such a slow and costly connection.
The solution is pretty simple: Go to
yourdomain.com/wp-admin/options.php
and change the value for rss_language to nl (or what ever language you desire).Franz