Forum Replies Created
-
AuthorPosts
-
Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi!
– Scheme markup is built-in.
– You can disable LayerSlider – http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/
– Yes, you can set a custom class to each element and make it so it doesn’t show / show on mobile / desktop with CSS.
– Hm i don’t think so, Enfold is the most newest so it’s better optimized overall.Cheers!
JosueThe fixed widget seems to be working fine now, here’s what i see on my end – http://screencast.com/t/9sWtVeWeU
Regards,
JosuePlease try contacting your provider, the issue is related to theme but to a WordPress file.
Regards,
JosueHi!
We’d need to see the site live in order to debug that kind of issue. Let us know when you publish the site.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueJanuary 22, 2016 at 11:49 pm in reply to: An error occured. It seems your are no longer logged in. Please reload the page #570375Hey!
Can you try checking if the issue occurs on another computer / browser?
Best regards,
JosueHey!
Change the “Menu and Logo Position” to “Logo Left, Menu Below”.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueAlso, please re-check the username provided here, it’s not working.
Hi!
I did some tests and indeed the autoresponder mail is not firing off, got the normal message but afterwards i’m getting this mail delivery failure message (which means that the provided SMTP access doesn’t have permissions to use the server or is not valid):
SMTP error from remote mail server after end of data: 550 5.7.1 [BFD] Sender prohibited by SPFI honestly don’t know what could be the culprit here as both the main message and the autoresponder use essentially the same code (you can check it in
/framework/php/class-form-generator.php, 895-920).I’d suggest trying out with a third-party form plugin to see if the issue occurs there too (if it doesn’t i can help you stylize to match the Enfold’s appearance):
https://wordpress.org/plugins/contact-form-7/Cheers!
JosueJanuary 22, 2016 at 10:38 am in reply to: Avia Layout Builder Not Working Since 3.47 Upgrade #569886Hi!
The issue you’re having is related to the /wp-includes/js/tinymce/wp-tinymce.php file which can not be accesed by WordPress (forbidden error). I’d suggest re-installing WordPress (specifically the
wp-includesfolder).Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueOk, check it now, here’s the code i used:
function enfold_tag_title_func() { $queried_object = get_queried_object(); return $queried_object->name; } add_filter('avf_tag_label_names', 'enfold_tag_title_func');Cheers!
JosueHi,
Can you please hand me a WordPress administrator account / FTP access? post it here as a private reply.
Regards,
JosueHey!
You can change the links color for transparent header specifically in Theme Options > Header > Transparency Options.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHi,
Enfold form does use
wp_mail. Can you please create us a WordPress administrator account? post it here as a private reply.Regards,
JosueHey!
Please note that, LayerSlider doesn’t support Wistia embeds out of the box:
http://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin-/1362246/comments?page=218&filter=all#comment_5775794Although it may take some custom code we’d like to take a look but the access you provided isn’t working.
Best regards,
JosueHi!
1. You can use this conditional:
if(is_singular('story'){ }2. You can multiple conditionals in the same block:
add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if ( wp_is_mobile() ) { $logo = "http://goldhillmuseum.org.uk/wp-content/uploads/2015/06/gold-hill-museum-header-340x156.png"; } elseif( is_page(array(301, 302, 303)) ){ $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png"; } elseif ( is_singular('story') ){ $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png"; } else { } return $logo; }Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
I tried reproducing the issue without success, i changed this setting and this was the result – http://screencast.com/t/LMubPOBp
Cheers!
JosueHey!
Try changing line 566:
$excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_magazine_excerpt_length' , 60) , apply_filters( 'avf_magazine_excerpt_delimiter' , " "), "…", true, '');To:
$excerpt = get_the_content($entry->ID);Cheers!
JosueHi!
I’ve tagged Kriesi to this topic.
Cheers!
JosueHi!
From what i see i guess you achieved the desired result, let us know if need further assistance.
Regards,
JosueHi!
The issue comes from the code you’re using, it is replacing the default social icons (
avf_default_icons) with your custom ones, what you need to do is create new icons entries instead of replacing them, and select those for the header social icons, that way the default share ones remain unaffected:add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['custom_twitter'] = array( 'font' =>'olliconfont', 'icon' => 'ue802'); $icons['custom_facebook'] = array( 'font' =>'olliconfont', 'icon' => 'ue801'); $icons['custom_instagram'] = array( 'font' =>'olliconfont', 'icon' => 'ue803'); $icons['custom_gplus'] = array( 'font' =>'olliconfont', 'icon' => 'ue804'); return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['custom_twitter'] = 'custom_twitter'; $icons['custom_facebook'] = 'custom_facebook'; $icons['custom_instagram'] = 'custom_instagram'; $icons['custom_gplus'] = 'custom_gplus'; return $icons; }Best regards,
JosueHi!
Header transparency is not supported with the layout you want, however i managed to put the logo below menu using CSS:
@media only screen and (min-width: 767px) { #header.av_header_transparency .container.av-logo-container { position: absolute; top: 60px; } }That way you can keep the header settings default (logo top, menu below) and have transparency enabled.
Best regards,
JosueHi Munford!
You can use this code to make it so the post nav show only posts within the same category:
add_filter('avia_post_nav_categories', 'use_same_category_filter'); function use_same_category_filter($same_category) { $same_category = true; return $same_category; }Regards,
JosueJanuary 22, 2016 at 1:51 am in reply to: Top menu and socket social icons of different sizes? #569657Hey!
There’s seems to be a unclosed
atag in one of the footer links, can you fix that first or hand me a WordPress administrator account?Regards,
Josue -
AuthorPosts
