antropomorfic
Forum Replies Created
-
Forum: Plugins
In reply to: [Fixed Widget and Sticky Elements for WordPress] sidebar widget layout brokenI have exactly the same problem, in safari the widget moves like 200px to the inside of the page. “Inherit width from parent container” is disabled!
any idea?
thanks in advance!
Forum: Plugins
In reply to: [WordPress Popular Posts] popular post tagged with a specific tag?this feature would be great, I really need to show the most popular posts by tag. I’m trying to use less categories and give more use to the tags system. Hope to see it in a future update! thanks!!
since the last update (1.64) it started to work again perfectly, at least for me… Thanks Lester!
The same happens to me. Everyone can see the views count. I think that since the last update…
Forum: Plugins
In reply to: [Instagram for WordPress] Still unable to loginForum: Fixing WordPress
In reply to: Fatal Error – Allowed Memory Error – update.phpHi,
can you share how you solved your problem!?
since I’ve updated to 3.4 this error is constantly appearing:
” Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 71 bytes) in /wp-includes/cache.php on line 508 “
thanks!!
And would be also cool to get the time that’s left to the begin of the event!
Forum: Networking WordPress
In reply to: Is it possible to get blog info from other MU on same domain?yap it works!! but there’s always a problem….. =/ can’t get/show the avatar of the blogger now…going to explore a little bit more!!
Thank you Andrea!Forum: Networking WordPress
In reply to: Is it possible to get blog info from other MU on same domain?That’s a very good idea, but the problem is that I can only fetch the feed from one blog/site… And I only want to get the last post from all the blogs in the network…
After all I just want to puth the blogs that exist at the moment and a link to it… I think that for now the only easy way to do this is to put the blogs from the network manually on “example.com”… =/
Thanks!!!
Forum: Networking WordPress
In reply to: Is it possible to get blog info from other MU on same domain?Yap, I imagine so.. but it isn’t on the same db… it’s two WP installations in 2 different folders and with different db… =/
I already do it easily on the WP multisite (main blog and in all network)
I have this kind of installation with a single and multisite because I couldn’t have the permalinks I wanted to.
I wanted to have my main blog on example.com and the network, other blogs, on example.com/example/site1 as I couldn’t have it I’ve made this kind of installation, the problem is that I want to show stuff from the network on the main (single) blog and I can’t… On the next version of WP is it already possible to change the permalink as I refered before? example.com (main) and other blogs on example.com/example/site1 ??? =/thanks!!!!
Forum: Networking WordPress
In reply to: how to create sites in a different folder than /thank you ppl!!!
just finished installing and it works perfectly!!!Forum: Networking WordPress
In reply to: how to create sites in a different folder than /I’ve changed the wp-config.php
on this places:$base = ‘/blogs/’;
define( ‘PATH_CURRENT_SITE’, ‘/blogs/’ );
and on .htaccess changed
RewriteBase /blogs/
but it doesnt work =/
thought it would be easier…Forum: Networking WordPress
In reply to: how to create sites in a different folder than /thanks for the answer!
But I want my principal site to be example.com/
and the sites created for other users on example.com/blogs/site1
=/
thanks
Forum: Themes and Templates
In reply to: how to load all posts in the single.phpCan anyone help me with this??=/
Im trying on the single.php to show the content of the post and to load all posts next to date of the post that Im in!
I think that I have to query all posts to search for those that the date is equal or next to the date of the post that Im in. =/ can anyone help??
now my code is like this:
<?php query_posts(‘order=post_date&order=asc’) ?> //the condition that I have to change! =/
<?php
<div id=”sort”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”box”>
<?php the_content(”); ?>
<div class=”aDate”><?php the_time(get_option(‘date_format’)); ?></div>
</div>
<?php endwhile; endif; ?>
</div>thanks
Forum: Themes and Templates
In reply to: how to load all posts in the single.phpHi @nivovas ;D
on my page the index shows all posts, the single shows the post and the posts after the date youre in. (Im still on it) Can’t query the condition to get all the posts with the post_date bigger or equal to the post Im in! something like that…
So the single calls the content of the post to one div and the rest of the posts to another div basically (for this one the code is above)!
for what I saw on your page if you just want to show a bigger image on that div at top you can use javascript, dont know the code for it right now but you can find it easily…
and if you want to show the content of the post in your main page, I dont have a clue! =/