amaunsworth
Forum Replies Created
-
thank you! i hid the country dropdown and it worked.
Can i add the quick pay button to any form/page/post? and can i customize a price each time i use it?
Easy PayPal Custom Fields allows me to add a paypal button to a page and/or post.
if the default is Canada in the drop down, then why is it needed? Canada is already selected? if i have to put it there, then how do i remove all other countries?
looks like ‘Easy PayPal Custom Fields’ was the culprit. i need this plugin though, how can i get around this?
also, i removed Country from the submission form, but i keep getting ‘The country is required’. CANADA is the default country so why am i getting this error? and how can i fix this?
forgot to post my link
i closed this and shouldn’t have. after submitting an event, i get
You don’t have permission to do that!
now i do and it works. thank you!
never mind, the latest update fixed my problem.
hi there,
the event-editor.php is very confusing for me. i don’t see a style attached to any of the textfields aside from NAME of event and one textarea, but when i look at the source code i see that each DO in fact have one. for example the FROM field:<input id=”dp1368806033778″ class=”em-date-start em-date-input-loc hasDatepicker” type=”text”></input>
But in the php page it looks like this:
<?php
if( empty($EM_Event->event_id) && $EM_Event->can_manage(‘edit_recurring_events’,’edit_others_recurring_events’) && get_option(‘dbem_recurrence_enabled’) ){
em_locate_template(‘forms/event/when-with-recurring.php’,true);
}elseif( $EM_Event->is_recurring() ){
em_locate_template(‘forms/event/recurring-when.php’,true);
}else{
em_locate_template(‘forms/event/when.php’,true);
}
?>how do i apply a style to this php code? please help!
never mind… i see class=>em-events-search-category for the category drop down.
so, there is no actual “em-events-search-category” style, i have to create one in my style sheet?
ok thank you.
i am not a programmer so i am having trouble adding styles to fields and drop downs that are not obvious form elements like a textfield or dropdown. i tried to add a class/ style to the category drop down and i kept getting an error. the category drop down in the events-search.php file is in between <?php> code. i don’t see a form element there so that i can add class=”” or style=””. how can i apply a style?
<?php
$selected = !empty($_REQUEST[‘category’]) ? $_REQUEST[‘category’] : 0;
EM_Object::ms_global_switch(); //in case in global tables mode of MultiSite, grabs main site categories, if not using MS Global, nothing happens
wp_dropdown_categories(array( ‘hide_empty’ => 0, ‘orderby’ =>’name’, ‘name’ => ‘category’, ‘hierarchical’ => true, ‘taxonomy’ => EM_TAXONOMY_CATEGORY, ‘selected’ => $selected, ‘show_option_none’ => get_option(‘dbem_search_form_categories_label’), ‘class’=>’em-events-search-category’));
EM_Object::ms_global_switch_back(); //if switched above, switch back
?>Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Submit an Eventit’s actually called: event-editor.php
it’s in the templates > forms folder.