*

Ghany

  • ****
  • 227 posts
meta options was not hiding in item post page
« 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
Unlock the power of visibility without breaking the bank - https://www.adycart.in/

*

Ghany

  • ****
  • 227 posts
Re: meta options was not hiding in item post page
« Reply #1 on: June 21, 2016, 09:26:05 PM »
hello any one there here?
Unlock the power of visibility without breaking the bank - https://www.adycart.in/

*

MB Themes

Re: meta options was not hiding in item post page
« Reply #2 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/
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Ghany

  • ****
  • 227 posts
Re:[ERROR] meta options was not hiding in item post page
« Reply #3 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
Unlock the power of visibility without breaking the bank - https://www.adycart.in/

*

MB Themes

Re: meta options was not hiding in item post page
« Reply #4 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>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots