Forum Replies Created
-
AuthorPosts
-
October 29, 2014 at 11:03 pm in reply to: Add code to a specific page (Google Adwords Conversion Tracking) #343056
Hi Elizabeth,
Can you please create me an temporary FTP account? post it here as a private reply.
Regards,
JosueOctober 29, 2014 at 10:46 pm in reply to: Latest Blogs – Function.php Code Displaying the FIX #343048Hey!
Check it now, i changed the code to this:
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( is_singular('post') ) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); $args['heading'] = 'h1'; } return $args; }Best regards,
JosueBueno, en este punto no hay nada que podamos hacer de nuestra parte lamentablemente, es un problema externo al theme :/
Saludos,
JosueHi!
It should look fine now, here’s the setting i changed – http://screencast.com/t/1KXSLxUIP
Cheers!
JosuePrueba activar el theme por defecto de WordPress y fíjate si el problema persiste.
Hey!
Try with this code:
@media only screen and (max-width: 767px) { .av-submenu-container .menu-item-has-children { pointer-events: none; } }Cheers!
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hey!
Try adding this code to the Quick CSS:
#avia-menu li a { line-height: 330px !important; } .header-scrolled #avia-menu li a { line-height: 150px !important; }Cheers!
JosueOctober 29, 2014 at 8:48 pm in reply to: Latest Blogs – Function.php Code Displaying the FIX #342969Please re-check, i’m getting this error – http://screencast.com/t/cV484Vz5
Regards,
JosueHey!
The problem seems to be related to some break tags between the columns, try adding this to Quick CSS:
.toggle_content br { display: none; }Regards,
JosueOctober 29, 2014 at 6:33 pm in reply to: Latest Blogs – Function.php Code Displaying the FIX #342883Sure, can you please enable file editing or provide a temporary FTP account so i can edit the child theme functions.php file?
Cheers!
JosueHi!
Can you post a link to the page in question?
Best regards,
JosueOctober 29, 2014 at 6:24 pm in reply to: Blog Issues – Comment box & missing information on comment submission issues. #342869Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('#commentform input').on('blur', function(){ jQuery(this).siblings("label").show(); }); jQuery('#commentform input').on('focus', function(){ jQuery(this).siblings("label").hide(); }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHey Marie!
What’s the current state of the issues from this topic? the fixed header issue was solved in another thread from what i recall.
Regards,
JosueHi!
I’m no longer seeing those errors in your website, in any case it would be better to contact WPML support as this is not a theme issue.
Regards,
JosueHmm, i’m not seeing that on my end – http://screencast.com/t/vy9DOn1rZ
Can you post a screenshot of your view?
Cheers!
JosueHi!
Yes that’s correct,
LS_ROOT_URLit’s the theme path + /config-layerslider/LayerSlider.Best regards,
JosueOctober 29, 2014 at 5:30 pm in reply to: Format Twitter-Output in the Share links at the bottom of blog post #342828Hey!
It should work now, you were missing this line in child theme functions.php:
require_once( 'includes/helper-social-media.php' );Regards,
JosueIf you are referring to this, then modify the first part of the CSS code to this:
#header:after, #main:after { content: ""; position: absolute; width: 100%; height: 100%; z-index: 10; top: 0; opacity: 0; pointer-events: none; -webkit-transition: all linear 0.1s; -moz-transition: all linear 0.1s; transition: all linear 0.1s; }Best regards,
JosueOctober 29, 2014 at 4:57 pm in reply to: Tab in custom page template: how to make them work on mobile? #342807We looking forward to hearing from you :)
Regards,
JosueYou are welcome, alternatively you can use a plugin solution for the @font-face inclusion, like WP Font Face.
Regards,
JosueOctober 29, 2014 at 4:54 pm in reply to: Latest Blogs – Function.php Code Displaying the FIX #342805Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueEither that or add this at the very end of your child theme functions.php file:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $('#header, #main').on('click', function(){ $("#advanced_menu_hide").trigger('click'); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHey!
That’s not possible unfortunately as the sorting functionality happens on the client side and does not change the URL when it fires, so there is no way to obtain a permalink of that event.
Regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_filter( 'avf_google_content_font', 'add_custom_font'); add_filter( 'avf_google_heading_font', 'add_custom_font'); function add_custom_font($fonts) { $fonts['VerbCond Regular'] = 'VerbCond Regular'; return $fonts; }That should make appear the “VerbCond Regular” font in the Theme Options dropdowns, but it will only work if the @font-face inclusion is working correctly.
Cheers!
JosueHi Flore,
Can you post the link to your website please?
Regards,
JosueHey David!
The widget you mention is a WordPress widget so i think that’s the expected behavior, therefore i’d suggest looking for a plugin solution, like:
https://wordpress.org/plugins/extended-categories-widget/Best regards,
JosueHey!
No there are not additional options for the mobile menu but you can change its behavior with some custom CSS and JavaScript, try adding this code to the Quick CSS:
#header:after, #main:after { content: ""; background: black; position: absolute; width: 100%; height: 100%; z-index: 10; top: 0; opacity: 0; pointer-events: none; -webkit-transition: all linear 0.1s; -moz-transition: all linear 0.1s; transition: all linear 0.1s; } .show_mobile_menu #header:after, .show_mobile_menu #main:after { opacity: 0.5; pointer-events: auto; } #mobile-advanced{ background: #F7F7F7; height: 100%; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all 0.13s ease; -moz-transition: all 0.13s ease; transition: all 0.13s ease; } .show_mobile_menu #mobile-advanced{ -webkit-transform: translate(-80%, 0); -moz-transform: translate(-80%, 0); -ms-transform: translate(-80%, 0); transform: translate(-80%, 0); } .avia_transform3d .show_mobile_menu #mobile-advanced{ -webkit-transform: translate3d(-80%, 0, 0); -moz-transform: translate3d(-80%, 0, 0); transform: translate3d(-80%, 0, 0); }And this to a child enqueued custom JS file or in the Enfold GA field:
(function($){ $(window).load(function() { $('#header, #main').on('click', function(){ $("#advanced_menu_hide").trigger('click'); }); }); })(jQuery);Cheers!
JosueOctober 29, 2014 at 7:56 am in reply to: Latest Blogs – Function.php Code Displaying the FIX #342591Hi Julie!
You are missing the PHP opening tag
<?php, functions.php should look like this:<?php add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ( $args['title'] == 'Blog - Latest News' ) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); $args['heading'] = 'h1'; } return $args; }Cheers!
JosueOctober 29, 2014 at 7:51 am in reply to: How to define a full width section above footer on almost every page of site #342588Hey!
You can use the
get_footerhook, try adding this at the very end of your theme / child theme functions.php file:add_action('get_footer', 'add_cta_before_footer'); function add_cta_before_footer(){ ?> <div class="container_wrap" id="cta"> <div class="container"> <?php echo do_shortcode("[av_heading heading='Hello' tag='h3' style='blockquote modern-quote modern-centered' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font='' custom_class=''][/av_heading]"); ?> <?php echo do_shortcode("[av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='']"); ?> </div> </div> <?php }Adjust as needed.
Cheers!
JosueHey Adendum!
Try adding this code to theme / child theme functions.php:
add_action( 'woocommerce_thankyou', function( $order_id ){ $order = new WC_Order( $order_id ); $url = 'http://redirect-here.com'; if ( $order->status != 'failed' ) { echo "<script type="text/javascript">window.location = '".$url."'</script>"; } });Reference:
http://stackoverflow.com/questions/25114082/woocommerce-action-hook-to-redirect-to-custom-thank-you-pagePlease note that this request is outside our support scope.
Regards,
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
