Ivan

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: sync wp users with organizers #1257166
    Ivan
    Participant

    Hi, so yes… I export a csv (https://docs.google.com/spreadsheets/d/1iXAZD746rwDzR2z7UkMcgjg-Lq0JvJGUYSLCSmPSJ2Y/edit?usp=sharing) from my wordpress users, but when I upload it to import them as organizers, and I “pair” the columns I have two coulmns from the csv file (first name and last name), but the plugin pairing options only give the option “nome organizzatore” (that would be “name of the organizer”), as you can see in the screenshot.

    • This reply was modified 9 years, 1 month ago by Ivan.
    in reply to: sync wp users with organizers #1256612
    Ivan
    Participant

    Thanks fot the answer. One more thing… when I export from wordpress the csv, I have First Name and Last Name, but when I import in organizers I can only import a fullname… is there a way to import to “columns”?

    in reply to: italian translation issue #1253221
    Ivan
    Participant

    Hi, so thanks a bunch for the support. Loco was really a great solution I did’nt knew about. I also discovered that while the .mo file was ok, the .po file in the server was blank empty.. so that was the reason many things were not translated or mixed up.

    anway I translated many of the untranslated things, so I attach to this post the zip file with the mo and the po in italia, as a contribute to the community, hope it helps.

    in reply to: italian translation issue #1252514
    Ivan
    Participant

    Hi, but in the po file I see the words translated correctly…

    anyway… here are the transaltions:

    evento title is titolo dell’evento
    evento descrizione is descrizione dell’evento
    evento categories is categorie dell’evento
    evento image is immagine dell’evento
    evento time & date is data ed ora dell’evento
    dettagli luogo is ok
    select or create a luogo is seleziona o crea un luogo
    dettagli organizzatore is ok
    add another organizzatore is aggiungi un’altro organizzatore
    evento website is sito web dell’evento
    evento cost is costo dell’evento
    Leave blank to hide the field. Enter a 0 for eventi that are free. is lascia lo spazio vuoto per nascondere questo campo. Scrivi 0 per gli eventi gratuiti.

    could you send me the right translation file please?

    in reply to: default category from frontend #1239796
    Ivan
    Participant

    This reply is private.

    in reply to: default category from frontend #1238115
    Ivan
    Participant

    This reply is private.

    in reply to: default category from frontend #1234773
    Ivan
    Participant

    done, but is not working, I still see

    in reply to: default category from frontend #1234080
    Ivan
    Participant

    I don’t actually know what to do… I can read css, but don’t really know how to code… I tried putting the code in the themes css, in the plugin css… but is not working… can you explain me better in wich file I have to put the code?

    in reply to: default category from frontend #1233426
    Ivan
    Participant

    thanks for the answer… but it does not totally solves my problem… because users can still uncheck the default category and choose another… is’nt there a way yo not show the category selection in the frontend form and make it autoselect only the default one?

    thanks!

    in reply to: default category from frontend #1232707
    Ivan
    Participant

    So, I found this thread in the forum https://theeventscalendar.com/support/forums/topic/exclude-a-category-from-community-events-form/

    that seems to solve the problem I have… but I don’t understand in wich file I have to put the code

    <?php
    add_filter( 'get_terms_defaults', 'community_events_remove_category_option', 10, 2 );
    /**
     * Prevent specific categories from displaying as options in the Community Events Submission form
     * 
     * Subsitute the IDs of the categories that you would like to exclude from the array on line #16  below
     */
    function community_events_remove_category_option( $defaults, $taxonomies ) {
    	if( ! in_array( 'tribe_events_cat', $taxonomies ) )
    		return $defaults;
    	if( tribe_is_event_query() )
    		return $defaults;
    	$defaults['exclude'] = array(4);
    	return $defaults;
    }
    Ivan
    Participant

    ok, thanks for the answer… but is not really what I need, and I don’t think we can afford custum development.

    thanks anyway!

    (i opened a new thread for the other issue)

Viewing 11 posts - 1 through 11 (of 11 total)