Avisos
Vaciar todo

Política de Cookies: Quitar el JavaScript que bloquea la visualización de contenido

6 Respuestas
3 Usuarios
0 Reactions
582 Visitas
Respuestas: 151
Estimable Member
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Buenas tardes,

Estoy intentando optimizar mi web.
Y me he dado cuenta que da el plugin que tengo para la politica de cookies (GDPR
Cookie Consent) me da el siguiente problema:
"Quitar el JavaScript que bloquea la visualización de contenido:
…-includes/js/jquery/jquery.js?ver=1.12.4"
Si en Autoptimize excluyo el Scripts js/jquery/jquery.js ; la politica de cookies se me quede encuadrada. Y no se me va si le doy a aceptar.
He probado con otros plugins, incluso con texto en el footer y no consigo solucionar este problema de optimización.
¿Hay alguna solución?
Gracias

URL del sitio: Contenido solo visible a usuarios registrados


 
Respondido : 18/07/2018 9:50 pm
Johnny Heredia Montiel
Respuestas: 20127
Illustrious Member Moderator
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Hola,

Verifica si el siguiente enlace te es de utilidad: https://www.webempresa.com/blog/quitar-javascript-que-bloquea-visualizacion-contenido.html no es sencillo realizar lo que solicitas pero en el artículo tienes un par de opciones.


 
Respondido : 19/07/2018 1:41 am
Respuestas: 151
Estimable Member
Topic starter
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Buenas Johnny,
Gracias por tu respuesta.
He hecho lo que dice el artículo del blog, y si es verdad que soluciona el problema que te planteo.
Pero no me cargan las imágenes... Así que lo dejo como lo tenía antes.
¿No hay ninguna otra opción posible?
Gracias


 
Respondido : 19/07/2018 2:45 pm
Pepe
 Pepe
Respuestas: 42281
Illustrious Member Admin
Translate
English
Spanish
French
German
Italian
Portuguese
Russian
Chinese
Japanese
Korean
Arabic
Hindi
Dutch
Polish
Turkish
Vietnamese
Thai
Swedish
Danish
Finnish
Norwegian
Czech
Hungarian
Romanian
Greek
Hebrew
Indonesian
Malay
Ukrainian
Bulgarian
Croatian
Slovak
Slovenian
Serbian
Lithuanian
Latvian
Estonian
 

Hola Domingo.

Si mueves los js es posible que no se muestre, tengas algún error o el funcionamiento no sea el adecuado, de todas formas y previa copia de seguridad de los archivo, prueba lo siguiente:

.- Edita el archivo functions.php y añade lo siguiente

function theme_strip_tags_content($text, $tags = '', $invert = false) {

    preg_match_all( '//si', trim( $tags ), $tags );
    $tags = array_unique( $tags[1] );

    if ( is_array( $tags ) AND count( $tags ) > 0 ) {
        if ( false == $invert ) {
            return preg_replace( '@.*?@si', '', $text );
        }
        else {
            return preg_replace( '@.*?@si', '', $text );
        }
    }
    elseif ( false == $invert ) {
        return preg_replace( '@.*?@si', '', $text );
    }

    return $text;
}

function theme_insert_js($source) {

    $out = '';

    $fragment = new DOMDocument();
    $fragment->loadHTML( $source );

    $xp = new DOMXPath( $fragment );
    $result = $xp->query( '//script' );

    $scripts = array();
    $scripts_src = array();
    foreach ( $result as $key => $el ) {
        $src = $result->item( $key )->attributes->getNamedItem( 'src' )->value;
        if ( ! empty( $src ) ) {
            $scripts_src[] = $src;
        } else {
            $type = $result->item( $key )->attributes->getNamedItem( 'type' )->value;
            if ( empty( $type ) ) {
                $type = 'text/javascript';
            }

            $scripts[$type][] = $el->nodeValue;
        }
    }

    foreach ( $scripts as $key => $value ) {
        $out .= '';

        foreach ( $value as $keyC => $valueC ) {
            $out .= "n".$valueC;
        }

        $out .= '';
    }

    foreach ( $scripts_src as $value ) {
        $out .= '';
    }

    return $out;
}

.-Edita el archivo header.php y busca la siguiente linea:


Modifica la linea por la siguiente:

<?php
ob_start();
wp_head();
$themeHead = ob_get_contents();
ob_end_clean();
define( 'HEAD_CONTENT', $themeHead );
$allowedTags = '
';
print theme_strip_tags_content( HEAD_CONTENT, $allowedTags );
?></pre>
<p>.- Edita el archivo <b>footer.php</b> y antes de la etiqueta <b> </b> añade lo siguiente:</p>
<pre></pre>
<p><b>Nota:</b> recuerda tener una copia de los archivos antes de modificar por si necesitaras volver a dejarlo todo como estaba, antes de modificar, descargas una copia en tu equipo.</p>
<p>Como te comente antes es complicado ya que muchos de los temas o plugins no funcionan si se carga los scripts  al final.</p>
<p>Un saludo</p>
<br style="margin: 0; padding:0; width:0; height: 0; clear: both">                                                                                                	<div class="wpforo-post-signature"></div>                                                                        <div class="wpf-post-button-actions">
                                                        <div> </div>
                            <span class="wpforo-action-buttons-wrap"><span class="wpf-action not_reg_user"><i class="fas fa-reply fa-rotate-180"></i></span><span wpf-tooltip="Citar" class="wpf-action not_reg_user"><i class="fas fa-quote-left wpfsx"></i></span></span>                        </div>
	                                        </div>
                    <div class="wpforo-post-content-bottom">
                    	<div class="cbleft wpfcl-0">
                            Respondido : 19/07/2018 3:29 pm		                    <div class="reacted-users"></div>						</div>
                    	<div class="wpf-clear"></div>
                    </div>
                </div><!-- right -->
                <div class="wpf-clear"></div>
              </div><!-- wpforo-post -->
          </div><!-- post-wrap -->

        
        
    
  		<div id="post-319312" data-postid="319312" data-userid="5546" data-mention="" data-isowner="0" class="post-wrap wpfn-5">
                            <div class="wpforo-post wpfcl-1">
                <div class="wpf-left">
                	                		<div class="author-avatar"><img alt='' src='https://secure.gravatar.com/avatar/f00b97c18a76edea6739a7de072442ef9068aa868d6f85215e38031afdcb2c6f?s=110&d=mm&r=g' srcset='https://secure.gravatar.com/avatar/f00b97c18a76edea6739a7de072442ef9068aa868d6f85215e38031afdcb2c6f?s=220&d=mm&r=g 2x' class='avatar avatar-110 photo' height='110' width='110' decoding='async'/></div>
                                        <div class="author-data">
                        <div class="author-name"><span>
                            <i class="fas fa-circle wpfsx wpfcl-0" title="Offline"></i>
            
        </span> <a href="https://www.webempresa.com/foro/participant/5546" style=""  title="Domingo">Domingo</a></div>
                                                                        <div class="wpf-member-profile-buttons">
                                                    </div>
                                                                        <div class="author-posts">
                            Respuestas: 151                        </div>
                                                                        <div class="author-title">
                            <span class="wpf-member-title wpfrt" title="Titulo de valoración">Estimable Member</span>                        </div>
                                                                    </div>
                    <div class="wpf-clear"></div>
                </div><!-- left -->
                <div class="wpf-right">
                	<div class="wpforo-post-content-top">
                        <span class="wpf-post-starter"><i class="fas fa-feather-alt"></i> Topic starter
	</span>                        		<div class="wpf-ai-translate-wrapper" data-postid="319312">
			<div class="wpf-ai-translate-btn" title="Translate this post">
				<span class="wpf-ai-translate-label">Translate</span>
				<span class="wpf-ai-translate-arrow">▼</span>
			</div>
			<div class="wpf-ai-translate-dropdown">
									<div class="wpf-ai-translate-option" data-lang="en">
						English					</div>
									<div class="wpf-ai-translate-option" data-lang="es">
						Spanish					</div>
									<div class="wpf-ai-translate-option" data-lang="fr">
						French					</div>
									<div class="wpf-ai-translate-option" data-lang="de">
						German					</div>
									<div class="wpf-ai-translate-option" data-lang="it">
						Italian					</div>
									<div class="wpf-ai-translate-option" data-lang="pt">
						Portuguese					</div>
									<div class="wpf-ai-translate-option" data-lang="ru">
						Russian					</div>
									<div class="wpf-ai-translate-option" data-lang="zh">
						Chinese					</div>
									<div class="wpf-ai-translate-option" data-lang="ja">
						Japanese					</div>
									<div class="wpf-ai-translate-option" data-lang="ko">
						Korean					</div>
									<div class="wpf-ai-translate-option" data-lang="ar">
						Arabic					</div>
									<div class="wpf-ai-translate-option" data-lang="hi">
						Hindi					</div>
									<div class="wpf-ai-translate-option" data-lang="nl">
						Dutch					</div>
									<div class="wpf-ai-translate-option" data-lang="pl">
						Polish					</div>
									<div class="wpf-ai-translate-option" data-lang="tr">
						Turkish					</div>
									<div class="wpf-ai-translate-option" data-lang="vi">
						Vietnamese					</div>
									<div class="wpf-ai-translate-option" data-lang="th">
						Thai					</div>
									<div class="wpf-ai-translate-option" data-lang="sv">
						Swedish					</div>
									<div class="wpf-ai-translate-option" data-lang="da">
						Danish					</div>
									<div class="wpf-ai-translate-option" data-lang="fi">
						Finnish					</div>
									<div class="wpf-ai-translate-option" data-lang="no">
						Norwegian					</div>
									<div class="wpf-ai-translate-option" data-lang="cs">
						Czech					</div>
									<div class="wpf-ai-translate-option" data-lang="hu">
						Hungarian					</div>
									<div class="wpf-ai-translate-option" data-lang="ro">
						Romanian					</div>
									<div class="wpf-ai-translate-option" data-lang="el">
						Greek					</div>
									<div class="wpf-ai-translate-option" data-lang="he">
						Hebrew					</div>
									<div class="wpf-ai-translate-option" data-lang="id">
						Indonesian					</div>
									<div class="wpf-ai-translate-option" data-lang="ms">
						Malay					</div>
									<div class="wpf-ai-translate-option" data-lang="uk">
						Ukrainian					</div>
									<div class="wpf-ai-translate-option" data-lang="bg">
						Bulgarian					</div>
									<div class="wpf-ai-translate-option" data-lang="hr">
						Croatian					</div>
									<div class="wpf-ai-translate-option" data-lang="sk">
						Slovak					</div>
									<div class="wpf-ai-translate-option" data-lang="sl">
						Slovenian					</div>
									<div class="wpf-ai-translate-option" data-lang="sr">
						Serbian					</div>
									<div class="wpf-ai-translate-option" data-lang="lt">
						Lithuanian					</div>
									<div class="wpf-ai-translate-option" data-lang="lv">
						Latvian					</div>
									<div class="wpf-ai-translate-option" data-lang="et">
						Estonian					</div>
							</div>
			<div class="wpf-ai-translate-original" style="display:none;">
				<span class="wpf-ai-translate-label">Show original</span>
			</div>
			<div class="wpf-ai-translate-loading" style="display:none;">
				<span class="wpf-ai-translate-spinner"></span>
				<span>Translating...</span>
			</div>
		</div>
		                        <div> </div>
                    	<div class="wpf-post-actions">
							<span class="wpforo-action-buttons-wrap"><span class="wpf-action" data-copy-wpf-furl="https://www.webempresa.com/foro/plugins-wordpress/politica-de-cookies-quitar-el-javascript-que-bloquea-la-visualizacion-de-contenido#post-319312" data-copy-wpf-shurl="https://www.webempresa.com/foro/postid/319312" wpf-tooltip-position="left"><i class="fas fa-link wpfsx"></i></span></span>                        </div>
                                            </div>
                    <div class="wpforo-post-content">
                        <p>Pepe,<br />
Gracias por tu respuesta.<br />
Pero al ponerlo la web no me funciona completa.<br />
Me he dado cuenta que el fallo que google pagespeed me menciona, solo esta para móvil.<br />
En pc esto no pasa.<br />
No sé si así sería más fácil buscar una solución<br />
Gracias</p>
<br style="margin: 0; padding:0; width:0; height: 0; clear: both">                                                                                                	                                                                        <div class="wpf-post-button-actions">
                                                        <div> </div>
                            <span class="wpforo-action-buttons-wrap"><span class="wpf-action not_reg_user"><i class="fas fa-reply fa-rotate-180"></i></span><span wpf-tooltip="Citar" class="wpf-action not_reg_user"><i class="fas fa-quote-left wpfsx"></i></span></span>                        </div>
	                                        </div>
                    <div class="wpforo-post-content-bottom">
                    	<div class="cbleft wpfcl-0">
                            Respondido : 19/07/2018 11:42 pm		                    <div class="reacted-users"></div>						</div>
                    	<div class="wpf-clear"></div>
                    </div>
                </div><!-- right -->
                <div class="wpf-clear"></div>
              </div><!-- wpforo-post -->
          </div><!-- post-wrap -->

        
        
    
  		<div id="post-319314" data-postid="319314" data-userid="3200" data-mention="" data-isowner="0" class="post-wrap wpfn-6">
                            <div class="wpforo-post wpfcl-1">
                <div class="wpf-left">
                	                		<div class="author-avatar"><img class="avatar" src="//www.webempresa.com/foro/wp-content/uploads/wpforo/avatars/jherediajoomlagencia-com_3200.jpg"  alt="Johnny Heredia Montiel" title="Johnny Heredia Montiel" height="110" width="110" ></div>
                                        <div class="author-data">
                        <div class="author-name"><span>
                            <i class="fas fa-circle wpfsx wpfcl-0" title="Offline"></i>
            
        </span> <a href="https://www.webempresa.com/foro/participant/3200" style="color: #0066ff"  title="Johnny Heredia Montiel">Johnny Heredia Montiel</a></div>
                                                                        <div class="wpf-member-profile-buttons">
                                                    </div>
                                                                        <div class="author-posts">
                            Respuestas: 20127                        </div>
                                                                        <div class="author-title">
                            <span class="wpf-member-title wpfrt" title="Titulo de valoración">Illustrious Member</span> <span class="wpf-member-title wpfut wpfug-2 wpfbr-5 wpfcl-5" title="Grupo de Usuario">Moderator</span>                        </div>
                            <div class="author-rating-full"
         style="color:#e04a47"
         title="Emblema de Nivel del Usuario">
        <i class="fas fa-trophy"></i>        </div>                                                </div>
                    <div class="wpf-clear"></div>
                </div><!-- left -->
                <div class="wpf-right">
                	<div class="wpforo-post-content-top">
                                                		<div class="wpf-ai-translate-wrapper" data-postid="319314">
			<div class="wpf-ai-translate-btn" title="Translate this post">
				<span class="wpf-ai-translate-label">Translate</span>
				<span class="wpf-ai-translate-arrow">▼</span>
			</div>
			<div class="wpf-ai-translate-dropdown">
									<div class="wpf-ai-translate-option" data-lang="en">
						English					</div>
									<div class="wpf-ai-translate-option" data-lang="es">
						Spanish					</div>
									<div class="wpf-ai-translate-option" data-lang="fr">
						French					</div>
									<div class="wpf-ai-translate-option" data-lang="de">
						German					</div>
									<div class="wpf-ai-translate-option" data-lang="it">
						Italian					</div>
									<div class="wpf-ai-translate-option" data-lang="pt">
						Portuguese					</div>
									<div class="wpf-ai-translate-option" data-lang="ru">
						Russian					</div>
									<div class="wpf-ai-translate-option" data-lang="zh">
						Chinese					</div>
									<div class="wpf-ai-translate-option" data-lang="ja">
						Japanese					</div>
									<div class="wpf-ai-translate-option" data-lang="ko">
						Korean					</div>
									<div class="wpf-ai-translate-option" data-lang="ar">
						Arabic					</div>
									<div class="wpf-ai-translate-option" data-lang="hi">
						Hindi					</div>
									<div class="wpf-ai-translate-option" data-lang="nl">
						Dutch					</div>
									<div class="wpf-ai-translate-option" data-lang="pl">
						Polish					</div>
									<div class="wpf-ai-translate-option" data-lang="tr">
						Turkish					</div>
									<div class="wpf-ai-translate-option" data-lang="vi">
						Vietnamese					</div>
									<div class="wpf-ai-translate-option" data-lang="th">
						Thai					</div>
									<div class="wpf-ai-translate-option" data-lang="sv">
						Swedish					</div>
									<div class="wpf-ai-translate-option" data-lang="da">
						Danish					</div>
									<div class="wpf-ai-translate-option" data-lang="fi">
						Finnish					</div>
									<div class="wpf-ai-translate-option" data-lang="no">
						Norwegian					</div>
									<div class="wpf-ai-translate-option" data-lang="cs">
						Czech					</div>
									<div class="wpf-ai-translate-option" data-lang="hu">
						Hungarian					</div>
									<div class="wpf-ai-translate-option" data-lang="ro">
						Romanian					</div>
									<div class="wpf-ai-translate-option" data-lang="el">
						Greek					</div>
									<div class="wpf-ai-translate-option" data-lang="he">
						Hebrew					</div>
									<div class="wpf-ai-translate-option" data-lang="id">
						Indonesian					</div>
									<div class="wpf-ai-translate-option" data-lang="ms">
						Malay					</div>
									<div class="wpf-ai-translate-option" data-lang="uk">
						Ukrainian					</div>
									<div class="wpf-ai-translate-option" data-lang="bg">
						Bulgarian					</div>
									<div class="wpf-ai-translate-option" data-lang="hr">
						Croatian					</div>
									<div class="wpf-ai-translate-option" data-lang="sk">
						Slovak					</div>
									<div class="wpf-ai-translate-option" data-lang="sl">
						Slovenian					</div>
									<div class="wpf-ai-translate-option" data-lang="sr">
						Serbian					</div>
									<div class="wpf-ai-translate-option" data-lang="lt">
						Lithuanian					</div>
									<div class="wpf-ai-translate-option" data-lang="lv">
						Latvian					</div>
									<div class="wpf-ai-translate-option" data-lang="et">
						Estonian					</div>
							</div>
			<div class="wpf-ai-translate-original" style="display:none;">
				<span class="wpf-ai-translate-label">Show original</span>
			</div>
			<div class="wpf-ai-translate-loading" style="display:none;">
				<span class="wpf-ai-translate-spinner"></span>
				<span>Translating...</span>
			</div>
		</div>
		                        <div> </div>
                    	<div class="wpf-post-actions">
							<span class="wpforo-action-buttons-wrap"><span class="wpf-action" data-copy-wpf-furl="https://www.webempresa.com/foro/plugins-wordpress/politica-de-cookies-quitar-el-javascript-que-bloquea-la-visualizacion-de-contenido#post-319314" data-copy-wpf-shurl="https://www.webempresa.com/foro/postid/319314" wpf-tooltip-position="left"><i class="fas fa-link wpfsx"></i></span></span>                        </div>
                                            </div>
                    <div class="wpforo-post-content">
                        <p>Hola,</p>
<p>Una opción quizás sea que cambies de plugin de caché por:  <a class="wpforo-auto-embeded-link" href="https://wp-rocket.me/es/caracteristicas/" target="_blank" rel="nofollow ugc">https://wp-rocket.me/es/caracteristicas/</a> </p>
<p>El plugin es de pago pero dentro de sus opciones cuenta con la característica que solicitas, ojo, no te puedo asegurar que vaya a funcionar pero al ser un servicio de pago puedes solicitar soporte para que te arreglen el problema.</p>
<p>Tienes información de la configuración del plugin en el siguiente enlace:  <a class="wpforo-auto-embeded-link" href="https://www.webempresa.com/blog/como-acelerar-wordpress-plugin-wp-rocket.html" target="_blank">https://www.webempresa.com/blog/como-acelerar-wordpress-plugin-wp-rocket.html</a> </p>
<br style="margin: 0; padding:0; width:0; height: 0; clear: both">                                                                                                	<div class="wpforo-post-signature"></div>                                                                        <div class="wpf-post-button-actions">
                                                        <div> </div>
                            <span class="wpforo-action-buttons-wrap"><span class="wpf-action not_reg_user"><i class="fas fa-reply fa-rotate-180"></i></span><span wpf-tooltip="Citar" class="wpf-action not_reg_user"><i class="fas fa-quote-left wpfsx"></i></span></span>                        </div>
	                                        </div>
                    <div class="wpforo-post-content-bottom">
                    	<div class="cbleft wpfcl-0">
                            Respondido : 20/07/2018 1:40 am		                    <div class="reacted-users"></div>						</div>
                    	<div class="wpf-clear"></div>
                    </div>
                </div><!-- right -->
                <div class="wpf-clear"></div>
              </div><!-- wpforo-post -->
          </div><!-- post-wrap -->

        
        
    </div><!-- wpfl-2 -->
        <div class="wpforo-topic-footer wpfbg-9">
            <div class="wpf-topic-navi">
                            <div class="wpf-navi-wrap">
                                    <div class="wpf-forum-jump wpf-navi-item">
                        <span class="wpf-forum-jump-title"><i class="fa-solid fa-folder-tree"></i> Ir al foro:</span>
                        <select onchange="window.location.href = wpf_forum_urls['forum_' + this.value]">
                                        <option value="3"  disabled  > Migrated forum</option>            <option value="7"  disabled  > Ayuda WordPress en español</option>            <option value="37"  > — Preguntas sobre WordPress</option>            <option value="32"  > — — Administración WordPress</option>            <option value="33"  > — — Instalación y Actualización WordPress</option>            <option value="34" selected   > — — Plugins WordPress</option>            <option value="47"  > — Soporte Divi en español - WPFácil</option>            <option value="38"  > — Packs Webempresa WordPress</option>            <option value="39"  > — — Pack Tienda WordPress</option>            <option value="40"  > — — Pack Empresa WordPress</option>            <option value="41"  > — — Pack Blog WordPress</option>            <option value="42"  > — — Pack Periódico WordPress</option>            <option value="49"  disabled  > Mautic</option>            <option value="50"  > — Preguntas sobre Mautic</option>            <option value="51"  > — Campañas, embudos, activos, canales...</option>            <option value="8"  disabled  > PrestaShop</option>            <option value="43"  > — Preguntas sobre PrestaShop</option>            <option value="44"  > — — Administración PrestaShop</option>            <option value="45"  > — — Instalación y Actualización PrestaShop</option>            <option value="46"  > — — Módulos PrestaShop</option>            <option value="6"  disabled  > Joomla</option>            <option value="35"  > — Preguntas Sobre Joomla</option>            <option value="53"  > — — Joomla 5</option>            <option value="52"  > — — Joomla 4.0</option>            <option value="19"  > — — Joomla 3.0</option>            <option value="18"  > — — Joomla 2.5</option>            <option value="16"  > — — Joomla 1.7</option>            <option value="14"  > — — Joomla 1.6</option>            <option value="13"  > — — Joomla 1.5</option>            <option value="23"  > — — JomSocial</option>            <option value="17"  > — — BreezingForms</option>            <option value="24"  > — — Kunena, Agora y otras extensiones para Foros</option>            <option value="12"  > — — Virtuemart</option>            <option value="20"  > — — — Pasarelas de Pago</option>            <option value="21"  > — — — VirtueMart 1.0 - 1.1.x</option>            <option value="22"  > — — — VirtueMart 2.0</option>            <option value="5"  > — — — Moderadores</option>            <option value="25"  > — — — — Sobre la Moderación</option>            <option value="26"  > — — — — Mensajes Inapropiados</option>            <option value="15"  > — — Seguridad</option>            <option value="36"  > — Packs Webempresa</option>            <option value="31"  > — — Pack Reservas</option>            <option value="28"  > — — Pack Empresa</option>            <option value="27"  > — — Pack Tienda Joomla</option>            <option value="29"  > — — Pack Revista Digital - Periódico</option>            <option value="4"  disabled  > Foro WordPress en webempresa</option>            <option value="11"  > — Noticias Webempresa</option>            <option value="9"  > — Dudas sobre Servicios de Webempresa</option>            <option value="10"  > — Buzon de Sugerencias</option>                        </select>
                        <script>var wpf_forum_json = '{"forum_52":"https:\/\/www.webempresa.com\/foro\/joomla-40","forum_53":"https:\/\/www.webempresa.com\/foro\/joomla-5","forum_2":"https:\/\/www.webempresa.com\/foro\/main-forum","forum_3":"https:\/\/www.webempresa.com\/foro\/migrated-forums","forum_7":"https:\/\/www.webempresa.com\/foro\/ayuda-wordpress-en-espanol","forum_37":"https:\/\/www.webempresa.com\/foro\/preguntas-sobre-wordpress","forum_32":"https:\/\/www.webempresa.com\/foro\/administracion-wordpress","forum_33":"https:\/\/www.webempresa.com\/foro\/instalacion-y-actualizacion-wordpress","forum_34":"https:\/\/www.webempresa.com\/foro\/plugins-wordpress","forum_47":"https:\/\/www.webempresa.com\/foro\/soporte-divi-en-espanol","forum_38":"https:\/\/www.webempresa.com\/foro\/packs-webempresa-wordpress","forum_39":"https:\/\/www.webempresa.com\/foro\/pack-tienda-wordpress","forum_40":"https:\/\/www.webempresa.com\/foro\/pack-empresa-wordpress","forum_41":"https:\/\/www.webempresa.com\/foro\/pack-blog-wordpress","forum_42":"https:\/\/www.webempresa.com\/foro\/pack-periodico-wordpress","forum_49":"https:\/\/www.webempresa.com\/foro\/mautic","forum_50":"https:\/\/www.webempresa.com\/foro\/preguntas-sobre-mautic","forum_51":"https:\/\/www.webempresa.com\/foro\/campanas-mautic","forum_8":"https:\/\/www.webempresa.com\/foro\/prestashop","forum_43":"https:\/\/www.webempresa.com\/foro\/preguntas-sobre-prestashop","forum_44":"https:\/\/www.webempresa.com\/foro\/administracion-prestashop","forum_45":"https:\/\/www.webempresa.com\/foro\/instalacion-y-actualizacion-prestashop","forum_46":"https:\/\/www.webempresa.com\/foro\/modulos-prestashop","forum_6":"https:\/\/www.webempresa.com\/foro\/joomla","forum_35":"https:\/\/www.webempresa.com\/foro\/preguntas-sobre-joomla","forum_19":"https:\/\/www.webempresa.com\/foro\/joomla-30","forum_18":"https:\/\/www.webempresa.com\/foro\/joomla-25","forum_16":"https:\/\/www.webempresa.com\/foro\/joomla-17","forum_14":"https:\/\/www.webempresa.com\/foro\/joomla-16","forum_13":"https:\/\/www.webempresa.com\/foro\/joomla-15","forum_23":"https:\/\/www.webempresa.com\/foro\/jomsocial","forum_17":"https:\/\/www.webempresa.com\/foro\/breezingforms","forum_24":"https:\/\/www.webempresa.com\/foro\/kunena-agora-y-otras-extensiones-para-foros","forum_12":"https:\/\/www.webempresa.com\/foro\/virtuemart","forum_20":"https:\/\/www.webempresa.com\/foro\/pasarelas-de-pago","forum_21":"https:\/\/www.webempresa.com\/foro\/virtuemart-10-11x","forum_22":"https:\/\/www.webempresa.com\/foro\/virtuemart-20","forum_5":"https:\/\/www.webempresa.com\/foro\/moderadores","forum_25":"https:\/\/www.webempresa.com\/foro\/sobre-la-moderacion","forum_26":"https:\/\/www.webempresa.com\/foro\/mensajes-inapropiados","forum_15":"https:\/\/www.webempresa.com\/foro\/seguridad","forum_36":"https:\/\/www.webempresa.com\/foro\/packs-webempresa","forum_31":"https:\/\/www.webempresa.com\/foro\/pack-reservas","forum_28":"https:\/\/www.webempresa.com\/foro\/pack-empresa","forum_27":"https:\/\/www.webempresa.com\/foro\/pack-tienda-joomla","forum_29":"https:\/\/www.webempresa.com\/foro\/pack-revista-digital-periodico","forum_4":"https:\/\/www.webempresa.com\/foro\/foro-wordpress-en-webempresa","forum_11":"https:\/\/www.webempresa.com\/foro\/noticias-webempresa","forum_9":"https:\/\/www.webempresa.com\/foro\/dudas-sobre-servicios-de-webempresa","forum_10":"https:\/\/www.webempresa.com\/foro\/buzon-de-sugerencias"}';
							var wpf_forum_urls = JSON.parse(wpf_forum_json);</script>
                    </div>
                
                                                                                <div class="wpf-topic-prnx">
                            <div class="wpf-topic-prev wpf-navi-item"><a href="https://www.webempresa.com/foro/plugins-wordpress/consejo-con-imagen-de-producto-woocommerce" title="Consejo con imagen de producto woocommerce"><i class="fas fa-chevron-left"></i>  Tema anterior</a></div>
                            <div class="wpf-topic-next wpf-navi-item"><a href="https://www.webempresa.com/foro/plugins-wordpress/plugin-depositos-ordenar" title="plugin depositos ordenar">Siguiente debate  <i class="fas fa-chevron-right"></i></a></div>
                        </div>
                                                    <div class="wpf-clear"></div>
            </div>
                        </div>
            <div class="wpf-topic-rel">
                            </div>
            <div class="wpf-tag-list">
                            </div>
            <div class="wpf-topic-visitors">
                            </div>
        </div>
                    </div>
			            <div class="wpf-clear"></div>
        </div>
		
		


<!-- forum statistic -->
<div class="wpf-clear"></div>


<div id="wpforo-footer">
			        <div id="wpforo-stat-header">
            <div class="wpf-footer-title">
                <svg viewBox="0 0 2048 1792" xmlns="http://www.w3.org/2000/svg">
                    <path d="M640 896v512h-256v-512h256zm384-512v1024h-256v-1024h256zm1024 1152v128h-2048v-1536h128v1408h1920zm-640-896v768h-256v-768h256zm384-384v1152h-256v-1152h256z"/>
                </svg>
                <span>Información del foro</span>
            </div>
            <div class="wpf-footer-buttons">
                <div class="wpf-all-read"></div>
				                    <div class="wpf-stat-recent-posts"><a href="https://www.webempresa.com/foro/recientes"><i class="fas fa-list-ul"></i>
                        <span>Últimos Mensajes</span></a></div>				                    <div class="wpf-stat-unread-posts"><a href="https://www.webempresa.com/foro/recientes?view=unread"><i class="fas fa-layer-group"></i>
                        <span>Posts no leídos</span></a></div>				                    <div class="wpf-stat-tags"><a href="https://www.webempresa.com/foro/tags"><i class="fas fa-tag"></i> <span>Etiquetas</span></a></div>            </div>
        </div>
        <div id="wpforo-stat-body">
			
			                <div class="wpf-footer-box">
                    <ul>
                        <li>
                            <svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" viewBox="0 0 24 24">
                                <path d="M24,16v5a3,3,0,0,1-3,3H16a8,8,0,0,1-6.92-4,10.968,10.968,0,0,0,2.242-.248A5.988,5.988,0,0,0,16,22h5a1,1,0,0,0,1-1V16a5.988,5.988,0,0,0-2.252-4.678A10.968,10.968,0,0,0,20,9.08,8,8,0,0,1,24,16ZM17.977,9.651A9,9,0,0,0,8.349.023,9.418,9.418,0,0,0,0,9.294v5.04C0,16.866,1.507,18,3,18H8.7A9.419,9.419,0,0,0,17.977,9.651Zm-4.027-5.6a7.018,7.018,0,0,1,2.032,5.46A7.364,7.364,0,0,1,8.7,16H3c-.928,0-1-1.275-1-1.666V9.294A7.362,7.362,0,0,1,8.49,2.018Q8.739,2,8.988,2A7.012,7.012,0,0,1,13.95,4.051Z"/>
                            </svg>
                            <span class="wpf-stat-value">46</span>
                            <span class="wpf-stat-label">Foros</span>
                        </li>
                        <li>
                            <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
                                <g id="_01_align_center" data-name="01 align center">
                                    <path d="M21,0H3A3,3,0,0,0,0,3V20H6.9l3.808,3.218a2,2,0,0,0,2.582,0L17.1,20H24V3A3,3,0,0,0,21,0Zm1,18H16.366L12,21.69,7.634,18H2V3A1,1,0,0,1,3,2H21a1,1,0,0,1,1,1Z"/>
                                    <rect x="6" y="5" width="6" height="2"/>
                                    <rect x="6" y="9" width="12" height="2"/>
                                    <rect x="6" y="13" width="12" height="2"/>
                                </g>
                            </svg>
                            <span class="wpf-stat-value">81.2 K</span>
                            <span class="wpf-stat-label">Temas</span>
                        </li>
                        <li>
                            <svg style="transform: rotate(180deg); vertical-align: bottom;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
                                <path d="M23,24a1,1,0,0,1-1-1,6.006,6.006,0,0,0-6-6H10.17v1.586A2,2,0,0,1,6.756,20L.877,14.121a3,3,0,0,1,0-4.242L6.756,4A2,2,0,0,1,10.17,5.414V7H15a9.01,9.01,0,0,1,9,9v7A1,1,0,0,1,23,24ZM8.17,5.414,2.291,11.293a1,1,0,0,0,0,1.414L8.17,18.586V16a1,1,0,0,1,1-1H16a7.984,7.984,0,0,1,6,2.714V16a7.008,7.008,0,0,0-7-7H9.17a1,1,0,0,1-1-1Z"/>
                            </svg>
                            <span class="wpf-stat-value">487.1 K</span>
                            <span class="wpf-stat-label">Respuestas</span>
                        </li>
                        <li>
                            <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
                                <path d="M1120 576q0 13-9.5 22.5t-22.5 9.5-22.5-9.5-9.5-22.5q0-46-54-71t-106-25q-13 0-22.5-9.5t-9.5-22.5 9.5-22.5 22.5-9.5q50 0 99.5 16t87 54 37.5 90zm160 0q0-72-34.5-134t-90-101.5-123-62-136.5-22.5-136.5 22.5-123 62-90 101.5-34.5 134q0 101 68 180 10 11 30.5 33t30.5 33q128 153 141 298h228q13-145 141-298 10-11 30.5-33t30.5-33q68-79 68-180zm128 0q0 155-103 268-45 49-74.5 87t-59.5 95.5-34 107.5q47 28 47 82 0 37-25 64 25 27 25 64 0 52-45 81 13 23 13 47 0 46-31.5 71t-77.5 25q-20 44-60 70t-87 26-87-26-60-70q-46 0-77.5-25t-31.5-71q0-24 13-47-45-29-45-81 0-37 25-64-25-27-25-64 0-54 47-82-4-50-34-107.5t-59.5-95.5-74.5-87q-103-113-103-268 0-99 44.5-184.5t117-142 164-89 186.5-32.5 186.5 32.5 164 89 117 142 44.5 184.5z"/>
                            </svg>
                            <span class="wpf-stat-value">4</span>
                            <span class="wpf-stat-label">En línea</span>
                        </li>
                        <li>
                            <svg style="height: 16px; " xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
                                <path d="M12,12A6,6,0,1,0,6,6,6.006,6.006,0,0,0,12,12ZM12,2A4,4,0,1,1,8,6,4,4,0,0,1,12,2Z"/>
                                <path d="M12,14a9.01,9.01,0,0,0-9,9,1,1,0,0,0,2,0,7,7,0,0,1,14,0,1,1,0,0,0,2,0A9.01,9.01,0,0,0,12,14Z"/>
                            </svg>
                            <span class="wpf-stat-value">9,335</span>
                            <span class="wpf-stat-label">Miembros</span>
                        </li>
                    </ul>
                </div>
			
            <div class="wpf-footer-box">
                <div class="wpf-newest-member">
                    <svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg">
                        <path d="M1329 784q47 14 89.5 38t89 73 79.5 115.5 55 172 22 236.5q0 154-100 263.5t-241 109.5h-854q-141 0-241-109.5t-100-263.5q0-131 22-236.5t55-172 79.5-115.5 89-73 89.5-38q-79-125-79-272 0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5 198.5 40.5 163.5 109.5 109.5 163.5 40.5 198.5q0 147-79 272zm-433-656q-159 0-271.5 112.5t-112.5 271.5 112.5 271.5 271.5 112.5 271.5-112.5 112.5-271.5-112.5-271.5-271.5-112.5zm427 1536q88 0 150.5-71.5t62.5-173.5q0-239-78.5-377t-225.5-145q-145 127-336 127t-336-127q-147 7-225.5 145t-78.5 377q0 102 62.5 173.5t150.5 71.5h854z"/>
                    </svg>
					Nuestro miembro más reciente: <a href="https://www.webempresa.com/foro/participant/19718" style=""  title="Teresa Españon">Teresa Españon</a>                </div>
				                    <div class="wpf-newest-post">
                        <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
                            <path d="M18.656.93,6.464,13.122A4.966,4.966,0,0,0,5,16.657V18a1,1,0,0,0,1,1H7.343a4.966,4.966,0,0,0,3.535-1.464L23.07,5.344a3.125,3.125,0,0,0,0-4.414A3.194,3.194,0,0,0,18.656.93Zm3,3L9.464,16.122A3.02,3.02,0,0,1,7.343,17H7v-.343a3.02,3.02,0,0,1,.878-2.121L20.07,2.344a1.148,1.148,0,0,1,1.586,0A1.123,1.123,0,0,1,21.656,3.93Z"/>
                            <path d="M23,8.979a1,1,0,0,0-1,1V15H18a3,3,0,0,0-3,3v4H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2h9.042a1,1,0,0,0,0-2H5A5.006,5.006,0,0,0,0,5V19a5.006,5.006,0,0,0,5,5H16.343a4.968,4.968,0,0,0,3.536-1.464l2.656-2.658A4.968,4.968,0,0,0,24,16.343V9.979A1,1,0,0,0,23,8.979ZM18.465,21.122a2.975,2.975,0,0,1-1.465.8V18a1,1,0,0,1,1-1h3.925a3.016,3.016,0,0,1-.8,1.464Z"/>
                        </svg>
						Último Mensaje: <a href="https://www.webempresa.com/foro/pack-empresa-wordpress/problemas-para-actualizar-php-y-otros-plugins#post-488987">Problemas para actualizar PHP y otros plugins</a>
                    </div>
				            </div>

            <div class="wpf-footer-box wpf-last-info">
                <div class="wpf-forum-icons">
                    <span class="wpf-stat-label">Iconos:</span>
                    <span class="wpf-no-new"><i class="fas fa-comments wpfcl-0"></i> No hay posts sin leer</span>
                    <span class="wpf-new"><i class="fas fa-comments"></i> Hay posts sin leer</span>
                </div>
                <div class="wpf-topic-icons">
                    <span class="wpf-stat-label">Iconos de los Temas:</span>
                    <span><i class="far fa-file wpfcl-2"></i> No respondido</span>
                    <span><i class="far fa-file-alt wpfcl-2"></i> Respondido</span>
                    <span><i class="fas fa-file-alt wpfcl-2"></i> Activo</span>
                    <span><i class="fa-solid fa-fire-flame-curved wpfcl-5"></i> Popular</span>
                    <span><i class="fas fa-thumbtack wpfcl-10"></i> Fijo</span>
                    <span><i class="fas fa-exclamation-circle wpfcl-5"></i> No aprobados</span>
                    <span><i class="fas fa-check-circle wpfcl-8"></i> Resuelto</span>
                    <span><i class="fas fa-eye-slash wpfcl-1"></i> Privado</span>
                    <span><i class="fas fa-lock wpfcl-1"></i> Cerrado</span>
                </div>
            </div>

        </div>
			</div>    <!-- wpforo-footer -->

    </div><!-- wpforo-wrap -->
</div>

		</div>

			
		</div>
		</div>

			<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js?ver=1.12.4" id="jquery-js"></script>
<script type="text/javascript" id="valoraciones-script-js-extra">
/* <![CDATA[ */
var forumRatingsData = {"ajax_url":"https://www.webempresa.com/foro/wp-admin/admin-ajax.php","nonce":"f2852d2388","currentUserId":"0","canViewRatings":"","canAddRatings":"","userRoles":[],"isWpforoFront":"1","permastruct":"nuevo-tema"};
//# sourceURL=valoraciones-script-js-extra
/* ]]> */
</script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-ratings/valoraciones/js/valoraciones.js?ver=2.1.0" id="valoraciones-script-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/themes/Divi-child/js/domaininwe.js?ver=1.0.1" id="we-validate-domain-js"></script>
<script type="text/javascript" id="divi-custom-script-js-extra">
/* <![CDATA[ */
var DIVI = {"item_count":"%d Item","items_count":"%d Items"};
var et_builder_utils_params = {"condition":{"diviTheme":true,"extraTheme":false},"scrollLocations":["app","top"],"builderScrollLocations":{"desktop":"app","tablet":"app","phone":"app"},"onloadScrollLocation":"app","builderType":"fe"};
var et_frontend_scripts = {"builderCssContainerPrefix":"#et-boc","builderCssLayoutPrefix":"#et-boc .et-l"};
var et_pb_custom = {"ajaxurl":"https://www.webempresa.com/foro/wp-admin/admin-ajax.php","images_uri":"https://www.webempresa.com/foro/wp-content/themes/Divi/images","builder_images_uri":"https://www.webempresa.com/foro/wp-content/themes/Divi/includes/builder/images","et_frontend_nonce":"4d3a0e1a96","subscription_failed":"Por favor, revise los campos a continuaci\u00f3n para asegurarse de que la informaci\u00f3n introducida es correcta.","et_ab_log_nonce":"4e3f99f226","fill_message":"Por favor, rellene los siguientes campos:","contact_error_message":"Por favor, arregle los siguientes errores:","invalid":"De correo electr\u00f3nico no v\u00e1lida","captcha":"Captcha","prev":"Anterior","previous":"Anterior","next":"Siguiente","wrong_captcha":"Ha introducido un n\u00famero equivocado de captcha.","wrong_checkbox":"Caja","ignore_waypoints":"no","is_divi_theme_used":"1","widget_search_selector":".widget_search","ab_tests":[],"is_ab_testing_active":"","page_id":"","unique_test_id":"","ab_bounce_rate":"","is_cache_plugin_active":"yes","is_shortcode_tracking":"","tinymce_uri":"https://www.webempresa.com/foro/wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors","accent_color":"#7EBEC5","waypoints_options":[]};
//# sourceURL=divi-custom-script-js-extra
/* ]]> */
</script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/themes/Divi/js/scripts.min.js?ver=4.27.6" id="divi-custom-script-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/uploads/wpforo/assets/phrases.js?ver=3.0.9.470727d57abe925bed4581929d9b6a65" id="wpforo-dynamic-phrases-js"></script>
<script type="text/javascript" id="wpforo-frontend-js-js-extra">
/* <![CDATA[ */
var wpforo = {"ajax_url":"https://www.webempresa.com/foro/wp-admin/admin-ajax.php?lang=es&page_id=16&wpforo_boardid=0","nonces":{"wpf_validate_marketplace_install":"11a882d444","wpf_background_process":"8795906d1c","wpf_update_user":"a6290c486b","wpf_add_user":"8795d1df8b","wpforms_submit":"9d472b14a9","wpforms_get_token":"a77f1d78c5","wpforo_quote_ajax":"9a6ce45cd5","wpforo_sticky_ajax":"d64227de46","wpforo_solved_ajax":"36df8a21e4","wpforo_post_edit":"3678d00767","wpforo_layout4_loadmore":"dc283cca12","wpforo_load_more_activities":"f214215ff1","wpforo_topic_portable_form":"5a54455e6c","wpforo_qa_comment_loadrest":"2fb4c6dd0e","wpforo_post_url_fixer":"f934412365","wpforo_tag_search":"2f0a40b129","wpforo_get_topic_head_more_info":"845cb88322","wpforo_get_topic_overview_chunk":"2ae75a98de","wpforo_get_overview":"21f52b9653","wpforo_get_member_template":"f3f394e829","wpforo_search_existed_topics":"1607fce7eb","wpforo_load_ajax_widget_Forums":"d1f72ab723","wpforo_load_ajax_widget_Search":"af1de53a6b","wpforo_load_ajax_widget_OnlineMembers":"46a46aabde","wpforo_load_ajax_widget_RecentTopics":"91a95596c7","wpforo_load_ajax_widget_RecentPosts":"89fced1491","wpforo_load_ajax_widget_Tags":"1cdcc4ae76","wpforms_restricted_email":"98adf80929","wpforo_get_phrases":"9e908278a1","wpforo_ai_semantic_search":"7e44e10ce5","wpforo_ai_public_search":"3cdedd94ad","wpforo_ai_translate":"a9ad71b1cd","wpforo_ai_summarize_topic":"e20aed10cb","wpforo_ai_get_topic_suggestions":"a366b094bd","wpforo_subscribe_ajax":"185e3d86b9","wpforo_save_revision":"a030849894","wpforo_get_revisions_history":"11ffd7b70c","wpforo_get_revision":"7ec2bafb69","wpforo_delete_revision":"795fb37b06","wpforoattach_load_ajax_function":"05c604780c","wpfa_load_form":"1c1afff72e"},"settings_slugs":{"add-topic":"add-topic","recent":"recientes","tags":"tags","attachment":"forofile","paged":"paged","postid":"postid","topicid":"topicid","members":"participants","register":"sign-up","login":"sign-in","lostpassword":"change-password","logout":"sign-out","member":"participant","cantlogin":"login-message","profile":"profile","account":"account","activity":"activity","favored":"favored","followers":"followers","following":"following","subscriptions":"subscriptions","recent-activity":"recent-activity"},"editor_settings":{"media_buttons":false,"textarea_name":"post[body]","textarea_rows":5,"tabindex":"","editor_height":150,"editor_css":"","editor_class":"wpeditor","teeny":false,"dfw":false,"plugins":"hr,lists,textcolor,paste,wpautoresize,fullscreen,wordpress","external_plugins":{"wpforo_pre_button":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-pre.js","wpforo_link_button":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-link.js","wpforo_spoiler_button":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-spoiler.js","wpforo_source_code_button":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-code.js","emoticons":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-emoji.js","wpfaeditimage":"https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/tinymce-figure-align.js"},"tinymce":{"toolbar1":"fontsizeselect,bold,italic,underline,strikethrough,forecolor,bullist,numlist,hr,alignleft,aligncenter,alignright,alignjustify,link,unlink,blockquote,pre,wpf_spoil,undo,redo,pastetext,source_code,emoticons,hide_mce_button,fullscreen","toolbar2":"","toolbar3":"","toolbar4":"","content_style":"blockquote{border: #cccccc 1px dotted; background: #F7F7F7; padding:10px;font-size:12px; font-style:italic; margin: 20px 10px;} pre{border-left: 3px solid #ccc; outline: none !important; background: #fafcff;padding: 10px;font-size: 14px;margin: 20px 0 0 10px;display: block;width: 100%;}  img.emoji{width: 20px;}figure.alignleft { float: left; }figure.aligncenter { clear: both; display: block; }figure.aligncenter a, figure.aligncenter img { display: block; margin-left: auto; margin-right: auto; }figure.alignright { float: right; }","object_resizing":false,"autoresize_on_init":true,"wp_autoresize_on":true,"wp_keep_scroll_position":true,"indent":true,"add_unload_trigger":false,"wpautop":false,"setup":"wpforo_tinymce_setup","content_css":"","extended_valid_elements":"i[class|style],span[class|style],figure[class|contenteditable|style|data*]","custom_elements":""},"quicktags":false,"default_editor":"tinymce"},"revision_options":{"qa_display_answer_editor":true,"qa_comments_rich_editor":true,"threaded_reply_rich_editor":true,"topic_title_min_length":1,"topic_title_max_length":0,"topic_body_min_length":2,"topic_body_max_length":0,"post_body_min_length":2,"post_body_max_length":0,"comment_body_min_length":2,"comment_body_max_length":0,"edit_own_topic_durr":60,"delete_own_topic_durr":300,"edit_own_post_durr":300,"delete_own_post_durr":300,"edit_topic":true,"edit_post":true,"edit_log_display_limit":0,"is_preview_on":true,"is_draft_on":true,"auto_draft_interval":60000,"max_drafts_per_page":3,"max_upload_size":10485760,"attachs_to_medialib":true,"topic_editor_toolbar_location":"top","reply_editor_toolbar_location":"top","content_do_shortcode":false,"extra_html_tags":"embed(src width height name pluginspage type wmode allowFullScreen allowScriptAccess flashVars),"},"notice":{"login_or_register":"","timeouts":{"neutral":0,"error":8000,"success":4000}}};
//# sourceURL=wpforo-frontend-js-js-extra
/* ]]> */
</script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/frontend.js?ver=3.0.9" id="wpforo-frontend-js-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/ai-features.js?ver=3.0.9" id="wpforo-ai-features-js-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-includes/js/jquery/suggest.min.js?ver=1.1-20110113" id="suggest-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo/assets/js/ajax.js?ver=3.0.9" id="wpforo-ajax-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.fitvids.js?ver=4.27.6" id="fitvids-js"></script>
<script async defer type="text/javascript" src="https://www.google.com/recaptcha/api.js?onload=wpForoReCallback&render=explicit&ver=6.9.4" id="wpforo_recaptcha-js"></script>
<script async defer type="text/javascript" id="wpforo_recaptcha-js-after">
/* <![CDATA[ */
var wpForoReCallback = function(){
					setTimeout(function () {
						if( typeof grecaptcha !== 'undefined' && typeof grecaptcha.render === 'function' ){
							var rc_widgets = document.getElementsByClassName('wpforo_recaptcha_widget');
							if( rc_widgets.length ){
								var i;
								for (i = 0; i < rc_widgets.length; i++) {
									if( rc_widgets[i].firstElementChild === null ){
										rc_widgets[i].innerHTML = '';
										grecaptcha.render(
											rc_widgets[i], { 'sitekey': '6Lfi-M8UAAAAAFQdcQOgWYoM5Qp9rrBGZ7bolwc8', 'theme': 'light' }
										);
									}
								}
							}
						}
					}, 800);
				}
//# sourceURL=wpforo_recaptcha-js-after
/* ]]> */
</script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.blueimp-gallery.min.js?ver=3.3.0" id="jquery-blueimp-gallery-script-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/jquery-ui.min.js?ver=1.12.1" id="wpfa_jquery_ui_1_12-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload.js?ver=3.3.0" id="wpfa_jquery-fileupload-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/load-image.all.min.js?ver=3.3.0" id="wpfa_load-image-all-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-process.js?ver=3.3.0" id="wpfa_jquery-fileupload-process-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-image.js?ver=3.3.0" id="wpfa_jquery-fileupload-image-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-audio.js?ver=3.3.0" id="wpfa_jquery-fileupload-audio-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/wpf-third-party/file-uploader/js/jquery.fileupload-video.js?ver=3.3.0" id="wpfa_jquery-fileupload-video-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/assets/js/wpfa-jquery.fileupload-ui.js?ver=3.3.0" id="wpfa_wpfa-jquery-fileupload-ui-js"></script>
<script type="text/javascript" id="wpf_attach-js-extra">
/* <![CDATA[ */
var wpfaOptions = {"groups":{"1":{"accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages","maximum_file_size":268435456,"disable_delete":0,"restrict_using_others_attach":1,"max_uploads_per_day":0,"max_attachs_per_post":0},"2":{"accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|htm|html|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|js|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages","maximum_file_size":268435456,"disable_delete":0,"restrict_using_others_attach":1,"max_uploads_per_day":0,"max_attachs_per_post":0},"3":{"accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|htm|html|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|js|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages|png","maximum_file_size":268435456,"disable_delete":0,"restrict_using_others_attach":1,"max_uploads_per_day":100,"max_attachs_per_post":100},"4":{"accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|htm|html|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|js|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages","maximum_file_size":268435456,"disable_delete":1,"restrict_using_others_attach":1,"max_uploads_per_day":0,"max_attachs_per_post":30},"5":{"accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|htm|html|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|js|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages","maximum_file_size":268435456,"disable_delete":1,"restrict_using_others_attach":1,"max_uploads_per_day":0,"max_attachs_per_post":30}},"thumbnail_width":"400","thumbnail_height":"300","thumbnail_jpeg_quality":"50","thumbnail_png_quality":"9","bigimg_max_height":"1080","bigimg_jpeg_quality":"70","bigimg_png_quality":"9","attachs_per_load":"15","auto_upload":"1","boxed":"0","lightbox":"1","download_via_php":"0","accepted_file_types":"jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|htm|html|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|js|pdf|class|tar|zip|gz|gzip|rar|7z|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages","maximum_file_size":"268435456","disable_delete":"1","restrict_using_others_attach":"1","max_uploads_per_day":"0","max_attachs_per_post":"30","is_daily_limit_exceeded":"0","image_caption":"0","server_upload_max_filesize":"268435456","server_post_max_size":"268435456","server_maxs_min":"268435456","server_maxs_min_human":"256MB","server_post_max_size_human":"256MB","server_upload_max_filesize_human":"256MB","maximum_file_size_human":"256MB"};
var wpfaPhrases = {"attach files":"Adjuntar archivos","attached file":"Archivo adjunto","add files...":"A\u00f1adir fichero...","start upload":"Iniar subida","insert into post":"Insertar en la publicaci\u00f3n","start":"Iniciar","cancel":"Cancelar","delete":"Borrar","close":"Close","select all":"Seleccionar todo","processing...":"Procesando...","attachment is not available":"attachment is not available","choose a file or drag it here":"Choose a file or drag it here","please select a file(s) using right checkbox(es) to insert in post":"Please select a file(s) using right checkbox(es) to insert in post","error: file is too big. allowed size is: %s":"Error: File is too big. Allowed size is: %s","error: file is too big. server_upload_max_filesize is: %s":"Error: File is too big. server_upload_max_filesize is: %s","error: file is too big. server_post_max_size is: %s":"Error: File is too big. server_post_max_size is: %s","error: filetype not allowed":"Error: Filetype not allowed","the uploaded file exceeds the upload_max_filesize directive in php.ini":"The uploaded file exceeds the upload_max_filesize directive in php.ini","the uploaded file exceeds the max_file_size directive that was specified in the html form":"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form","the uploaded file was only partially uploaded":"The uploaded file was only partially uploaded","no file was uploaded":"No file was uploaded","missing a temporary folder":"Missing a temporary folder","failed to write file to disk":"Failed to write file to disk","a php extension stopped the file upload":"A PHP extension stopped the file upload","the uploaded file exceeds the post_max_size directive in php.ini":"The uploaded file exceeds the post_max_size directive in php.ini","file is too big":"File is too big","file is too small":"File is too small","filetype not allowed":"Filetype not allowed","maximum number of files exceeded":"Maximum number of files exceeded","image exceeds maximum width":"Image exceeds maximum width","image requires a minimum width":"Image requires a minimum width","image exceeds maximum height":"Image exceeds maximum height","image requires a minimum height":"Image requires a minimum height","file upload aborted":"File upload aborted","failed to resize image":"Failed to resize image","or drag and drop it here.":"o arr\u00e1strelo y su\u00e9ltelo aqu\u00ed.","max file size %1$s":"Tama\u00f1o m\u00e1ximo de archivo %1$s","drop here":"DROP HERE","choose a file":"Choose a file","attached successfully":"Attached Successfully","you can even paste image from clipboard by pressing ctrl+v.":"You can even paste image from clipboard by pressing Ctrl+V.","my media":"My Media","add to post":"add to post"};
//# sourceURL=wpf_attach-js-extra
/* ]]> */
</script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/plugins/wpforo-advanced-attachments/assets/js/attach.js?ver=3.3.0" id="wpf_attach-js"></script>
<script type="text/javascript" src="https://www.webempresa.com/foro/wp-content/themes/Divi/core/admin/js/common.js?ver=4.27.6" id="et-core-common-js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /><script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/foro/*"},{"not":{"href_matches":["/foro/wp-*.php","/foro/wp-admin/*","/foro/wp-content/uploads/*","/foro/wp-content/*","/foro/wp-content/plugins/*","/foro/wp-content/themes/Divi-child/*","/foro/wp-content/themes/Divi/*","/foro/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<!-- HFCM by 99 Robots - Snippet # 10: faldon-webempresa -->
<script>
  // @andres 202402 faldón top responsive con variables
  jQuery(function ($) {
    //
    //
    //
      //Solo cambiar aquí las variables
      const TEXTO = "Llévate tu plan de hosting + IA desde solo 2,96€/mes ✨ "; //Texto del mensaje del faldón
		const BOTON = "Ver promo"; //Texto del botón del faldón
      const LINK = "https://www.webempresa.com/hosting/cupon-descuento.html"; //Link hacia donde dirige el faldón
			const ISIMAGE = false; //Para incluir o no una imagen en el faldón (false o true)
			const URLIMAGE = "https://www.webempresa.com/wp-content/uploads/2026/03/logo-flash-sale-90dto.png"; //Url de la imagen subida al propio servidor
			const BGFALDON = "linear-gradient(90deg, #23044d 17%, #3a1e61 41%, #721374 73%, #24044e 100%)";
			const BGBTN = "linear-gradient(180deg, #af28f7 0%, #461a91 100%)";
			const BORDERBTN = "#881fc0";
			const HOVER_BGBTN = "linear-gradient(180deg, #a41eeb 0%, #3c1384 100%)";
			const HOVER_BORDERBTN = "#b142ed";
      //Fin de variables
      //
      //
      //
      var style = document.createElement("style");
      style.textContent = `
      <style>
      #we-top-discount {
        box-shadow: 0px 3px 6px rgba(34, 0, 42, 0.5);
      }
      .we-banner-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        margin: 0 auto;
        width: 100%;
        height: 60px;
        background: ${BGFALDON};
        text-decoration: none;
        transition: all 0.3s ease;
        overflow: hidden;
      }

      .we-banner-wrap {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px 15px;
        gap: 36px;
        height: 100%;
      }

      .we-logo-banner {
        height: 45.54px;
      }

      .we-banner-text {
        margin: 0;
				text-align: center;
        font-family: "Satoshi", "Sora Medium", system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", "Open Sans", "Helvetica Neue", sans-serif;
        font-style: normal;
        font-size: 22px;
        line-height: 26px;
        color: #ffffff;
        margin-left: 12px;
      }

      .we-wrap-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 12px 16px;
        position: relative;
        overflow: hidden;
      }

      .red-ball {
        z-index: 0;
        position: absolute;
        width: 39px;
        height: 39px;
        right: 21px;
        top: -6px;
        background: linear-gradient(270deg, #b21470 0.45%, #e31b53 55.69%);
        border-radius: 28px;
        transition: all 0.4s ease;
				display: none;
      }

      .we-banner-button {
        padding: 8px 20px;
        background: ${BGBTN};
        border-radius: 8px;
        font-family: "Sora Semibold", "Sora", system-ui, -apple-system,
          BlinkMacSystemFont, "Segoe UI", "Open Sans", "Helvetica Neue",
          sans-serif;
        font-style: normal;
        font-size: 16px;
        line-height: 21px;
        color: #ffffff;
        border: 0;
        text-decoration: none;
        position: relative;
        z-index: 1;
        box-shadow: 0px 0px 0px rgba(184, 21, 225, 0.5);
        transition: all 0.4s ease;
        border: 1px solid ${BORDERBTN};
				text-align: center;
      }

      .orange-ball {
        position: absolute;
        width: 24px;
        height: 24px;
        left: 21px;
        top: 49px;
        background: linear-gradient(90deg, #e06d09 1.35%, #f6c24a 101.35%);
        border-radius: 28px;
        z-index: 2;
        transition: all 0.4s ease;
				display: none;
      }
      .we-banner-container:hover .we-banner-button {
        box-shadow: 0px 0px 18px rgba(184, 21, 225, 0.9);
        background: ${HOVER_BGBTN};
        border: 1px solid ${HOVER_BORDERBTN};
      }
      .we-banner-container:hover .red-ball {
        top: -100px;
      }
      .we-banner-container:hover .orange-ball {
        top: 100px;
      }

      @media (max-width: 950px) {
        .we-banner-wrap {
          gap: 20px;
        }
        .we-logo-banner {
          height: 34px;
        }
        .we-banner-text {
          font-size: 18px;
          line-height: 20px;
        }
        .we-wrap-button {
          padding: 8px;
        }
        .we-banner-button {
          padding: 8px 12px;
          font-size: 13px;
          line-height: 15px;
        }
      }
      @media (max-width: 768px) {
        .we-banner-wrap {
          padding: 0px 8px;
          align-self: stretch;
          justify-content: space-between;
					gap:0px;
        }
        .we-logo-banner {
          height: 34px;
        }
         .we-banner-text {
          font-size: 15px;
          line-height: 18px;
				display:${ISIMAGE ? "none" : "block"};
        }
         .we-wrap-button {
           min-width: 138px;
         }
        .we-banner-button {
         
          padding: 6px 8px;
          font-size: 12px;
          line-height: 14px;
        }
      }
    </style>
        `;
    document.head.appendChild(style);
    var script = document.createElement("script");
    var IMAGE;
    if (ISIMAGE) {
      IMAGE = `<img src="${URLIMAGE}" class="we-logo-banner" id="click-faldon-hw" alt="Banner top image" />`;
    } else {
      IMAGE = "";
    }

    script.textContent = `
            jQuery('#top-header').prepend('<div id="we-top-discount"><a href="${LINK}" class="we-banner-container" id="click-faldon-hw" target="_blank" rel="noreferrer noopener"><div class="we-banner-wrap" id="click-faldon-hw">${IMAGE}<p class="we-banner-text" id="click-faldon-hw">${TEXTO}</p><div class="we-wrap-button" id="click-faldon-hw"><div class="red-ball"></div><div class="we-banner-button" id="click-faldon-hw">${BOTON}</div><div class="orange-ball"></div></div></div></a></div>');
        `;
    document.head.appendChild(script);
  });
  var isAdminBar = document.body.classList.contains('admin-bar');
	var topScrolled = !isAdminBar ? "35px" : "67px";
  var topDefault  = !isAdminBar ? "95px" : "127px";
	
	window.onscroll = function() {
    if (document.body.scrollTop > 200 || document.documentElement.scrollTop > 200) {
        document.getElementById('we-top-discount').style.display = 'none';
        document.getElementById('main-header').style.top = topScrolled;
    } else {
        document.getElementById('we-top-discount').style.display = 'block';
        document.getElementById('main-header').style.top = topDefault;
    }
};
</script>
<!-- /end HFCM by 99 Robots -->
<!-- HFCM by 99 Robots - Snippet # 11: Footer Políticas Cookies -->
<div class="site-footer">
	<div class="site-footer__copyright">
		<img src="https://www.webempresa.com/guias-mautic/wp-content/uploads/2024/03/iso-we-rojo_1.png" alt="Logo Webempresa" height="64">
<div style="text-align: center;">
<span style="color:#fff; display:inline-block; margin-right:8px;">© 1999-2026 - </span><a id="click-footer-hostingwordpress" href="https://www.webempresa.com/hosting/hosting-web.html" style="color:#fff; display:inline-block;">Webempresa Hosting</a> | <a id="click-footer-infolegal" href="https://www.webempresa.com/informacion-legal.html" style="color:#fff; display:inline-block;">Información Legal</a> | <a id="click-footer-aviso-legal" href="https://www.webempresa.com/aviso-legal.html" style="color:#fff; display:inline-block;">Aviso Legal</a> | <a id="click-footer-privacidad" href="https://www.webempresa.com/politica-privacidad.html" style="color:#fff; display:inline-block;">Política de Privacidad</a> | <a id="click-footer-cookies" href="https://www.webempresa.com/cookies.html" style="color:#fff; display:inline-block;">Política de Cookies</a><a id="click-footer-cambiar-cookies" style="cursor: pointer; color:#fff; margin-left:4px; display:inline-block;" onclick="window.cmp_api.showConsentsDialog()">(Cambiar consentimiento)</a>
</div>
	</div>
	
</div>
<!-- /end HFCM by 99 Robots -->
    <script>
    document.addEventListener('DOMContentLoaded', function () {
      var a = document.querySelector('.logo_container a, .et_pb_menu__logo a, #logo')?.closest('a');
      if (a) a.href = 'https://www.webempresa.com/foro/';
    });
    </script>
 <style id="et-builder-googlefonts-inline">/* Original: https://fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic&subset=latin,latin-ext&display=swap *//* User Agent: Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0) */@font-face {font-family: 'Lato';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6uyw4BMUTPHjxAwWg&skey=2d58b92a99e1c086&v=v25);}/* User Agent: Mozilla/4.0 (iPad; CPU OS 4_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/4.1 Mobile/9A405 Safari/7534.48.3 */@font-face {font-family: 'Lato';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6uyw4BMUTPHjxAwWQ&skey=2d58b92a99e1c086&v=v25#Lato) format('svg');}/* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: 'Lato';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-mPCc.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_FQfo.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAUi-v.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_FQfo.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wi_FQfo.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHh30AUi-v.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPHA.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjxAwWw.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwaPHA.ttf) format('truetype');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50XSwaPHA.ttf) format('truetype');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: 'Lato';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u-w4BMUTPHjxsIPx-mPCQ&skey=3404b88e33a27f67&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u_w4BMUTPHjxsI9w2_FQfr&skey=8107d606b7e3d38e&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u8w4BMUTPHjxsAUi-s&skey=51512958f8cff7a8&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u_w4BMUTPHjxsI5wq_FQfr&skey=5334e9c0b67702e2&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u_w4BMUTPHjxsI3wi_FQfr&skey=4066143815f8bfc2&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u8w4BMUTPHh30AUi-s&skey=cfa1ba7b04a1ba34&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u9w4BMUTPHh7USSwaPHw&skey=91f32e07d083dd3a&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6uyw4BMUTPHjxAwWA&skey=2d58b92a99e1c086&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u9w4BMUTPHh6UVSwaPHw&skey=3480a19627739c0d&v=v25) format('woff');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/l/font?kit=S6u9w4BMUTPHh50XSwaPHw&skey=d01acf708cb3b73b&v=v25) format('woff');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: 'Lato';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u-w4BMUTPHjxsIPx-mPCI.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI9w2_FQft.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHjxsAUi-q.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI5wq_FQft.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u_w4BMUTPHjxsI3wi_FQft.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u8w4BMUTPHh30AUi-q.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh7USSwaPGQ.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6uyw4BMUTPHjxAwXg.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh6UVSwaPGQ.woff2) format('woff2');}@font-face {font-family: 'Lato';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v25/S6u9w4BMUTPHh50XSwaPGQ.woff2) format('woff2');}</style>                            <!-- The blueimp Gallery widget for dialog -->
                <div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls" data-filter=":even" style="display: none;">
                    <div class="slides"></div>
                    <h3 class="title"></h3>
                    <a class="prev">‹</a><a class="next">›</a><a class="close">×</a><a class="play-pause"></a>
                    <ol class="indicator"></ol>
                </div>
                <!-- The blueimp Gallery widget for content images -->
                <div id="wpf-content-blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls" style="display: none;">
                    <div class="slides"></div>
                    <h3 class="title"></h3>
                    <a class="prev">‹</a><a class="next">›</a><a class="close">×</a><a class="play-pause"></a>
                    <ol class="indicator"></ol>
                </div>
                                <div id="wpforo-dialog-extra-wrap">
            <div id="wpforo-dialog-wrap">
                <div id="wpforo-dialog">
                    <div id="wpforo-dialog-header">
                        <strong id="wpforo-dialog-title"></strong>
                        <i id="wpforo-dialog-close" class="fas fa-window-close fa-2x"></i>
                    </div>
                    <div id="wpforo-dialog-body"></div>
                </div>
            </div>
            <div id="wpforo-dialog-backups"></div>
        </div>
                <form id="wpforo-report" data-title="Reportar al Administrador">
            <input type="hidden" id="wpforo-report-postid">
            <label for="wpforo-report-content"></label><textarea id="wpforo-report-content" required placeholder="Escribir mensaje"></textarea>
            <input id="wpforo-report-send" type="button" value="Enviar Reporte" title="Ctrl+Enter">
        </form>
        <div id="wpforo-notifications-bar">        <div id="wpforo-load" class="wpforo-load">
            <div class="wpf-load-ico-wrap"><i class="fas fa-3x fa-spinner fa-spin"></i></div>
            <div class="wpf-load-txt-wrap"><span class="loadtext"></span></div>
        </div>
                <div id="wpf-msg-box"></div>
        </div>    <script type="text/javascript">
        jQuery(document).ready(function ($) {

            for (let i = 0; i < document.forms.length; ++i) {
                let form = document.forms[i];
				if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="dBbaInmWNRF" value="[VCRTr" />'); }
if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="qScY-eEPZsrOKlG" value="NZdC2mlr" />'); }
if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="mojSOdfWupaUzeQ" value="7jyRLMsHlzQt1" />'); }
if ($(form).attr("method") != "get") { $(form).append('<input type="hidden" name="PVFrAaIO-m" value="1@pOa6KYJ2" />'); }
            }

            $(document).on('submit', 'form', function () {
				if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="dBbaInmWNRF" value="[VCRTr" />'); }
if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="qScY-eEPZsrOKlG" value="NZdC2mlr" />'); }
if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="mojSOdfWupaUzeQ" value="7jyRLMsHlzQt1" />'); }
if ($(this).attr("method") != "get") { $(this).append('<input type="hidden" name="PVFrAaIO-m" value="1@pOa6KYJ2" />'); }
                return true;
            });

            jQuery.ajaxSetup({
                beforeSend: function (e, data) {

                    if (data.type !== 'POST') return;

                    if (typeof data.data === 'object' && data.data !== null) {
						data.data.append("dBbaInmWNRF", "[VCRTr");
data.data.append("qScY-eEPZsrOKlG", "NZdC2mlr");
data.data.append("mojSOdfWupaUzeQ", "7jyRLMsHlzQt1");
data.data.append("PVFrAaIO-m", "1@pOa6KYJ2");
                    }
                    else {
                        data.data = data.data + '&dBbaInmWNRF=[VCRTr&qScY-eEPZsrOKlG=NZdC2mlr&mojSOdfWupaUzeQ=7jyRLMsHlzQt1&PVFrAaIO-m=1@pOa6KYJ2';
                    }
                }
            });

        });
    </script>
		
	</body>
</html>