Forum Replies Created
-
AuthorPosts
-
November 21, 2015 at 1:56 am in reply to: Form email subject not working after latest update ? #540025
The code that did the trick was the following:
add_filter('avf_form_subject','avia_change_mail_subject', 10, 3); function avia_change_mail_subject($subject, $new_post, $form_params) { $subject = "Table reservation request from " . urldecode($new_post['1_1']); return $subject; }Cheers!
JosueHi!
1. Can you post a screenshot/mockup of what would you want to achieve?
2. The sidebar issues is caused because a fullwidth slider is present in the layout, there’s an incompatibility between fullwidth elements and sidebar, you can either turn the slider into a non-fwd element like a easy slider or get rid of the sidebar altogether and switch to a entirely ALB layout using columns and widget elements.
Regards,
JosueNovember 21, 2015 at 1:25 am in reply to: All Share Links NOT Working On IPhone, IPad or Mac #540017You can remove the tooltip by editing line 236 in /includes/helper-social-media.php:
$this->html .= "<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";To:
$this->html .= "<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title=''><span class='avia_hidden_link_text'>{$name}</span></a>";Regards,
JosueNovember 21, 2015 at 1:16 am in reply to: Using Articles Blog – can't hide categories and dates since new update #540014Hey!
Try with this:
.entry-content-header span.blog-categories.minor-meta { display: none; }Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.template-blog header.entry-content-header { margin-top: -40px; background: white; z-index: 10; position: relative; }Cheers!
JosueNovember 21, 2015 at 12:46 am in reply to: With a side menu, change screen width at which mobile menu appears #540012Hey!
Try with this code:
@media only screen and (max-width: 1000px) { /*header*/ .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1} .responsive #top .av_header_transparency .logo img.alternate{display:none;} .responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1;} .responsive #top #main {padding-top:0 !important; margin:0;} .responsive #top #main .container_wrap:first-child{ border-top:none; } .responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; } .responsive .phone-info{float:none; width:100%; clear:both; text-align: center;} .responsive .phone-info span{margin:0;padding:0; border:none;} .responsive.html_header_top #header_main .social_bookmarks { right: 50px; width:auto; margin-top:-16px; } .responsive #header_main .inner-container, .responsive .main_menu{position: static;} .responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; } .responsive .logo a{display:table-cell; vertical-align: middle;} .responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block; max-height: 80px;} .responsive #header_main .container{height:auto !important; } .responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); } .responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;} .responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;} .responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;} .responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width: 1px;} .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;} .responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;} .responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;} .responsive #header .social_bookmarks li{float:none; display: inline-block;} .responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;} .responsive.bottom_nav_header.social_header .main_menu>div{height:auto;} .responsive .logo img{margin:0;} .responsive.html_header_sidebar #top #header .social_bookmarks{display:none;} .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;} .responsive.html_header_transparency #top .avia-builder-el-0 .container, .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0;} .responsive #top .av_phone_active_right .phone-info.with_nav span{border:none;} .responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, .responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, .responsive #top .av_header_transparency #header_main_alternate, .responsive .av_header_transparency #header_main .social_bookmarks li a, .responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span, .responsive #top .av_header_transparency #header_meta, .responsive #top .av_header_transparency #header_meta li, .responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;} .main_menu .avia-menu, #header_main_alternate, .fallback_menu{display:none;} .container #advanced_menu_toggle, #advanced_menu_hide{display:block;} .responsive.html_mobile_menu_tablet.html_logo_right #advanced_menu_toggle{left:auto;} }Best regards,
JosueHola,
Intenta lo siguiente:
1. Ve a Ajustes > Lectura y selecciona Resumen aqui – http://screencast.com/t/72Pbkb9y
2. Si aun asi siguen llegando codigos es porque tienes que definir un Resumen / Extracto manual en cada Entrada.Saludos,
JosueHey!
Remove this code from your Quick CSS:
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_single_small($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout;Cheers!
JosueNovember 20, 2015 at 2:21 pm in reply to: With a side menu, change screen width at which mobile menu appears #539606Hi,
Can you post the link to your website please?
Regards,
JosueAs the content is centered, in order to “decrease” the outer space you need to increase the maximum container width in General Layout > Dimensions > Maximum Container width.
Regards,
JosueHey,
The idea is to have a fullscreen slider with controls enabled and 2 slides, the first one would be the trigger for the video, and the second one would be the video itself, the trigger (in slide 1) would be a simple link with a class of
trigger– http://screencast.com/t/iEpZtYPw, so when this gets clicked it will trigger a click on the next slide control in the slider (JS code).Cheers!
JosueHi,
Can you post the link to your blog please?
Regards,
JosueHi!
1. Probably related to a server limitation, refer to the link Yigit just posted – http://kriesi.at/documentation/enfold/enfold-menu-item-limit/
2. The login link works just fine on my end.
Regards,
JosueHey!
Refer to:
https://kriesi.at/support/topic/open-all-toggles-at-once-with-sorting-support/Cheers!
JosueNovember 20, 2015 at 1:58 pm in reply to: content-slider (Inhalts-Slider) stop youtube video #539557Hi,
The content slider was not built with this exact escenario in mind, i’m afraid this would require some custom work, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.
Regards,
JosueHi,
1. To hide the post metas use the following CSS code:
span.post-meta-infos { display: none !important; }2. Regarding customizing the archive views, that’s possible but you’d need to override the archive.php template, although you can do this in the main theme, it is strongly recommended to switch to a child theme to avoid losing the modification when updating the theme, i’d suggest doing that first.
Cheers!
JosueNovember 20, 2015 at 12:10 pm in reply to: Still waiting for your reply – need your assistance #539454Will reply you shortly.
Regards,
JosueHey!
Check it now, Houzz icon should now appear in the header, here’s the code if someone else needs it:
// Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Houzz'] = 'houzz'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); // Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['houzz'] = array( 'font' =>'houzz', 'icon' => 'ue801'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 50, 1);If you don’t have a child theme you’d need to rely on Functionality.
Cheers!
JosueNovember 20, 2015 at 10:58 am in reply to: Problems with Header – Mobile Menu and Desktop Version! #539415Hi,
It’s because the way that element is being added, it shouldn’t be attached to the header, can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
Try simply duplicating
dynamic_headerhere:add_action( 'ava_before_bottom_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header_section_1' ); dynamic_sidebar( 'header_section_2' ); }Best regards,
JosueNovember 20, 2015 at 10:52 am in reply to: Form email subject not working after latest update ? #539412Should work now, check it.
Regards,
JosueNovember 20, 2015 at 10:38 am in reply to: WooCommerce Icon Showing In Mobile Even With Empty Cart #539403You are welcome, glad to help :)
Regards,
JosueNovember 19, 2015 at 11:36 am in reply to: Problems with Header – Mobile Menu and Desktop Version! #538881What would be the star widget ideal position?
Regards,
JosueHi,
Please note that our theme support is limited to theme-related questions or requests. That being said, does your code works with the default WordPress theme? i’d suggest trying with that first, if something doesn’t work with Enfold we may be able to help you debug that.
Regards,
JosueNovember 19, 2015 at 11:05 am in reply to: Problems with Header – Mobile Menu and Desktop Version! #538861Hey!
Try adding this code to the Quick CSS:
#header_main .widget { position: absolute !important; }Cheers!
JosueNovember 19, 2015 at 10:49 am in reply to: WooCommerce Icon Showing In Mobile Even With Empty Cart #538849Yea it should do that (when is empty), give it a try.
Best regards,
JosueNovember 19, 2015 at 10:32 am in reply to: WooCommerce Icon Showing In Mobile Even With Empty Cart #538838Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { .cart_dropdown{ display: none !important; } .html_visible_cart .cart_dropdown{ display: block !important; } }Cheers!
JosueNovember 19, 2015 at 10:23 am in reply to: WooCommerce Icon Showing In Mobile Even With Empty Cart #538831Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHm, no doesn’t seem to work either, can you please create a new topic including an access in a private reply? this thread is becoming a bit too long to handle.
Regards,
JosueNovember 19, 2015 at 1:52 am in reply to: Form email subject not working after latest update ? #538658Hi!
Form field
namesare now numeric based so the code should be updated to something like this:add_filter('avf_form_subject','avia_change_mail_subject', 10, 3); function avia_change_mail_subject($subject, $new_post, $form_params) { $subject = "Table reservation request from " . urldecode($new_post['avia_1_1']); return $subject; }Assuming
namewill always be the first element in the form.Best regards,
Josue -
AuthorPosts
