Forum Replies Created
-
AuthorPosts
-
De nada, un gusto :)
August 26, 2014 at 11:33 pm in reply to: Why won't bullets display white like the associated text? #309572Hey!
The code is still using text-indent:
http://screencast.com/t/WEQhuyq83RQRemember to purge your caching plugins after changing something.
Cheers!
JosueYou are welcome. Also, you could put it on the functions.php of the child theme (if you use one), or use a plugin like Functionality to abstract custom functions from the theme files.
Cheers!
JosuePuedes ponerlo en el functions.php del theme pero te recomendaria mantenerlo separado del theme original (para evitar sobreescritura cuando se actualice), puedes lograr esto via child theme o con este plugin.
Sobre el código, el primer six se refiere a la columna del thumbnail, y el segundo al del texto (la grilla es de 12), por ej si quieres aumentar mas el thumbnail, lo cambiarias a 8 y el segundo a 4:
add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20); function avia_add_image_div() { echo "<div class='eight units single-product-main-image alpha'>"; } function avia_close_image_div() { global $avia_config; $avia_config['currently_viewing'] = "shop_single"; echo "</div>"; } add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3); function avia_add_summary_div() { echo "<div class='four units single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; }August 26, 2014 at 11:22 pm in reply to: New Blog Layout Can't Make Featured Image Full Width #309566Hey Josh!
For some reason the z-index value was being changed on mobile, try adding this to ensure that its always position: relative and z-index: 10:
header.entry-content-header { z-index: 10; position: relative !important; }I’d suggest to reduce the title font-size on mobiles too.
Best regards,
JosueAugust 26, 2014 at 11:10 pm in reply to: Why won't bullets display white like the associated text? #309563Hi!
This should be the final code:
.page-id-6568 .entry-content-wrapper li:before { content: ‘• ‘!important; color: white!important; float: left!important; margin-right: 10px!important; } .page-id-6568 .entry-content-wrapper li { margin-left: -15px!important; } .page-id-6568 .entry-content-wrapper ul { list-style: none !important; }Regards,
JosueYou are welcome Daniel, glad to help :)
Regards,
JosueHey!
What error did you get? make sure you are using the latest version of Enfold and put the custom code at the very end of the functions.php file.
Best regards,
JosueYou are welcome Dinh, glad to help :)
Regards,
JosueAñade este código al archivo functions.php del theme / child theme:
add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20); function avia_add_image_div() { echo "<div class='six units single-product-main-image alpha'>"; } function avia_close_image_div() { global $avia_config; $avia_config['currently_viewing'] = "shop_single"; echo "</div>"; } add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3); function avia_add_summary_div() { echo "<div class='six units single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; }Eso hará que el sumario de producto y el thumbnail en la vista de producto individual sean de 6 columnas cada una, eso lo puedes modificar en el mismo código (busca las dos veces en las que se menciona “six”).
Hi Daniel!
Try the following:
Go to Appearance > Menu and enable CSS Classes in “Screen Options”, then set a class of “noMobile” to the menu items you don’t want in the mobile menu.Cheers!
JosueHi!
It’s fixed now, the problem was caused by this code you had in child theme functions.php:
function vc_remove_wp_ver_css_js( $src ) { if ( strpos( $src, 'ver=' ) ) $src = remove_query_arg( 'ver', $src ); return $src; } add_filter( 'style_loader_src', 'vc_remove_wp_ver_css_js', 9999 ); add_filter( 'script_loader_src', 'vc_remove_wp_ver_css_js', 9999 );It’s commented now.
Regards,
JosueHey!
You can put shortcodes in the image captions, try creating a Button in a separate Page (don’t enter layout builder, use the magic wand), then paste that generated code to the image caption in the other page.
Best regards,
JosueAugust 26, 2014 at 9:17 pm in reply to: Why won't bullets display white like the associated text? #309536Hi!
Replace the text-indent:
.page-id-6568 .entry-content-wrapper li { text-indent: -15px!important; }For margin-left:
.page-id-6568 .entry-content-wrapper li { margin-left: -15px!important; }Best regards,
JosueYou are welcome Crys, glad to help :)
Regards,
JosueYou are welcome Nik, glad to help :)
Regards,
JosueHey Tal!
Try selecting this option in the color section settings – http://screencast.com/t/Z48qJr1Hp2l5
Regards,
JosueHi!
That background is being set in the layer options, you need to clear that here:
http://screencast.com/t/IDWP0k72kFOCheers!
JosueHola,
Para eso tendrías que cambiar las columnas del single-product template, acá hay un articulo que explica eso en detalle:
http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/Saludos,
JosueHey Matthieu!
Can you post a link to the page where you are trying this?
Remember that you need to enable this first and set a class of “custom_class” to the iconbox elements you want to affect.
Best regards,
JosueAugust 26, 2014 at 8:00 pm in reply to: New Blog Layout Can't Make Featured Image Full Width #309499Try with this code:
#header_main .container { height: 58px !important; line-height: 58px !important; } div#main { padding-top: 60px !important; } strong.logo, .logo a, .logo img { height: 116px !important; max-height: 116px !important; }Cheers!
JosuePrueba con este código:
.single-product #main .container{ min-height: 800px; }Hi Vince!
Have you tried setting a manual Excerpt?

Regards,
JosueCan you post the link to the page where you are trying this?
Regards,
JosueHey Matthieu!
You’d need to use CSS for that, something like this in Quick CSS will do it (i’m supposing you set a custom class to the iconbox):
.custom_class .iconbox_top:before { content: ""; width: 100%; background: url(put_background_image_here) no-repeat center top; background-size: cover; height: 60px; /* change this for the height of your preference */ position: absolute; top: -61px; /* change this for the height of your preference */ left: 0; } /* Global */ .iconbox_top { position: relative; }Regards,
JosueHey!
You need to wrap the icon inside the hyperlink first in order to make it style-able – http://screencast.com/t/8DmZJNAIIY
Cheers!
JosueHey Michael!
How can I save the setting of my own option “special-invers” ?
Not sure what you mean here, could you please elaborate on what is left to do? from what i see in the sample page the span.special-invers is correctly wrapping the heading elements who have this option selected.
Best regards,
JosueHi!
You need to set a Sidebar to that Page in order to get that blog layout.
Regards,
Josue -
AuthorPosts


