pmsadmin
Forum Replies Created
-
Forum: Plugins
In reply to: [360 Product Rotation] Browser issues?Yes, iframe=false does not work.
Forum: Plugins
In reply to: [SlimStat Analytics] Screen Resolution in the Activity Log?Ok, thanks.
Forum: Plugins
In reply to: [SlimStat Analytics] Cannot scrollI’m not able to scroll down the 3.5.1 right now / activity log on my Windows Phone 8 with mobile IE10 no more. Just in case that it’s a supported device.
Uuups, of course, it’s fixed. Tnx.
On my test system with 3.5 and a reference system with 3.4.1, there I can reliably reproduce the issue with a browser behind a proxy.
Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenStrange, I just switched back to the original code – and I loose the menu order.
But look to the code of suffusion-child-pages.php,
There’s a branch by using the list style and something other.
And with the list style you get the default “menu_order”.
Just try to change that…The parameter has to be sort_column and not order_by:
$page_args = array(
// changed by me from order_by to sort_column
// ‘order_by’ => $order_by,
‘sort_column’ => $order_by,
[…]
);
[…]
if ($post_style == ‘list’) {
$pages = wp_list_pages($page_args);
if (!$show_if_empty && trim($pages) == ”) {
return;
}
}
else {
$page_list = get_pages($page_args);
if (!$show_if_empty && count($page_list) == 0) {
return;
}
}And codex says:
<?php wp_list_pages( $args ); ?>
Default Usage
<?php $args = array(
[…]
‘sort_column’ => ‘menu_order, post_title’,
[…]
); ?><?php get_pages( $args ); ?>
Default Usage
<?php $args = array(
[…]
‘sort_column’ => ‘post_title’,
[…]
);Forum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenShure, why should you have problems?
It’s only related to sort subpages, e.g. by “menu order”.
Does that work for you?Forum: Plugins
In reply to: [ImageMapper] Breaks drop-down-menus (jQuery)Yes, there were no issues after deactivating Accordion Image Menu.
And I think, I should preserve that state anyway.Thanks for investigating that
MartinForum: Themes and Templates
In reply to: [Suffusion] widget "child pages" order_by brokenIf that makes you happy – okay, did it. ??
I was using 1.1.1.1.
Did not reproduce with 1.1.2 as release in between.
So it’s indeed resolved, thanks a lot.