Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Column Shortcodes] Rename the shortcodesI have a fix ready for this, will include it in v0.6.
In the meanwhile you can get the beta from github: https://github.com/codepress/column-shortcodes
You can prefix the shortcode by placing the following in your functions.php.
add_filter( 'cpsh_prefix', 'set_shortcode_prefix' ); function set_shortcode_prefix() { return 'myprefix_'; // edit this part if needed }Forum: Plugins
In reply to: [Column Shortcodes] Return to single columnI will address this in the next update v0.6.
For the meanwhile you can add the following in the HTML/TEXT mode of you editor after the last column.
<div class="clear_column"></div>I already included it in our nightly build version, you can download it on github:
https://github.com/tobiasschutter/column-shortcodesFeedback is welcome 🙂
Forum: Plugins
In reply to: [Column Shortcodes] CSS shortcodes needs a lot of workThanks for taking the time to look into this. I will have a look at your CSS, and include it in the next patch.
Thanks!
Forum: Plugins
In reply to: [Admin Columns] Can't sort user columnThis has to do with the multisite installation, I will look into this.
Forum: Plugins
In reply to: [Admin Columns] Codepress Admin Columns fails to save fields stateI will have a look at this. Could you supply me with a list of plugins and posttypes you are using? You can also email me them at tobias@codepress.nl.
Thanks
Forum: Plugins
In reply to: [Admin Columns] allow filter for custom field on page viewAdmin Columns version 2.0 will be a major update with an improved API to add more extensions.
One of the extensions I am currently working on is the one for Filters.
A rough ETA would be a month from now.
I am also looking for beta testers. If you like to help me test, please let me know.
Hi Nike, contact me on info@codepress.nl, I will have a look.
@scott I was about to look into the issue myself, but you beat me too it 🙂 I am putting a lot of hours in the new version of Admin Columns, I will be testing for Pods aswell. As soon as I have a stable beta I will let you know.
Forum: Plugins
In reply to: [Admin Columns] Author Column not Sortable – Add-on PurchasedHi Paul, that was a new one for me. Apparently WordPress removed the sorting from it’s author column in the latest patch 3.5.
I looked it up on Trac: http://core.trac.wordpress.org/ticket/17141
What you can do is use the “Display Author As” column. It does the same as author with a bit more options. It’s also sortable with the addon.
Forum: Plugins
In reply to: [Column Shortcodes] Does this plugin support RTL sites?Thanks to you it does now! 🙂
Forum: Plugins
In reply to: [Column Shortcodes] Closing tag and iPhone 4S display issueCan you send me the URL of the website where you have this issue?
Forum: Plugins
In reply to: [Column Shortcodes] Having column of different widths in the same row?Yes, ofcourse, you can make any combination possible. So your example should work just fine with the current version.
Forum: Plugins
In reply to: [Admin Columns] Need Comment Count on Users PageNo, this data is not saved a custom field data. I will add a column for thos in the next release v1.5.
Forum: Plugins
In reply to: [Admin Columns] Filter an array through cpac_get_column_value_custom_fieldI was about to ask which field type you had selected, but you have figured it out. Sorry that it took you so long. On a good note, we are currently working on a Admin Columns website with documentation and examples 🙂
Forum: Plugins
In reply to: [Admin Columns] Can't sort user columnYour Column Heading is called ‘registered’, and internally this argument is reserved by the WP_User_Query. This conflicts with the sorting.
A very simple solution would be to rename your column, for example: “User registered”.
This should fix it.