Bainternet
Forum Replies Created
-
Forum: Plugins
In reply to: [Author Category] When using wordpress default category taxonomy in CPTI guess you can but that requires some custom coding.
Forum: Plugins
In reply to: [Author Category] Language file missingThanks,
I’ve added the french translation and a POT file.
Forum: Plugins
In reply to: [Author Category] Bug Report: Remove Default Categories Meta BoxNot replicating the problem, so its not really a bug on my count.
Forum: Plugins
In reply to: [Author Category] Just seeking clarificationYes, Yes and yes that is exactly how this plugin works.
Forum: Plugins
In reply to: [Author Category] checked all multiple categoryWhat is the question???
Forum: Plugins
In reply to: [Custom Category Template] Does not workCan’t really help with this SO much details.
Forum: Plugins
In reply to: [Custom Category Template] Custom Cat dropdown not showingThis plugin works on the native categories.
You can use this plugin which will work on custom taxonomies
Forum: Plugins
In reply to: [Custom Category Template] Adding custom templates@asif Thanks.
That is right This plugin will automaticly pick up templates in your themes folder.
So to create one just use this tag at the top of the template:
<?php /* Template Name: Category Name */ ?>Forum: Plugins
In reply to: [Custom Category Template] Nothing happens – what can I do to fix?This plugin uses the native
category_templatehook, if your theme is not using the conventional template system then its not going to work.Forum: Plugins
In reply to: [Social Comments] get number of comments of fb and gIn an hackish way you can ex:
function get_count_gplus($url){ $req = wp_remote_get('https://apis.google.com/_/widget/render/commentcount?bsv&usegapi=1&href='.$url); if (is_wp_error($req) || $req['response']['code'] != 200) return '0'; $body = $req['body']; $count = explode("<span>",$body); $count = $count[1]; $count = explode(" ",trim($count)); return $count[0]; }Forum: Plugins
In reply to: [ShortCodes UI] Multisite supportIt Works in a multisite install as a stand alone plugin per site.
Forum: Plugins
In reply to: [Social Comments] Replace (optional) on WP commentThis data is stored in WordPress and has nothing to do with this plugin.
The website (optional) field is a part of the default WordPress comment form. and you can change the label hook a function to the
comment_form_default_fieldsfilter.I’ve love to be able to do that but there is no api at the moment that supplies that information from G+
Forum: Plugins
In reply to: [Social Comments] NotificationThe next version should allow you to get Facebook notifications when a new Facebook comment is posted when you set an APP ID but for Google there is no way as of now.
Forum: Plugins
In reply to: [Social Comments] Twitter?It was requested in the past but since twitter has no commenting system/widget then i don’t see a reason to add it to the plugin or don’t even understand what to add from twitter to the plugin.
as for Jetpack, they only allow login by Twitter and not actually commenting as tweet or anything like that.