Tobias Schutter
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Please add this code for the date parsingAfter checking out the different format I got it reproduced, with the @ symbol. I will apply your fix. Thanks for the help.
Forum: Plugins
In reply to: [Admin Columns] Please add this code for the date parsingI tried it with ACF 4.1.8 datepicker field, but it seems it stores it’s dates as “yyyymmdd”. Is there a setting in ACF I overlooked? I really would like to reproduce this.
Forum: Plugins
In reply to: [Admin Columns] Export settingsAdmin Columns 2.0 release date is a week from now.
Forum: Plugins
In reply to: [Admin Columns] Please add this code for the date parsingI already got something in place to catch any unixtimestamp, but when will a date be 13 length long, could you give me an example?
Forum: Plugins
In reply to: [Admin Columns] Taxonomies listed 3 times in control panelIt could be due to how you register your taxonomies, because they should not be showing duplicates.
About the issue of having so many taxonomies, I think you will be glad to hear I have fixed this in the upcoming release. It’s currently in beta, so I expect it to launch within 2 weeks.
This new version will let you add columns one by one, instead of showing all available columns.
Forum: Plugins
In reply to: [Admin Columns] Can'add Custom Fields on Custom Content TypeCustom Fields are supported by Admin Columns for all custom posttypes.
It seems you either haven’t made any posts of that posttype yet. Or the posts does not contain custom field data yet. They only show up in Admin Columns when your website has custom field data available.
Forum: Plugins
In reply to: [Column Shortcodes] borders around columnsThe easiest way to solve this would be to add your own class to the shortcode, like so:
[one_half_last class="noborder"] My content. [/one_half_last]This will enable you to target this specific column by it’s class and remove it’s border.
.one_half_last.noborder { border: none !important; }Forum: Plugins
In reply to: [Column Shortcodes] borders around columnsYour CSS does not validate. Try the following:
.one_half { font-size: 85% !important; width: 49% !important; margin-right: 2% !important ; border-style: solid !important; border-width: medium !important; border-color: #333 !important; }Forum: Plugins
In reply to: [Column Shortcodes] Disable OptionsIn version 0.6.1 I have added the option to hide shortcodes for your users.
If you would like to hide certain column from the menu; place the following in your functions.php
function hide_column_shortcodes( $shortcodes ) { /* uncomment ( remove the '//' ) any of the following to remove it's shortcode from menu */ // unset( $shortcodes['full_width'] ); // unset( $shortcodes['one_half'] ); // unset( $shortcodes['one_third'] ); // unset( $shortcodes['one_fourth'] ); // unset( $shortcodes['two_third'] ); // unset( $shortcodes['three_fourth'] ); // unset( $shortcodes['one_fifth'] ); // unset( $shortcodes['two_fifth'] ); // unset( $shortcodes['three_fifth'] ); // unset( $shortcodes['four_fifth'] ); // unset( $shortcodes['one_sixth'] ); return $shortcodes; } add_filter( 'cpsh_column_shortcodes', 'hide_column_shortcodes' );Forum: Plugins
In reply to: [Column Shortcodes] Server is Blocking Me!Thanks for reporting it.
I looked it up and indeed in some cases the cookie.js gets rejected by mod_security.
The cookie is used to store the padding values. That way you will not need to re-enter the same padding values when you are selecting a new column shortcode.
I have beta version ready here with a fix:
https://github.com/codepress/column-shortcodes/archive/master.zipPlease try it out, and let me know if it works for you.
Forum: Plugins
In reply to: [Column Shortcodes] Why is this not working?I can not reproduce your issue here.
Could you send me a link to a seperate page where you use column shortcodes plugin with the mentioned shortcodes above. I will have a look to see what’s wrong.
I tested it in Firebug… it will work. But your theme does not use style.css it seems.
Try putting it in base.css.
#system .one_fifth h4, #system .one_fifth p { text-align: center; }Try some basic CSS for a quick solution. Add this to your style.css:
#system .one_fifth h4, #system .one_fifth p { text-align: center }Forum: Plugins
In reply to: [Column Shortcodes] Possible to disable this plugin for mobile devices?No problem =) Thanks for taking the time to rate it.
Forum: Plugins
In reply to: [Column Shortcodes] Center text within columnsMake sure the content inside a shortcode is surrounded with two blank lines. Then you can just select the text and center it with the center button.
Like so:
[one_half] center this text [/one_half][one_half_last] center this text [/one_half_last]This is because TinyMCE will add a “style=text-align: center” property to the text paragraph elements.