devotee
Forum Replies Created
-
Forum: Plugins
In reply to: [Multiple Roles] Roles List in your own profileI’d also like to see this functionality.
Forum: Plugins
In reply to: [Analyticator] Put *analyticator* JS code in footerI agree with this, would be good!
I have the same issue I think. When I′m on the latest post I get a ‘previous post’ link which seems to link totally random. There should be no link at all there.
Hi, I′m having this problem as well. No Domain Mapping under Tools, and if I enter a domain under superuser > Settings > Domain, then it just dissapears and nothing happens.
I use the lastest version of WordPress and I also tried your method, disabling the plugin, updating to developer version and then network activating it again. Didn’t change anything.
Anyone else got a take on this?
Ok, thank you for the advice. To bad it has to be such a hassle to work with multisite.
I got a few more questions if you don′t mind:
The page is going live in the main language first. Would it be better or worse to develop a single wordpress install site first, and when that page is live, upgrade to multisite and add the other language versions? Is it hard to make an existing single install into a multi install? Or should I prepare and work from a multisite perspective from the beginning?Not sure how I can easily show my client my work progress if I develop locally. Is there any alternatives?
If I get access to their current homepage′s server and ftp, can I develop it there in any way without ruining their current page? And then “launch” it somehow?
Not sure what you mean by install locally in therealdomain.loc? Could you elaborate on this? How do I do this, why is it much easier to move etc?
The guide says “If you’re simply moving to a new server with the same domain name, you can copy the files and database over, exactly as you would a traditional install.” So I guess this is what you are refering to?
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] semantic.gs – getting px instead of percentageOh never mind that, I had my grid inside a fixed size wrapper. Anyway, the lessc.inc.php I linked to on github takes care of this problem.
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] semantic.gs – getting px instead of percentageI replaced lessc.inc.php with the most recent version that I found here: https://github.com/leafo/lessphp/blob/master/lessc.inc.php
Now when I check the css, it shows in percentage. However the grid is not fluid, and checking ‘calculated styles’ it is somehow still calculated in px.
Strange???!
Forum: Plugins
In reply to: [Featured Image Column] [Plugin: Featured Image Column] 1.6 does not workI get this error as well :/
I got the same problem aswell, on a fresh install, the documents tab shows up but the link doesnt work. 404. Did anyone solve this yet?
Forum: Themes and Templates
In reply to: remove space between header and nav barThe space originates from the div with class=”only-search with-image”, which has an inherited line-height of 1.625. If you are not intending on using the search form then set this div to display:none instead of #searchform.
Forum: Themes and Templates
In reply to: Clickable bacground CSS [Link from bg]I dont think you can make the background clickable. But you can make a link on top of your background an give it the same width and height as the element below it, but you put no graphics or text in it.
Forum: Fixing WordPress
In reply to: Category heading to display only if there are posts in the categoryThanks! I got it to work. It makes sense when I see it but I′m not familiar enough with wordpress and php to always figure it out by myself.
Looks like this now:
...if( $my_query->have_posts() ) { ?> <div class="grid_24">Portfolio</div> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
Issue resolved! ??
Forum: Fixing WordPress
In reply to: Category heading to display only if there are posts in the categoryHere is the code. Its two near identical loops where only the category is different. You can see there is a div with the name on the category above each loop. I put it outside the loop because if I put it first in the loop, it would repeat the category title for each post.
My problem is that I dont want the category name there if there are no posts in that category.
Thanks for helping.