Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/plugins/avatarep.php on line 1102

Deprecated: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated in /var/www/mybb-es.com/html/inc/class_language.php on line 201
Ajax en mi foro
Páginas (2):    1 2
Jesam   30 Oct, 2012, 11:13 pm
#11
Re-sube tu theme nuevamente, deseguro moviste o eliminaste algo por error.
Angelshitho   31 Oct, 2012, 10:01 pm
#12
tuve el mismo problema (hace momentos) y es por el jQuery & Prototype de mi plugin (My ImageBox) Tongue
edita esto:
Código PHP:
<?php 
<script type="text/javascript">
$(
document).ready(function(){
$(
".myimage").fancybox({ });
});
</
script>
por esto:
Código PHP:
<?php 
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($)
{ $(
'.myimage').fancybox({ }); });
</
script>
O usa la nueva version:
http://www.mybb-es.com/hilo-plugin-myimagebox

Igual esto puede pasar en varios scripts en jQuery, añade
Código PHP:
<?php 
jQuery
.noConflict();
para evitar problemas.
Perdon, si demore.
Última modificación: 31 Oct, 2012, 11:58 pm por Angelshitho.
Páginas (2):    1 2
  
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.