Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • I think I found it.

    function ikfb_build_photo does not have page_id passed to it.

    So it needs to be told what it is.
    Look for:

    function ikfb_build_photo($item,$replace="",$shortened,$image_html,$description_html,$caption_html,$use_thumb,$width,$height){

    and add a line underneath, so it reads:

    function ikfb_build_photo($item,$replace="",$shortened,$image_html,$description_html,$caption_html,$use_thumb,$width,$height){
    		$page_id = $item->from->id;
    Thread Starter thirzah

    (@thirzah)

    To test, I just updated another site via the admin panel, and it does delete the uploaded custom image, so I wonder if it would be better to put them in another directory or something – sometimes it’s not possible to ftp ??

    Thanks for your fast replies <3

    Thread Starter thirzah

    (@thirzah)

    Oh, I was using 2.1, I think

    Thread Starter thirzah

    (@thirzah)

    Hi

    I have got it back – I think maybe the update deleted the image file – is that likely? I had put the image in the active theme directory (circle-media-icons)… where should I have put it?

    For info, I used:

    Sticker ID: circle_mail
    Sticker URL: mailto:[:username]
    Sticker Name: email (circle icon)


    When I first tried to add it back in, before, I think I was an idiot and just used ’email’ as the ID, so ignore the bit about the plugin saying it already exists, sorry! ??

    PS LOVE this plugin – particularly, being able to customise the HTML output and add custom networks <3

    hello,

    Your question got me on track, so thanks ??

    get_post_format_meta returns an array, with the post meta values for the keys listed above – e.g.

    $pm = get_post_format_meta(get_the_ID());

    $thequote = $pm[‘quote’];
    $thequotesource = $pm[‘quote_source’];
    $thequoteurl = $pm[‘url’];

    (or did I misunderstand? ??

    thirzah

    (@thirzah)

    I had the same error, but (like you) it was actually coming from another plugin, also using OAuthUtil

    In my case it was Simple Twitter Connect, which I’d left activated even though not using it (duh, silly me) – so I just deactivated it and problem solved, though I guess that’s not the real solution.

    It looks like yours is coming from wordpress-dashboard-twitter

    So it looks to me like the plugins are squabbling over OAuthUtil – which seems daft, so hope I’m wrong!?

    I’m losing structure too and don’t have any tags at all ??
    However, I do have multiple categories with the same ‘name’ but different slugs (e.g., I have “West Midlands” as both a ‘region’ and a ‘county’ in my hierarchy, with west-midlands and west-midlands-2 as the slugs.

    I can see two places where the export/import is likely failing:
    1) in the exported xml, <wp:category_parent> does not use the slug of the parent, but its name. e.g.
    <wp:category_parent>West Midlands</wp:category_parent>

    2) in the import, looks like there’s a check to see if a category exists before importing it… using its name:

    // If the category exists we leave it alone
    	if ( in_array($cat_name, $cat_names) )
    	 continue;

    However, I might be wrong on both counts ??

Viewing 7 replies - 1 through 7 (of 7 total)