Okay
  Public Ticket #2226068
about organizer text
Closed

Comments

  •  1
    romain started the conversation

    Hello
    Is it possible to have return to the line ( < br > ) in the short description text for oraganizers ?
    For now, all the text is very compacted...

    In 'stec_organizer' page...

    Thanks 

  •  783
    Zhivko replied

    Hi,

    Could you provide me with wp-admin to check it out since the page is in maintenance mode.


    Stachethemes Developer

  •   romain replied privately
  •  783
    Zhivko replied

    Go to Dashboard -> St. Event Calendar -> Fonts & Colors -> Custom style tab and add following css:

    .stec-page-organizer .stec-page-organizer-person-about {
         line-height: 2.2 !important;
    }

    This will increase the spacing between lines.


    Stachethemes Developer

  •  1
    romain replied

    Thanks for answer.
    But that does not answer my question. The description field appears to be raw (plain) text.
    I can't even do a line break. 
    And neither insert a simple html like ...

     <b>, <i> or <br>
    

    So the layout is not smart...

    Any alternative please ?

  •  783
    Zhivko replied

    Open file: stachethemes_event_calendar\assets\php\o.organizer.php on line 147

    change:

    $this->details = sanitize_textarea_field($details);

    to:

    $this->details = $details;

    After this change you should be able to insert html tags.


    Stachethemes Developer

  •  1
    romain replied

    Ok, thanks for this answer, and sorry for delay.

    Alone, this modification doesn't work.
    I must modify /stachethemes_event_calendar/view/front/pages/organizer.php at line 25 :

    ... echo($organizer->get_details())...

    Is there a way to insert this in my child theme, or all will go away at next update... ?
    Thanks

  •  783
    Zhivko replied

    It will go away and will be replaced with different filter that will allow html content.


    Stachethemes Developer

  •  1
    romain replied

    Ok thanks