Mindshare Labs, Inc.
Forum Replies Created
-
Unfortunately this is not possible.
Yep I saw it, thanks. We’ll work on a fix as soon as we can.
Can you provide a link so we can check it out?
Forum: Fixing WordPress
In reply to: wp_nav_menu sort order?Well this works, but it seems inefficient:
add_filter('wp_nav_menu_objects', create_function('$menu', 'return array_reverse(array_reverse($menu ));'));I used array_reverse twice to get the order the way I wanted. It works using it only once for the opposite order:
add_filter('wp_nav_menu_objects', create_function('$menu', 'return array_reverse($menu );'));Put in your theme’s functions.php
Forum: Fixing WordPress
In reply to: wp_nav_menu sort order?I have the same issue. I think being able to reverse the order make good sense as well. I’ll post a solution if I find one.
This should be fixed in the latest version. The ribbon should now appear below the drop down menu. Let me know if you are still having the issue.
Forum: Requests and Feedback
In reply to: Stop Censorship Ribbon Breaks iPadThanks all. The ribbon on wordpress.org is NOT using our plugin so that’s a totally separate issue.
We’re working on another update to better position the ribbon if the wp_admin_bar is visible anyhow. should be released in the next 20 mins.
Forum: Requests and Feedback
In reply to: Stop Censorship Ribbon Breaks iPadI see… you are talking about the WP Admin Bar getting partially obscured right? We’ll release an update that only show the ribbon to logged out users. Let me know if that fixes your problem.
Forum: Requests and Feedback
In reply to: Stop Censorship Ribbon Breaks iPadWhat theme are you using? Can you post a URL to your site?
Awesome thanks for the help.
Hi fahdi, I’m sorry I just saw this post. I have added you as a committer for the plugin.
Thanks! I’ll update that file today.
Hi amereservant, any interest in forking this project with me and creating a version that’s updated regularly? I’ve also indicated that I’m happy to help maintain it if the author wants help… http://wordpress.org/support/topic/plugin-php-browser-detection-update-php_browscapini
In case anyone else is having issues with the way profile images are displayed after the last update I was able to style things the way we needed them quickly by swapping this code in my custom templates:
<?=$entry->getProfileImage();?>for this:
<img src="<?=CN_IMAGE_BASE_URL.$entry->getImageNameCard();?>" alt="<?=$entry->getName() ?>" height="200" />Also what happened to the documentation? We had made extensive use of the functions like getProfileImage() and now you’ve removed the documentation from the plugin and have not put it onto your site yet… very frustrating.