AdrianB
Forum Replies Created
-
Forum: Plugins
In reply to: [Multisite Language Switcher] Error showing the main site linkI tried checking “Permanent redirect” but it did not make any difference in my case as far as I can see.
I have only one domain (“example2.com”) under “Settings > Domains” and it’s primary.
My sites are subdomains (that is the only way if you wan’t to use different top level domains like I do, I think).
Forum: Plugins
In reply to: [Multisite Language Switcher] Error showing the main site linkYes I’m using the “WordPress MU Domain Mapping” plugin.
My Domain Mapping Configuration is a Server IP Address and the other settings are:
Checked: “Remote Login”
Unchecked: “Permanent redirect (better for your blogger’s pagerank)”
Checked: “User domain mapping page”
Checked: “Redirect administration pages to site’s original domain (remote login disabled if this redirect is disabled)”
Unchecked: “Disable primary domain check. Sites will not redirect to one domain name. May cause duplicate content issues.”(If that was the setting you where looking for.)
Forum: Plugins
In reply to: [Multisite Language Switcher] Error showing the main site linkI se now that it is home_url() that is used here:
https://github.com/lloc/Multisite-Language-Switcher/blob/master/includes/MslsOptions.phpI was changing the current stable version when I was experimenting. But nonetheless the first thing I tried was using the dev version and that didn’t work, it was after that I tried to modify the stable version by switching to home_url() just like you already have done in the dev version.
I tried again just now and swapped only the MslsOptions.php to the latest dev version and still get /wordpress in my link. home_url() shouldn’t be doing that (and it doesn’t if I put in in my theme) so I don’t know what is going on.
Forum: Plugins
In reply to: [Multisite Language Switcher] Error showing the main site linkI tried to change
site_url()tohome_url()in theget_permalink()function in MslsOptions.php but that did not work for some reason.Forum: Plugins
In reply to: [Multisite Language Switcher] Error showing the main site linkI think I have the same problem. It seems like Multisite Language Switcher is using the WordPress address instead of the Site address for the main site. I tried the dev version from github but the result was the same.
I have two sites:
Main: http://example1.com
Second: http://example2.comThe Multisite Language Switcher link from main to second works:
http://example1.com -> http://example2.com
But not from second to main:
http://example2.com -> http://example1.com/wordpressI have WordPress in a sub directory like this on my main site setup like this:
WordPress address (URL): http://example1.com/wordpress
Site address (URL): http://example1.comYeah, about my original issue, I’ve concluded that
font-size: 88%;is the way to go for IE 9, so I serve it conditional to IE 9.I don’t know if it works for everyone, but it solved my problems.
alancoughlin: I think 87.5% was choosen to make the base font size the same as 14px. 100% would make that 16px (since that is default i most browsers).
alancoughlin: That’s because Twenty Twelve uses rem based widths. It is somewhat explained in the beginning of style.css, there’s also a link to this page which says:
CSS3 introduces a few new units, including the rem unit, which stands for “root em”. If this hasn’t put you to sleep yet, then let’s look at how rem works.
The em unit is relative to the font-size of the parent, which causes the compounding issue. The rem unit is relative to the root—or the html—element. That means that we can define a single font size on the html element and define all rem units to be a percentage of that.
For example, consider this part from style.css:
body .site { padding: 0 40px; padding: 0 2.857142857rem; margin-top: 48px; margin-top: 3.428571429rem; margin-bottom: 48px; margin-bottom: 3.428571429rem; box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); }Modern browsers supports rem and therefore the paddings and margins are affected by the font-size on the html element.
Forum: Plugins
In reply to: [Lightbox Plus Colorbox] caption from WP galleriesI was just going to open a thread about the same question. I havn’t used any previous version but I would like to be able to use the image caption from the gallery instead of the image title.
(By the way, it’s easy to get 2.5.5 or any older version, just change the URL like this: http://downloads.wordpress.org/plugin/lightbox-plus.2.5.5.zip)
Same issue for me. Tried the development version, didn’t make any difference.
Forum: Plugins
In reply to: [Dynamic Widgets] Possible problems with STRICT sql mode?And btw, thanks for a great plugin!
Forum: Plugins
In reply to: [Dynamic Widgets] Possible problems with STRICT sql mode?Ok, thanks for the answer, I’ll try to get it disabled then.
Forum: Plugins
In reply to: Daring Fireball Like “Linked List?”Have you seen this?
http://github.com/jonathanpenn/wordpress-linked-list-plugin/tree/master
Forum: Themes and Templates
In reply to: Kubrick header uses the wrong background after 2.5I just upgraded a blog to 2.5.1 and at the same time I used the default theme from 2.5.1 to get a fresh theme. I was hit by exactly the same bug, my front page did not use the correct background. I traced it to the same line:
if ( !empty($withcomments) && !is_single() ) {Then I compared to what was in my old default theme:
if ( !$withcomments && !is_single() ) {I assumed there’s a reason for this change, right?
If I switch back to the old version everything seems fine. And according to this thread the $withcomments variable isn’t even used anymore. Can anyone confirm this?
Forum: Requests and Feedback
In reply to: WordPress 2.0.3As they already are working on 2.0.4 right now, it seems like there should have been some testing done on 2.0.3 first.
And what happens to those open issues of 2.0.3 now? Are they moved to 2.0.4 or to 2.1?