Forum Replies Created
-
AuthorPosts
-
Hola,
Prueba añadir esto al functions.php de tu theme / child theme:
add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; return $items; }
Saludos,
JosueHola,
Me puedes pasar un acceso de admin por privado? has probado desactivar los plugins?
Saludos,
JosuePuedes pasarme un acceso FTP tambien porfavor?
Pues si eso viene de tu mismo host entonces haz eso, pero no es necesario instalar CF7, una vez tengas el SMTP funcionando el formulario de Enfold va a funcionar tambien.
You are welcome, glad to help :)
Regards,
JosueGenial, si necesitas ayuda con eso no dudes en abrir otro hilo que para eso estamos :)
Saludos,
JosueHey!
You could try creating a new, custom shortcode just for this, try adding this to functions.php:
function custom_shortcode_func() { ob_start(); echo do_shortcode("[av_video src='".get_field('youtube')."' format='16-9' width='16' height='9']"); $output = ob_get_clean(); return $output; } add_shortcode('acf_youtube_embed', 'custom_shortcode_func');
Then use:
[acf_youtube_embed]
Cheers!
JosueGood to know and glad to hear that Michael!
Cheers!
JosueFeel free to do it, i’ll leave the thread open (if you can, edit your last post instead of adding a new message, to avoid creating multiple pages).
It could work, did you try it?
Glad to help, hope you manage to sort this out!
Regards,
JosueSi, debe ser por las pruebas que hice.
OK puedes probar subirlo a 256M? me puedes pasar un usuario de administrador via respuesta privada?
Saludos,
JosueCorrecto, alli esta la fuente del error. El codigo lo que puedes sacar.
Eso indica que el problema esta en el hosting, tendrás que contactar con tu proveedor para solucionar el problema.
Saludos,
JosueSi, tendrias que poner el dominio allí, pero probaste esto tambien?
Go to the login screen of your WordPress installation and attempt to recover your user password, if you do get the e-mail then it may be that your server is only allowing e-mails sent from the default WP address (should be like “ (Email address hidden if logged out) ”).
¿Te llega el correo de recuperacion de contraseña?
Ok, me avisas cualquier cosa.
Saludos,
JosueMarch 22, 2016 at 3:30 am in reply to: Accordion toggle align to top of viewport // Deeplinking #601640Hey,
Try the following, open js/shortcodes.js and look for this block:
function trigger_default_open(hash) { if(!hash && window.location.hash) hash = window.location.hash; if(!hash) return; var open = heading.filter('[data-fake-id="'+hash+'"]'); if(open.length) { if(!open.is('.activeTitle')) open.trigger('click'); window.scrollTo(0, container.offset().top - 70); } }
Change it to:
function trigger_default_open(hash) { if(!hash && window.location.hash) hash = window.location.hash; if(!hash) return; var open = heading.filter('[data-fake-id="'+hash+'"]'); if(open.length) { if(!open.is('.activeTitle')) open.trigger('click'); window.scrollTo(0, open.offset().top - 160); } }
Best regards,
JosueHola,
SMTP es un protocolo de envio, el cual necesita de credenciales para funcionar, tal vez no sea lo que necesites en realidad, haz pruebas sin ese plugin primero (punto 2):
Saludos,
JosuePrueba subir el memory limit:
https://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/Hey!
There’s a shortcode you can use:
[av_video src='http://www.youtube.com/watch?v=G0k3kHtyoqc' format='16-9' width='16' height='9' custom_class='']
Best regards,
JosueHey!
Have you checked this plugin?
http://codecanyon.net/item/essential-grid-wordpress-plugin/7563340Best regards,
JosueHey!
Try setting a manual excerpt for the Posts:
Regards,
JosueEl problema es ese al parecer, al no tener control directo sobre los widgets en ingles no podemos quitar esos
br
innecesarios, lo que podrías hacer es instalar este plugin y manejar dos widgets para cada idioma:
https://wordpress.org/plugins/wpml-widgets/Saludos,
JosueHola,
Ya esta arreglado, esta opcion en Polylang tiene que estar desactivada – http://screencast.com/t/FybyZY5pd
Saludos,
JosueHey!
The issue is related to the /wp-admin/admin-ajax.php file, it returns a
forbidden
error when Enfold tries to access it on the ALB pop-ups, this is a permissions-related issue, perhaps if you ask your host about it they could find a solution that works with PHP 7.0.Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHola,
No, no los veo en ninguno de tus mensajes (ponlos donde dice Private Content debajo de la caja principal).
Saludos,
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-content, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content { visibility: visible; -webkit-animation: caption-bottom 1.5s 1 ease-out; animation: caption-bottom 1.5s 1 ease-out; } .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title, .avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-title { visibility: visible; -webkit-animation: caption-top 1.5s 1 ease-out; animation: caption-top 1.5s 1 ease-out; }
Cheers!
Josue -
AuthorPosts