*

RP

  • ***
  • 38 posts
Dear,

I think there is a bug in the theme, the default language must be selected for the title and description should be the language selected previously by the user, ie the language of the theme. this is true?

I remain at your kind comments

regards

Note. Annex find some pictures with explanations
« Last Edit: June 13, 2016, 07:02:52 AM by RP »
I love to share http://www.koohala.com :) 8)

Marked as best answer by RP on June 13, 2016, 09:36:41 AM
*

MB Themes

Re: change the default language in the publication of a listing
« Reply #1 on: June 13, 2016, 08:32:54 AM »
@RP
Nice tip, place following code to your item-post.php, should work:

Code: [Select]



  <script type="text/javascript">
    // Set forms to active language
    $(document).ready(function(){

      var post_timer = setInterval(zara_check_lang, 250);

      function zara_check_lang() {
        if($('.tabbertab').length > 1 && $('.tabbertab.tabbertabhide').length) {
          var l_active = $('.tabbertab.tabbertabhide').find('h2').text();
          l_active = l_active.trim();

          $('.tabbernav > li > a:contains("' + l_active + '")').click();

          clearInterval(post_timer);
          return;
        }
      }

    });
  </script>

  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

RP

  • ***
  • 38 posts
Re: change the default language in the publication of a listing
« Reply #2 on: June 13, 2016, 09:02:19 AM »
Thank you so much for your help, I appreciate it much.

Only I would like to complete this work with 5 star and for that I just need to know how you can make the first tab, the tab is the default language.?

Thanks
« Last Edit: June 13, 2016, 04:17:16 PM by RP »
I love to share http://www.koohala.com :) 8)

*

MB Themes

Re: change the default language in the publication of a listing
« Reply #3 on: June 13, 2016, 09:17:48 AM »
@RP
You cannot, osclass orders it alphabetically.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots