TCBarrett
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Glossary] [Plugin: WP Glossary] Tooltip optionsDid you have something specific in mind? I don’t really want to add a lot of styling options, would rather they were handled by the theme.
Forum: Plugins
In reply to: [WP Glossary] [Plugin: WP Glossary] DiacriticsHi Jozef
I would love to, but to be honest I’m not quite sure how.
I have added a filter ‘tcb_wpg_atoz_range’ to the atoz shortcode loop (trunk version 1.3.3). Does this fulfil your requirements, or do I need to do more inside the plugin code?
Forum: Plugins
In reply to: [WP Glossary] [Plugin: WP Glossary] Page Not FoundLet me know if it turns out to be an error with wp-glossary plugin (rather than with the other). In a perfect world, the two should be able to live together?
Forum: Plugins
In reply to: [WP Glossary] [Plugin: WP Glossary] Permalinks ( glossary to something else )I have added rewrite slug definition to custom post type, and (if done correctly) passed it through localisation function.
Let me know if it works.
Forum: Plugins
In reply to: [WP Glossary] [Plugin: WP Glossary] LocalizationWould you be able to check out trunk to make sure I have added this correctly?
Forum: Everything else WordPress
In reply to: how to retrieve the form data once that has been submittedIf the plugin is hosted on wp-org: http://wordpress.org/extend/plugins/ then you can submit a question directly to the author via their support forum.
If not, then you might have better luck asking them wherever you got it from?
Forum: Everything else WordPress
In reply to: need to add an "รก" (a latin with accent) on phpThis is not a PHP issue, it is an HTML one.
Try reading up on character entity references:
- http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML
- http://www.ascii.cl/htmlcodes.htm
Or, better still, WordPress language translation: http://codex.wordpress.org/Translating_WordPress – though that might be quite a bit to chew off as a starting point!
Forum: Everything else WordPress
In reply to: what is the consensus on a good number of views per monthAssuming that this is my ‘Alexa rank’ http://www.alexa.com/siteinfo/tcbarrett.com then I’m ranked 428,409th in the world – better than you. So I must have a truly amazeballs site!!
Either that, or it is all a bit subjective ๐
Forum: Networking WordPress
In reply to: How Do I Get SubDomains and Domain Mapping to Work Properly?For wildcard subdomains you need to
1. Configure your DNS to point at your server (eg a * A record pointing to your server’s IP address).
2. Configure your webserver software to pick up all subdomain requests. This varies depending on software used.Once you have done both, install domain mapping plugin. Create a blog and assign domain mapping.
Forum: Fixing WordPress
In reply to: 13 hours Nobody Helped Me. Do i ask again?There is a significant difference. If you signed up for and are using wordpress.com then you should direct your support questions here: http://en.support.wordpress.com/contact/
If you have installed WordPress yourself (manually or via admin panel provided by host) then you are using wordpress.org and this is the correct place.
The domain/url of your site is a separate thing.
It depends on how well it is coded. You can be confident that any core functionality will keep itself clean.
Some things can leave behind data, however explicitly deleting should remove them.
If you have specific concerns about a plugin or theme, you should contacting the author to ask them ๐
Forum: Installing WordPress
In reply to: How to install the older version of wordpressIf the only thing that ‘made your posts disappear’ was upgrading WordPress core, then either:
1. It failed to correctly update.
2. Your theme, or a plugin no longer works with core code.Re-installing the upgrade should fix scenario 1. Disabling plugins (or theme) should fix scenario 2.
It is best to keep up to date, and use only themes and plugins that work with the latest version.
Forum: Fixing WordPress
In reply to: Images stopped showing upMy advice would be to contact your hosting provider regarding the ‘thumb.php’ file. There are various (good) security reasons why they might have disabled it. Your hosts are the best source of information here.
Forum: Fixing WordPress
In reply to: My blog has been hacked "WSOD – White Screen of Death"If it is an important site for you, you may wish to invest in hosting that promises improved security and support.
For example, for $a-little-more/month you can get daily backups and malware scanning included. I won’t mention names. I’m not affiliated with them. In fact I don’t use them ;p
Forum: Hacks
In reply to: Modifying custom post type's titleadd_filter( 'the_title', 'tcb_cpt_title_prefix', 10, 2); function tcb_cpt_title_prefix( $title, $post_id ){ if( 'restaurant' == get_post_type($post_id) ) : return $title . ' Restaurant'; endif; return $title; }