TCBarrett
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Glossary] Is this to automatically create links in content?It works via a shortcode. You have to use the shortcode. There is no auto-identification of possible glossary terms in post content.
Forum: Plugins
In reply to: [WP Glossary] How do I change the slug from glossary to something else?You can translate it using WordPress translation tools. Look up on how to create language translations and add one for the rewrite slug.
Forum: Hacks
In reply to: Default custom post column to 'off' in screen optionsThat would hide it every time they log in. What I’m after is for the default position to be off, rather than on. Once the user switches it on it stays on until they switch it off.
I can work around things with, for example, some user meta to flag whether I’ve hidden it or not. But that’s not a nice solution.
Forum: Plugins
In reply to: [WP Glossary] No tooltips on hoverNot experienced an issue with either syntax, so updating to luckyfella73’s in trunk.
Forum: Plugins
In reply to: [WP Glossary] can't access my Terms, Permalinks Reset Did Not FixTry updating the plugin and re-saving permalinks.
Forum: Plugins
In reply to: [WP Glossary] Permalink / BlogI’ve added what should hopefully be a fix for this in 3.1.1
If you could update, save your permalinks, and give it a try. Thanks.
Forum: Plugins
In reply to: [WP Glossary] Can We Change the "Term Usage Title"?Try the wpg_term_usage_title filter:
add_filter( 'wpg_term_usage_title', 'wpg_term_usage_title' ); function wpg_term_usage_title( $title ){ return __( 'Term Usage', 'wp-glossary' ); }Forum: Plugins
In reply to: [WP Glossary] Change Hover and Link Style for Glossary Terms on post pageYou could target them with some CSS
.wp-glossary a:hover { ... }Forum: Plugins
In reply to: [WP Glossary] Multilanguage Support – WP Glossary and xiliI’m not familiar with ‘xili’. If it doesn’t work our of the box, then I probably don’t support it (at the moment), sorry.
If there is a way to perpetuate language settings through some simple setting, then I could look at adding support.
Forum: Plugins
In reply to: [WP Glossary] Website inaccessible after installing plugin (v3.1)There’s no chance to even try to look into whatever that is without some details.
Forum: Plugins
In reply to: [WP Glossary] change fontThe plugin does not specify a font. It uses whatever font the theme provides.
Forum: Plugins
In reply to: [WP Glossary] tooltip translationsNever heard of ETM. So if support for the ‘ETM features’ needs to be built in, then I don’t support it.
Forum: Plugins
In reply to: [WP Glossary] updating wordpress makes this plugin stop workingI’m using it on my own site, which is up-to-date, and it is still working.
Forum: Plugins
In reply to: [WP Glossary] Help? My Hover Function has disappeared?That’s very difficult to answer without a link.
The styles and scripts are conditionally loaded. You could explicitly enqueue them yourself, then the mark up should work.