Osclass Support Forums

Osclass plugin support => Seo Plugins => Topic started by: Ghany on June 20, 2016, 10:09:21 PM

Title: meta options was not hiding in item post page
Post by: Ghany on June 20, 2016, 10:09:21 PM
meta options was not hiding in itempost page please check what is the exact issue, thank you
Title: Re: meta options was not hiding in item post page
Post by: Ghany on June 21, 2016, 09:26:05 PM
hello any one there here?
Title: Re: meta options was not hiding in item post page
Post by: MB Themes on June 21, 2016, 09:27:11 PM
@Ghany
There is nothing that could be answered.
Please read how to submit problem:
http://forums.mb-themes.com/all-in-one-seo-plugin/general-rules-2/ (http://forums.mb-themes.com/all-in-one-seo-plugin/general-rules-2/)
Title: Re:[ERROR] meta options was not hiding in item post page
Post by: Ghany on June 21, 2016, 09:30:13 PM
NOw what i want to do? you need a URL ? check this http://classibook.com/item/new
Title: Re: meta options was not hiding in item post page
Post by: MB Themes on June 22, 2016, 08:28:06 AM
@Ghany
Try to place following code to your item-post.php
Code: [Select]
<script type="text/javascript">
$(document).ready(function(){
  $("#seo_table").hide();
  $('#show_hide_seo').click(function(){
    if($('#show_hide_seo #ic').attr('class') == 's-minus') {
      $('#show_hide_seo #ic').addClass('s-plus').removeClass('s-minus');
    } else {
      $('#show_hide_seo #ic').addClass('s-minus').removeClass('s-plus');
    }
    $("#seo_table").slideToggle();
  });

  $('#show_hide_seo').click();
});
</script>