Forum Replies Created
-
AuthorPosts
-
November 13, 2015 at 1:31 am in reply to: How mp4 videos in lightbox to open and to autoplay? #535174
Hey!
Enfold lightbox activation doesn’t enable autoplay by default, you’d need to create your own lightbox activation and include the autoplay parameter for youtube links.
https://kriesi.at/support/topic/youtube-video-not-working-in-ligthbox/#post-28886Regards,
JosueYour site still doesn’t load for me, your server is probably blocking some countries.
ERR_CONNECTION_TIMED_OUTI’ll ask my colleagues to see if they can load it.
Regards,
JosueNovember 13, 2015 at 1:23 am in reply to: I'm not able to update to version 4.3.1. even manually #535170Hola,
– Los códigos que te salen son de una de las pruebas que hice, no deberían salir porque me asegure de borrar el código que los genereaba, sin embargo me parece que es por el plugin de cacheo WP Rocket, trata de vaciar el cache y ver si se arregla.
– La fuente del menu la veo como Open Sans – http://screencast.com/t/9zgNrof3cSQG
Los 2 plugins de Transients cumplen la misma función, la diferencia es que el “Manager” te permite seleccionar que Transient borrar y el otro “Cleaner” borra todos juntos, prueba con el otro si es que uno no te funciona.
Saludos,
JosueNovember 11, 2015 at 10:50 pm in reply to: YouTube video ignores start time when embedded but works when link is forwarded #534418Hey!
Refer to:
https://kriesi.at/support/topic/enfold-new-light-box-magnific-popup-you-tube-video-urls/Best regards,
JosueNovember 11, 2015 at 10:40 pm in reply to: I'm not able to update to version 4.3.1. even manually #534411Hola Alonso,
Si, justo iba a pasar a explicarte la solucion, sucede que el auto-update utiliza Transients, esto cachea la informacion que le llega de Themeforest, osea sigue creyendo que estamos en la 3.3 porque esta usando una informacion cacheada, la solucion es eliminar los Transients, para eso utilize un plugin:
https://wordpress.org/plugins/transients-manager/Lo instalas, vas a Herramientas > Transients y borras los que dicen theme update, pruebalo y me avisas como va.
Saludos,
JosueHi!
Your site is not loading for me:
ERR_CONNECTION_TIMED_OUTBest regards,
JosueNovember 11, 2015 at 3:47 pm in reply to: I'm not able to update to version 4.3.1. even manually #534111Ya deberia salir, fijate.
Hey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueNovember 11, 2015 at 1:58 pm in reply to: How to edit item description using Enfold / WooCommerce w/ Avia Layout Editor #534002Hey!
No, thing is, WC uses the post content to populate the Description tab, in ALB-enabled Products, the post content is the full tree of shortcodes generated by Enfold which can’t be rendered in the Tab.
However, there’s a solution that requires rewriting a pair of WC functions, copy the following to your child theme functions.php:
if ( ! function_exists( 'woocommerce_default_product_tabs' ) ) { function woocommerce_default_product_tabs( $tabs = array() ) { global $product, $post; // Description tab - shows product content if ( $post ) { $tabs['description'] = array( 'title' => __( 'Description', 'woocommerce' ), 'priority' => 10, 'callback' => 'woocommerce_product_description_tab' ); } // Additional information tab - shows attributes if ( $product && ( $product->has_attributes() || ( $product->enable_dimensions_display() && ( $product->has_dimensions() || $product->has_weight() ) ) ) ) { $tabs['additional_information'] = array( 'title' => __( 'Additional Information', 'woocommerce' ), 'priority' => 20, 'callback' => 'woocommerce_product_additional_information_tab' ); } // Reviews tab - shows comments if ( comments_open() ) { $tabs['reviews'] = array( 'title' => sprintf( __( 'Reviews (%d)', 'woocommerce' ), $product->get_review_count() ), 'priority' => 30, 'callback' => 'comments_template' ); } return $tabs; } } if ( ! function_exists( 'woocommerce_product_description_tab' ) ) { function woocommerce_product_description_tab() { wc_get_template( 'description-tab-mod.php' ); } }And create
description-tab-mod.phpfile there too, with the following contents:<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $post; $heading = esc_html( apply_filters( 'woocommerce_product_description_heading', __( 'Product Description', 'woocommerce' ) ) ); ?> <?php if ( $heading ): ?> <h2><?php echo $heading; ?></h2> <?php endif; ?> <?php the_excerpt(); ?>Make sure you set a Short Description in each Product because that will be the content of the Description tab.
Cheers!
JosueHi!
Please post a link to the site.
Best regards,
JosueCould be the last piece of code in child theme functions.php, it looks like this:
add_filter('avia_load_shortcodes', function($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }, 15, 1);Try removing it.
November 11, 2015 at 1:27 pm in reply to: I'm not able to update to version 4.3.1. even manually #533980Hola,
Si deseas, pasame un acceso FTP a uno de tus sitios por privado, podria probar algunas cosas.
Saludos,
JosueNovember 11, 2015 at 1:05 pm in reply to: Change font color of text in a form before the form is typed in #533965Hey!
Try with this:
::-webkit-input-placeholder{ color: #888888!important; } ::-moz-placeholder{ color: #888888!important; } :-ms-input-placeholder { color: #888888!important; }Regards,
JosueHi,
Can you hand me a temporary FTP / SFTP account? it’s kinda difficult to work with the default WP theme editor.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueYeah i’d suggest you stick to MC4WP for the moment, you should note that the Enfold MC widget is in its first iteration, in the future more features like that could be added in the GUI, feel free to post it as a request if you want.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Add this to Quick CSS:
.html_header_top.html_logo_center .logo { left: 30%; -webkit-transform: translate(-20%, 0); -ms-transform: translate(-20%, 0); transform: translate(-20%, 0); }Cheers!
JosueHey!
Try this code:
.avia_mega_text_block { text-align: left; }Cheers!
JosueYou can put a is_page conditional before the array so it only gets added to forms in certains pages:
add_filter('ava_mailchimp_contact_form_elements', 'add_hidden_referrer_element', 10, 1); function add_hidden_referrer_element($args) { $hidden_values = array( 'referrer' => array( "type"=>'hidden', "value" => "" ), 'bar' => array( "type"=>'hidden', "value" => "" ), 'foo' => array( "type"=>'hidden', "value" => "" ) ); if(is_page(3763)){ $hidden_values['referrer']['value'] = 'One Value'; $hidden_values['bar']['value'] = 'One Value'; $hidden_values['foo']['value'] = 'One Value'; return array_merge($hidden_values, $args); }elseif(is_page(32)){ $hidden_values['referrer']['value'] = 'Another Value'; $hidden_values['bar']['value'] = 'Another Value'; $hidden_values['foo']['value'] = 'Another Value'; return array_merge($hidden_values, $args); }else{ return $args; } }Hi!
Change the menu position settings in Enfold > Header > Header layout.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueNovember 10, 2015 at 4:23 pm in reply to: I'm not able to update to version 4.3.1. even manually #533392Hey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi Peter!
Use this:
div.slidealt { z-index: 1000 !important; background: #f8f8f8; position: relative; }Best regards,
JosueHey!
The widget you’re referring to is the Categories widget right? if so, refer to the following on how to exclude specific categories from it:
https://wordpress.org/support/topic/excluding-category-from-widget#post-2583723Cheers!
JosueHi!
You’d need to use a plugin for this, like:
https://www.wonderplugin.com/wordpress-audio-player/examples/wordpress-single-button-audio-player-id9/Best regards,
JosueHey!
Can you paste the full code you’re using to include the menu?
Cheers!
JosueNovember 10, 2015 at 3:32 pm in reply to: Enfold – You might also like, how is that controlled and where is it? #533345 -
AuthorPosts
