hmersch
Forum Replies Created
-
Forum: Plugins
In reply to: [Google+ Importer] how to insert a link to the g original post at the bottom?You would like to have something like I have?
–> http://www.hmersch.de ?Check if L183-185 of the plugin is
$via_text = get_option(‘google_plus_importer_via_text’);
$via_text = str_replace(“\$orig”, $item->url, $via_text);
$post_content = $post_content . “\n\n<span class=\”via-google-plus\”>”.$via_text.”</span>”;I think I added L184 …
Afterwards you could use the setting “Via Google+ Text”. $orig will be replaced by the original g+-Posting-URL
Forum: Plugins
In reply to: [Google+ Importer] Trying to get property of non-object errorTake just 106098137236295012367 as ID!
The documentation highlights the numbers for indication of the ID…anyway in my browser this could easily be misinterpreted.
Forum: Plugins
In reply to: [Cool Video Gallery] Not all media-videos are selectable?!Thanks – the numberposts param works great
Forum: Plugins
In reply to: [Cool Video Gallery] Not all media-videos are selectable?!Another FRE: Within the core.php you use exec() just to check ffmpeg availability-. Exec() does make problems and produces “disabled for security reasons”-Messages on a lot of webspace-providers. Maybe you could use something else?
BR again – henning
Forum: Plugins
In reply to: [Google+ Importer] (Creation) Date import failesThe problem does only come up for posts of not-today, thus while initial import.
So I had a look at wp_insert_post($post) within the plugin.
….which used an “option”;
‘post_date_gmt’ => $publish_date
…which took me via google tohttp://ww.wp.xz.cn/support/topic/post_date_gmt-reverts-to-current-date?replies=2
So either use ‘post_date’ instead of ‘post_date_gmt’ (thats what I have done) or give the gmdate a try.
Hope that helps someone …
BR – Henning