Okay
  Public Ticket #2216775
Ajustement
Closed

Comments

  •  1
    Flexifiw started the conversation

    Hi I'm french, I translate with Google translate

    I just bought your plugin, it is very good, but I see some small problems :

    - Some buttons do not take the css style. Including the google import button with a different "hover", and the orange share button "send this event"

    - we can not remove some social links. For example, I want to keep what's app and remove viber

    - I translated the whole .po file into French, and there are translations not available in the .po file. It is especially disturbing when it is visible in front-end. Example: In the submission of an event. PS: Some translations have no effect

    - For Social Share Links, when you want to copy the link, there is a lot of clique to do. Echo "Link copied to clipboard", is too much. You have to write it in an insert or display it as a toast poster.  

    - There are slight visual problems. Example: When clicking on "Tickets", a popup is displayed. The title is too stuck to the period. The border of the Quantity field is displayed incorrectly when it takes focus. I have to do css.

    - Social networks of organizers and guests should open in a new tab of the browser. 

  •  783
    Zhivko replied

    Hi,

    Thanks for the feedback.

    I'll take a look at each issue and will try to fix it for the next update.

    Regarding the share buttons: it is possible to remove / add share buttons via a filter. 

    Example:

    // This filter removes viber button
    add_filter('stec-share-links', function($share_links){
        if (isset($share_links['viber'])) {
            unset ($share_links['viber']);
        }
        
        return $share_links;
    });

    Stachethemes Developer

  •  1
    Flexifiw replied

    Ok,

    The qr code appears automatically. It should be deactivatable.

    When we look at what the qr code contains, we arrive at a recapitulative in English, impossible to translate. The WP Bakery plugin is not included, the site is displayed with shortcode.
    The price of the ticket is displayed poorly. Indeed, "€" is superimposed on the "1" of 15.00.
     
    Ps: - "No ticked selected" is not translatable in the popup opened by the "tickets" button.


  •  783
    Zhivko replied

    Is it possible to provide me with link to the front-end to check for css conflicts?


    Stachethemes Developer

  •  1
    Flexifiw replied

    https://kibutech.fr/?task=stec_check_order_key&key=wc_order_dLZEU5c7Rfu5V

    By putting the width in mobile format, the price is displayed badly

  •  783
    Zhivko replied

    There's a typo in the css indeed. We'll fix in the upcoming version.

    Also since your header is fixed, a part of the order details page is hidden under it.

    To fix it now you can add in your custom styles following css:


    .stec-order-details {
    position: relative;
    top: 70px;
    } @media only screen and (max-width:400px) { 
    .stec-order-details {
    position: static;
    } .stec-order-details .stec-order-details-items .stec-order-details-item .stec-order-details-item-title span > span {
    position: static;
    }
    }



    Stachethemes Developer