akis
Forum Replies Created
-
I’m using Photon from Jetpack, could that be the reason?
Thanks.
Great stuff, thanks a lot!
For a future version, if it is possible to check the part number so users can’t add part 15 of 10 (total) for example.Are you sure that the only fix from the dev version is the variable name change from
$ispublishedto$is_published?Default theme, tried both published and draft.
I have installed the plugin locally just an hour ago.Weird stuff 🙂
*Tried also in different browsers.Yes, I am using the latest version of WordPress and Organize series and I’m also testing locally where there’s no plugin besides yours.
I have added
$('.series_post_id').val(id);inside inline-series.js and now the series_post_id post value is correct but the problem persists.Thank you for your reply.
I completely understand the bulk-edit part, is not required at all but can make things a bit faster.About the quick-edit, nothing related to Organize series is saved when I press the Update button and the variable name change from the other thread doesn’t seem to fix it.
Sorry for my english, by the way, and thanks again for your time.
—
Some more details: series ID is correct, but the series_post_id is empty so probably the data is saved somewhere but not correlated with the post id.
...&post_series=14943&series_part%5B14943%5D=1&series_post_id=&...Forum: Networking WordPress
In reply to: Why WP Multisite force /blog slug? How to remove it?Thank you metoo55.
You’ll have to remove remove utf8_decode() and utf8_encode() from
/inc/wpseo-functions.php line 156'%%excerpt%%' => ( !empty( $r->post_excerpt ) ) ? strip_tags( $r->post_excerpt ) : substr( strip_shortcodes( strip_tags( $r->post_content ) ), 0, 155 ),Forum: Themes and Templates
In reply to: Menu 3.0 not working with 'no sidebar' templateForum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?Hah, I’ve just added a $i count in while and break after six.
Kinda ugly but seems to work.Thank you so much for your help, t31os.
Forum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?Thanks.
I forgot to say that this is just a small part of homepage (multiple query_posts, etc). Anyway, it seems to work well but for some reason posts are limited to 5.Added
$query->set( 'posts_per_page' , 6 );
Now it displays 6+x sticky posts. I don’t really understand why it counts sticky posts separately.Forum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?Sorry for the delay, still doesn’t work.
Using an array for posts_per_page seems to disable the sticky behaviour.What I really want:
– I’m showing six posts from Blog category on homepage (ordered by date)
– Here, I want to promote (give priority) to some old posts (from the Blog category)Any ideea how to achieve this?
Forum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?For some reason now it displays posts only from the first category (Blog).
Forum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?It seems that using this query, sticky posts are displayed fine but the showposts count no longer works, it displays 6 normal posts + x sticky posts. Do you have any ideea why?
<?php query_posts("showposts=6&".array('category__in' => array($sixt_id))); ?>Forum: Fixing WordPress
In reply to: Sticky posts doesn’t work on query_posts?My code displays last six posts from those 3 categories.
If possible, I want to show posts from Featured category first. Featured may contain posts from Blog and other categories.