ethanpil
Forum Replies Created
-
Forum: Plugins
In reply to: [Links With Icons Widget] Support for HTTPSI just uploaded v1.1 which should solve this problem. It lists the images links without the protocol which is standard procedure these days with CDNs, etc. Should have done it to start..
Please let me know if you have any trouble.
Forum: Plugins
In reply to: [Links With Icons Widget] Plugin not working on Genesis Child ThemeCan you send me the demo link? I will take a look. I have not worked with Genesis child themes before…
Forum: Plugins
In reply to: [Admin Columns] cpac_get_column_value_custom_field won't fireHey, I read through the sourcecode and was able to figure this out for 2.x. Too bad the developer is too tired to update the docs, as the code is already in place. Here what works for me on CAC 2.x:
function cpac_birthday_to_age( $value, $id, $cac ) { $post_type = 'people'; $custom_field = 'birthday'; if ( ($cac->storage_model->key == $post_type) && ($cac->options->field == $custom_field) ) { $age = substr($value,6,4); $today = date('Y'); $age = $today-$age; $age = "(".$age.")"; $bday = date('F j, Y', strtotime($value)); $value = $bday." ".$age; } return $value; } add_filter( 'cac/column/meta/value', 'cpac_birthday_to_age', 10, 5 );
My point is simply that sometimes I want to use a UI to generate CPT (there are many plugins for this, many even generate the PHP export). Especially if it auto calculates the labels, etc.
This way I can play with all the settings until I get it right in terms of all the CPT options before moving to code. UI is more fun…
I think the UI here is the sleekest for this function (besides the -onomy bonus) and I am simply hoping you consider the idea of PHP export. ??
Thanks!
Rachel,
I know how to use register_cpt_onomy()… ??
The point is if I already created something with the plugin, it could generate the PHP for me to paste into my code…
Thanks again.
Forum: Plugins
In reply to: [Gravity Forms Reject Disposable Emails] Feature RequestThanks, I will look into adding it. Or perhaps I can make it a separate plugin…
Forum: Plugins
In reply to: [WooCommerce] Advanced Product FiltersHey everyone, I just found this plugin, which seems like it does the trick pretty well… (I did not write it and I have no association aside from being a customer.)
Forum: Plugins
In reply to: [WooCommerce] Advanced Product Filters+1 On this. I would pay up to $99 for lifetime upgrades and unlimited client license…
FYI, I am an experienced WP Dev. I would be interested in partnering with you on this if you need help. Please contact me via email.
you can find me at storemachine.comForum: Plugins
In reply to: [Event Calendar] Update from Beta – just checking before I doWill the new version have the mini calendar widget? ??
Forum: Plugins
In reply to: [Event Calendar] Ajax Event Calendar minicalendar widgetGreat news, Eran, could you, please, post the link to this article when you have done? I’d like to test it.
Yes! I am also eagerly anticipating this feature!
Forum: Plugins
In reply to: [Event Calendar] Version 0.9.9 (In progress) Feature ListDon’t mean to be a pest, but if I can request one more thing before I am thrown out of the room:
The ability to dynamically load a custom css file if it exists in the theme folder… ajax-event-calendar.css
this way we can override the default styles and retain the mods upon plugin updates this is similar to a lot of plugins techniques…
Forum: Plugins
In reply to: [Event Calendar] Version 0.9.9 (In progress) Feature ListHow about a widget to display a mini calendar with active dates highlighted, as opposed to a list of events?