lukehm
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] Permalink/redirect issueI’m afraid I moved away. Found it easier to build my own custom post type and used jquery fullcalendar. Gave me more flexibility
LI wondered this too.
I know hoe to do this with my own map.
Is it possible to style the map created by CGMP by adding some inline js?
Many ThanksYes Thank you. Works for me too.
should I create new WP_Query then?
The Query is on a custom page template called milestone.php do I need to do any thing with
private function archive_supports_infinity() {
return (bool) apply_filters( ‘infinite_scroll_archive_supported’, ( is_home() || is_archive() ), self::get_settings() );
}As it is not an archive page
Many Thanks
LukeAn interesting thought. But no I have no sticky posts
LYes I did I had to set both reset and base urls see docs
https://github.com/scribu/wp-query-multiple-taxonomies/wiki/Changing-URLs
LI agree with astockwell. If only it could inherit font size color and weight would be great.
Had to deactivate too.
Thanks Kathy
My sentiments exactly. Thats why your plugin is so useful. Clients can do the most unexpected things. Thanks for all you are doing to help.
Hi
I deactivated most plugins that could affect it. Its Codepress Admin Columns. Really quite a useful plugin for tiding up for clients. I don’t have a problem running both at the same time it just causes a couple of interface glitchs. Nothing the client would see.
Best
Lukeadd_action( ‘init’, ‘create_gi_cpt’, 0 );
function create_gi_cpt()
{
register_post_type(‘gi-works’, array(
‘label’ => ‘Works’,
‘description’ => ”,
‘public’ => true,
‘show_ui’ => true,
‘show_in_menu’ => true,
‘menu_position’ => 6,
‘capability_type’ => ‘post’,
‘hierarchical’ => false,
‘rewrite’ => array(‘slug’ => ‘works’,’with_front’ => false),
‘query_var’ => true,
‘has_archive’ => true,
‘supports’ => array(‘title’,’editor’,’thumbnail’,),
‘labels’ => array (
‘name’ => ‘Works’,
‘singular_name’ => ‘Work’,
‘menu_name’ => ‘Works’,
‘add_new’ => ‘Add Work’,
‘add_new_item’ => ‘Add New Work’,
‘edit’ => ‘Edit’,
‘edit_item’ => ‘Edit Work’,
‘new_item’ => ‘New Work’,
‘view’ => ‘View Work’,
‘view_item’ => ‘View Work’,
‘search_items’ => ‘Search Works’,
‘not_found’ => ‘No Works Found’,
‘not_found_in_trash’ => ‘No Works Found in Trash’,
‘parent’ => ‘Parent Work’,
),
) );// medium custom taxonomy
register_taxonomy(‘gi-works-medium’,array(‘gi-works’),array(
‘hierarchical’ => true,
‘label’ => ‘Medium’,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => array(‘slug’ => ‘medium’),
‘singular_label’ => ‘Medium’)
);
};functions.php at init
add_action( ‘init’, ‘create_gi_tax’, 0 );Version 1.0.1 all working well
Thanks
One for the wish list.
I view history on its own page under the dashboard
I’d really like to show more than 5 items at a time, any chance to add something in settings
Best