pixow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to add custom fieldthank you chinmoy29!, the problem was with the Newsletter plugin. Now I’m trying to find the bug… 🙂
Forum: Fixing WordPress
In reply to: Unable to add custom fieldHello,
I have the same problem in WP 3.0 .
The “Add field” button does nothing when I click it… but the field is saved. It seems to be a javascript problem, any idea??Ok,
I will try it.
thanks!
hello,
I think we are talking about diferent things… 😉
I have the problem on the admin side. When I add a event box in the new custom post type screen, the button to show the calendar to select a date isn’t showed… but all is right by the normal posts….
I’ve installed 3.2.beta2 and the same problem occurs… 🙁
Hello!
first, thanks for your reply!
I am using version 3.1.4, and I think it’s not possible to add this parametters… it doesn’t use the WP_query 🙁
I could try to install the 3.2beta2 but I’m not sure if it’s working right. Have you tested it?
thanks!
Forum: Plugins
In reply to: Events calendar plugin and custom post typesHi geoill,
You should add it inside the addEventBox() function. Something like this:
public function addEventBox( ) { add_meta_box( 'Event Details', __( 'The Events Calendar', 'Events_textdomain' ), array( $this, 'EventsChooserBox' ), 'post', 'normal', 'high' ); add_meta_box( 'Event Details', __( 'The Events Calendar', 'Events_textdomain' ), array( $this, 'EventsChooserBox' ), 'Viatges', 'normal', 'high' ); }I hope it helps!
Forum: Plugins
In reply to: Events calendar plugin and custom post typesYou can try adding this line in addEventBox() function on plugins/the-events-calendar/the-events-calendar.class
add_meta_box( 'Event Details', __( 'The Events Calendar', 'Events_textdomain' ),array( $this, 'EventsChooserBox' ), 'your_custom_type_name', 'normal', 'high' );It will enables the ‘Events chooser Box’ in your custom type post.
I hope it helps!
Forum: Plugins
In reply to: Events calendar plugin and custom post typesHello!
I’m looking for the same kind of calendar. Maybe ‘The Events Calendar’ plugin could be adapted. I will try.
🙂