VisiCom
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Typography] Size and Color parameters as optionalsPerfect, thanks!
Forum: Plugins
In reply to: [WP Customer Area] Bad box-sizing code in CSSHappy it worked!
Forum: Plugins
In reply to: [WP Customer Area] Bad box-sizing code in CSSForum: Plugins
In reply to: [WP Customer Area] Files categories widget not working as expectedIf the “hide_empty” checkbox is set, you should add an “include” parameter while calling the get_terms function.
The list of ID to include can be found with a single SQL query retrieving distinct categories ID for all posts belonging to the current user.
You’ll probably need to modify the “cache_domain” setting of the get_terms function in order to speed up the process…Another solution is to use the “terms_clauses” filter once an user is logged:
add_filter(‘terms_clauses’, ‘term_filter’, ”, 1);
function term_filter($pieces){
$pieces[‘where’] .= ‘SQL to only include posts belonging to the current user’;
return $pieces;
}Forum: Plugins
In reply to: [Analyticator] Dashboard widget not disabledI understand your advice but I think that disabling the tracking code should remove or disable the dashboard widget too!
Forum: Plugins
In reply to: [Analyticator] Dashboard widget not disabledSorry, it’s not the plugin which is disabled, but the field “Google Analytics logging is :”
Forum: Plugins
In reply to: [WP Customer Area] Filtering by ownersSeems you need to add ‘show_admin_column’ => true
Forum: Plugins
In reply to: [Google Typography] Size and Color parameters as optionalsIn fact CSS Selectors should be optional too.
Currently, with no CSS selector specified, the related fonts are not loaded from Google.One can use a CSS editor plugin and prefer to have more power with it than with a simple CSS selector input (ex: font fallbacks, !important flag, color inherit, …)
Forum: Reviews
In reply to: [Google Typography] Great Google web fonts manager.Correct!
And @import is blocking parallels download: https://www.stevesouders.com/blog/2009/04/09/dont-use-import/I add a link to this review in the support forum ??
Forum: Plugins
In reply to: [Google Typography] Failed installation of plug-in Google Typography+1
Here is the list of errors i get once going to Typography option page:
Something went wrong: Operation timed out after 5100 milliseconds with 215938 out of -1 bytes received
Warning: Invalid argument supplied for foreach() in /Wordpress/wp-content/plugins/google-typography/google-typography.php on line 254And list of available font families remains empty…
Seems like there’s a timeout while loading fonts from Google.Opening the settings page back later, the fonts are loaded and no more error is shown…
I guess this problem occurs at first install only.Forum: Plugins
In reply to: [jQuery Colorbox] Images of different galleries grouped togetherI thing a solution would be to affect the colorbox-n classes at runtime with jQuery and not in the frontend PHP…
ThanksForum: Plugins
In reply to: [More Taxonomies] Add taxonomy column in WP 3.5Hi,
One day you can add $taxonomy[‘show_in_nav_menus’] = true; too, so the taxonomy appear in the navigation menu…
ThxForum: Plugins
In reply to: [Transposh WordPress Translation] Quotes break sentencesNB: by quotes i mean in fact ’ (& rsquo;)
…or your provider refuse external url loadings…
Forum: Plugins
In reply to: [Enhancing CSS] [Plugin: Enhancing CSS] Bug with new WordPress 3.4 RC1It was in fact a problem of bad REQUEST_URI value under IIS hosting…