TCBarrett
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkGeneral options can be over-written in the shortcode attributes from version 3.0
Forum: Plugins
In reply to: [WP Glossary] LATEST NEWSOK, I meant version 3!
My brain is like a fuzzy sponge just at the moment.
Version 3 will be significantly different.
Forum: Networking WordPress
In reply to: Remove 'www' from sub-domain networkI updated 6 things. 1 WP config entry and 5 database entries:
DOMAIN_CURRENT_SITE in wp-config.php
Tables:
- wp_site.domain for id 1
- wp_blogs.domain for blog_id=1 site_id=1
- wp_options.option_value for option_name=siteurl
- wp_options.option_value for option_name=home
- wp_sitemeta.meta_value for meta_key=siteurl
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkThat setting applies only to single term shortcode, it hasn’t been implemented in the atoz or term_list shortcodes.
Will add it to my to-do.
Forum: Plugins
In reply to: [WP Glossary] Strange Nesting Issue When Using ExcerptsHi Zyniker
What are your glossary option settings?
Forum: Plugins
In reply to: [WP Glossary] "Invalid argument" errorHi kbrune
These should be fixed in v2.4.1
Forum: Plugins
In reply to: [WP Glossary] Errors with WP GlossaryHi EPEMEA
These should be fixed in v2.4.1
Forum: Plugins
In reply to: [WP Glossary] Term Link – 'No Link' Option Doesn't Seem to WorkHi bpence
There is an ‘a’ tag, but no ‘href’ link attribute. A bit like this:
<span class="wp-glossary"><a class="glossary-term" title="" >camembert</a></span>Is this what you are getting? If not, could you post your option settings and a link to the page that isn’t working?
Forum: Alpha/Beta/RC
In reply to: Providing Support: Two Admins 'editing' at once.Client: “I’ve done what you said, but it isn’t working”
Me: “Let me have a look”
*back to my original scenario*I very much understand that the current set-up-to-be might be the right way of doing things, but clients just won’t care or understand. I see this as being a feature that the first thing we do with it is hack it away.
It is a nice to have, and works well in some (most?) situations, but not when you just need to have two people have the admin page open at the same time.
Forum: Fixing WordPress
In reply to: How to display only the last category name?Stick it an array and implode with your separator
$caturls = array(); foreach( (get_the_category()) as $cat ): $caturls[] = '<a href="' . get_category_link( $cat->cat_ID ) . '">' . $cat->cat_name . '</a> '; endforeach; echo implode( ', ', $caturls );Contact your hosting provider and use a really good password.
Forum: Networking WordPress
In reply to: Can't access subdomain Dashboard‘www’ although very common, is just another subdomain of your site. Just like ‘test’ is. So, yes you do need have DNS set up.
You don’t appear to have it set up:
http://network-tools.com/default.asp?prog=dnsrec&host=test.skintnation.comYou may like to read up on http://en.wikipedia.org/wiki/Wildcard_DNS_record. Or not 🙂
Forum: Networking WordPress
In reply to: A couple quick questions about installing multi-siteIn this case it is not a case your physical ownership of anything. It is about the user-accounts in the operating system and their ownership of (or acess to) the files on the disk (virtual or otherwise).
https://help.ubuntu.com/community/FilePermissions
http://manpages.ubuntu.com/manpages/lucid/man1/chown.1.html
http://manpages.ubuntu.com/manpages/lucid/man1/chmod.1.htmlSo in this case ‘ownership’ means correct use of ‘chown’ and ‘permissions’ is correct use of ‘chmod’.
Hope that helps.
Forum: Plugins
In reply to: [WP Glossary] WP-Glossary timing out — coincidence?You could use the excerpt entry for the tooltip.
I’ve always had a specific thing in mind for the tooltips, I think this example) is the closest (but on hover, not click:
http://craigsworks.com/projects/qtip2/demos/#ajaxAt first glance qTip2 looks much much bigger (many more files) than qTip1, so I’ve opted to explore other options just for now 🙂
Forum: Plugins
In reply to: [WP Glossary] Endless Loop with V 2.3.2 and specific templateThere is nothing in the plugin code that returns a 301 redirect.
They are difficult to undo:
http://stackoverflow.com/questions/10136895/how-to-undo-a-301-redirect
http://getluky.net/2010/12/14/301-redirects-cannot-be-undon/