pandem
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] Duplicate floating buttonsThat did the trick, thanks a lot for your prompt support!
Forum: Plugins
In reply to: [Collapse-O-Matic] Highlander acting upIt took me a while, but I finally saw what you meant. I was overdoing it! After some clean-up, less coffee and further reading of documentation, everything is working as expected. Thank you for your help!
Forum: Plugins
In reply to: [Collapse-O-Matic] Highlander acting upI will try to describe it more graphically. This is what I have on my page:
——-
Some text visible on page landing (id=intro). It will be hidden when clicking “View images” link.
View images (link)Images hidden on page landing (id=slider). They are shown when clicking “View images” link and will be hidden when clicking “View text” link.
View text (link)
——-
When images are visible and text hidden, if you reload the page (now with anchor #slider appended to slug), the text reappears over the images, but it should remain hidden. I tried to use highlander grouping to this effect, but it does not seem to work, as told on my previous post.I created a test user for you in case you need to view it in action. You can login here with user “test”, pwd “test”, and you will be redirected to a page using Collapse-O-Matic. Please click on “Ver fotos” to show the slider and then reload the page to see what I am talking about.
Thank you for finding some time to consider this issue!
I have just added Spanish PO and MO to trac.
Forum: Themes and Templates
In reply to: Site with 2 languages howto?You can just send the translation agency a dump of your wp-posts table and then, with Gengo plugin installed, insert the translation for every post.
Also, you could use Language Switcher plugin, which is derived from Polyglot plugin. It saves the original and the translation as a unique post and separates both by means of
<lang_XX>
tags. That way, you could send to the translation agency a dump of your wp-post table, instruct them to write the translation wrapped in these tags next to the original, and then replace the wp-post table contents in your database with the original+translated ones. A faster approach, in my opinion.Forum: Fixing WordPress
In reply to: trouble with role managerForum: Fixing WordPress
In reply to: New Posts – Setting default custom field valuesYou may be interested in these two plugins:
Custom Field GUI
Get Custom Field ValuesYou won’t have to hack core templates.
Forum: Fixing WordPress
In reply to: WordPress dates in spanishYou can find WP 2.0.4 Spanish translation here:
https://svn.automattic.com/wordpress-i18n/es_ES/branches/2.0/messages/
.Forum: Plugins
In reply to: Adding a new text fieldForum: Plugins
In reply to: Support for multi-lingual siteForum: Fixing WordPress
In reply to: translating wordpress blog contentThe thread is a bit old, but just in case anyone is interested see this post.
Forum: Fixing WordPress
In reply to: localization/translation question…There are two plugins (to my knowledge) providing multilingual support for WordPress. They allow visitors to click a link or flag to read the whole site in any of the languages available, and switch locale to the choosen language:
- The Polyglot plugin allows you to write posts in as many languages as you like using some special tags. You can provide switching languaje links for the whole site or on per-post basis.
- The Gengo plugin creates some database tables to store each language separately. You can show the number of available posts for each language.
The first one seems more adecuate for fully multilingual blogs, as you can edit a post written in several languages simultaneously. While the second seems better for blogs with just some content in different languages or variable content for each one, as you create separate posts for each language.
Forum: Plugins
In reply to: Subscribe2 / LocalizationFor Subscribe2, the .mo file is supposed to be directly under /plugins directory. If you want to place it in Subscribe2 folder, you’ll have to edit subscribe2.php and change line (around)1617 from
load_plugin_textdomain('subscribe2');
to
load_plugin_textdomain('subscribe2', 'wp-content/plugins/subscribe2');
Forum: Plugins
In reply to: SimpleViewer plugin (need help)Thanks, jimatwork, and sorry it took me two days to reply. I’m very happy that you are willing to do it! How can I send you my quasi-plugin file? I went to your site (nice basket balls!) but couldn’t find an e-mail address…
Forum: Plugins
In reply to: Redirect to blog after loginAfter some research, and just in case someone is interested, I’ve improved my code by changing the first part from this:
if (is_home()) {
$redir = get_settings('home');
} else {
$redir = get_permalink();
}to this:
if ((is_home()) && !($_SERVER['QUERY_STRING'])) {
$redir= get_settings('home');
} else {
$redir= get_settings('siteurl') . $_SERVER['REQUEST_URI'];
}