Forum Replies Created
-
AuthorPosts
-
November 30, 2015 at 12:34 am in reply to: Video background fullscreen (Enfold – Photography) #544238
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $(this).trigger('resize'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHi,
Can you please hand me a temporary FTP / SFTP account? post it here as a private reply.
Regards,
JosueEl menu esta correcto, el problema es que tienen que haber secciones con esos IDs en el contenido de la página.
November 30, 2015 at 12:25 am in reply to: multiple mailadresses in contact form comma seperated not working correctly #544233Hi,
Can you please hand me a temporary FTP / SFTP account? post it here as a private reply.
Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
function modify_featured_image_size($avia_config) { $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>1000, 'crop' => true ); return $avia_config; } add_filter('avf_modify_thumb_size', 'modify_featured_image_size', 10, 1);Remember to regenerate the thumbnails afterwards.
Cheers!
JosueHola,
Estaba mirando el home pero solo veo una sección y no “#historia, #nosotros, etc”, por eso que no funcionan los anclajes.
Saludos,
JosueNovember 29, 2015 at 11:45 am in reply to: Inserting breadcrumbs as shortcode not working with transparant glassy header #544126Hi!
Try the following:
https://kriesi.at/support/topic/breadcrumb-w-shortcode-only-appears-if-header-no-transparency/#post-469042Regards,
JosueNovember 29, 2015 at 11:42 am in reply to: Breadcrumbs displaying events twice to same link, using ECP #544125Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
Seems you managed to achieve it with columns + images, correct?
Best regards,
JosueNovember 29, 2015 at 3:49 am in reply to: multiple mailadresses in contact form comma seperated not working correctly #544059Hey!
Can you enable theme editing in functions.php – http://screencast.com/t/5tj2X3ToBquZ? i’d like to do some tests with the code.
Cheers!
JosueHi!
The font files don’t exist in the path you’re referencing them:
http://screencast.com/t/X39XOFYOuI’d suggest uploading the fonts to /wp-content/uploads/ or in a child theme.
Cheers!
JosueHi!
In the Code Block, change the timeout from
3000to0.Regards,
JosueNovember 28, 2015 at 1:50 pm in reply to: multiple mailadresses in contact form comma seperated not working correctly #543934Hey!
In the code, you need to change
YOUR_SITE_URL.comby your actual site URL.Best regards,
JosueNovember 27, 2015 at 12:42 pm in reply to: multiple mailadresses in contact form comma seperated not working correctly #543580Hey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter('avf_form_autoresponder_from', 'avia_change_autoresponder_from', 10, 3); function avia_change_autoresponder_from($from, $new_post, $form_params){ $from = "wordpress@YOUR_SITE_URL.com"; return $from; }Cheers!
JosueNovember 27, 2015 at 12:32 pm in reply to: Open Manual Link in Lightbox in Full Width Easy Slider #543576Hey!
You should choose option 2 –
Image Link.Regards,
JosueHi,
The Google Analytics tracking code field in Theme Options, the
<style></style>code containing the font embedding can be put there.Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
Open /enfold/config-templatebuilder/avia-shortcodes/postslider.php and look for line:
$thumbnail = get_the_post_thumbnail( $the_id, $image_size );Replace it by this:
$thumbnail = get_the_post_thumbnail( $the_id, 'full');Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
# # wrap single product image in an extra div # function avia_add_image_div() { echo "<div class='single-product-main-image alpha'>"; } function avia_close_image_div() { echo "</div>"; } # # wrap single product summary in an extra div # function avia_add_summary_div() { echo "<div class='single-product-summary'>"; } function avia_close_summary_div() { echo "</div>"; //close out the summary get_sidebar(); } function avf_product_sidebar_layout_mod($layout){ if( is_single() )$layout = "sidebar_left"; return $layout; } add_action('init', 'ava_product_sidebar_mod'); function ava_product_sidebar_mod() { add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 ); add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 ); add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 ); add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 ); add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5); }And this to Quick CSS:
@media only screen and (min-width: 767px) { .single-product .product { width: 68%; margin-right: 4%; clear: none; float: left; } }That will create a right sidebar in the single product view.
Cheers!
Josue-
This reply was modified 9 years, 10 months ago by
Josue.
November 26, 2015 at 10:07 pm in reply to: product show detail button – user login – mainpage slider #543412Hi!
1. On your Shop Page edit screen, click this button, that will allow you to use Enfold’s Template Builder, there look for the “Plugin Additions” tab and drag a Shop element to the content.
4. Use this plugin: https://wordpress.org/plugins/woocommerce-checkout-manager/
BTW, you can write in Turkish if you want.
Best regards,
JosueHola,
El problema es que, debido a que estas usando elementos de ancho completo en el home, el sidebar se muestra abajo del todo. Lo que podrias hacer es:
– Desactivar el Sidebar para esta pagina (en las opciones de la derecha).
– Re-crear el layout “contenido-sidebar” con elementos del editor de plantillas, ej: Columnas
– Colocar un Elemento de Widgets (del editor de plantillas) para mostrar la caja de FacebookSaludos,
JosueHi!
Did you add the code to the GA field?
https://kriesi.at/support/topic/custom-font-not-working/#post-515535Best regards,
JosueHey!
1. Are you referring to the news listing view or the news single view? please upload the image to dropbox or imgur then post the link here.
2. RevSlider is not bundled with the theme, you’d need to update it separately and you shouldn’t worry about data loss as that’s saved in the DB.
Regards,
JosueNovember 26, 2015 at 11:28 am in reply to: Multiple Media Sizes Being Saved / LayerSlider Site Speed Issues #542996Hi!
1. No, it doesn’t.
2. It tells WordPress to stop generating those image sizes (registered by Enfold) from image uploads.Best regards,
JosueHi!
Try placing it inside a Section or a Column, if you place the Code Block by its own it will create an automatic section for it and it will create that white block.
Cheers!
JosueHey!
The debug window is not meant to accept direct HTML input, i’d suggest using a Code Block element to do that instead.
Regards,
JosueNovember 25, 2015 at 10:46 am in reply to: Content masonry grid displays only 1 post from chosen sortable categories #542251Hi,
This will require some debugging, can you please create us a temporary FTP / SFTP account? post it here as a private reply.
Regards,
JosueHey!
Can you access the video directly?
https://www.youtube.com/embed/SyrxXP7tOykRegards,
Josue-
This reply was modified 9 years, 11 months ago by
Josue.
Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
Can you please expand on what you’re trying to do exactly? where you want to add the post meta info (within the ALB layout)? a mockup would be helpful.
Regards,
Josue -
This reply was modified 9 years, 10 months ago by
-
AuthorPosts
