Forum Replies Created
-
AuthorPosts
-
Hi!
You can change it here (Slideshow autorotation duration):

Regards,
JosueHi!
Unfortunately that’s only possible with Google Fonts:
https://kriesi.at/support/topic/custom-fonts/Regards,
JosueMay 18, 2014 at 6:37 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266368Hey!
That should not be happening, i tested on my install and it worked fine, make sure it’s exactly like this:
if(!function_exists('avia_set_title_tag')) { /** * generates the html page title * @return string the html page title */ function avia_set_title_tag() { $title = (is_front_page()) ? get_bloginfo('description') : wp_title('', false); $title .= ' | '.get_bloginfo('name'); $title = apply_filters('avf_title_tag', $title, wp_title('', false)); return $title; } }I tweaked the position of the pipe separator.
Do you have access to your PHP log?
Cheers!
JosueHi!
This will work too, add it to your child theme functions.php:
add_filter( 'home_url', 'fix_home_url_trailing_slash', 100, 4 ); function fix_home_url_trailing_slash($url) { return $url."/"; }Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.grid-entry img, .grid-entry a img { border:none; padding: 0; margin:0; display:inline-block; max-width: 100%; height:auto; width:auto; image-rendering: optimizeQuality; }Cheers!
JosueMay 18, 2014 at 6:26 pm in reply to: New install – getting blank screen when trying to activate the theme! #266361Great news Darren :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#fullwidthmap main { padding: 0 !important; } #fullwidthmap .avia_google_maps { padding-bottom: 0 !important; }Cheers!
JosueMay 18, 2014 at 6:19 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266357In the file mentioned, change:
if(!function_exists('avia_set_title_tag')) { /** * generates the html page title * @return string the html page title */ function avia_set_title_tag() { $title = get_bloginfo('name').' | '; $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false); $title = apply_filters('avf_title_tag', $title, wp_title('', false)); return $title; } }To:
if(!function_exists('avia_set_title_tag')) { /** * generates the html page title * @return string the html page title */ function avia_set_title_tag() { $title = (is_front_page()) ? get_bloginfo('description') : wp_title('', false); $title .= get_bloginfo('name').' | '; $title = apply_filters('avf_title_tag', $title, wp_title('', false)); return $title; } }Best regards,
JosueHey @teddybaker!
Try adding this to the theme functions.php file (at the end)
function after_head_image_func(){ ?> <div class="custom_content"> <div class="c_flags"> <img src="_flag_image_url_here"> <img src="_flag_image_url_here"> <img src="_flag_image_url_here"> </div> <div class="c_bluetitle"> Value Added Computer Hardware Distribution </div> <div class="c_graytext"> Call to speak to our sales team <span class="c_phone">0 44 (0) 161 947 4321</span> </div> </div> <?php } add_action('ava_after_main_menu', 'after_head_image_func');After you done that, post a link to your website so we can help you with the styling.
Best regards,
JosueMay 18, 2014 at 6:12 pm in reply to: Neither YouTube nor Vimeo embeds work in mobile display #266352Hi!
You are currently using 2.6.1, latest version of Enfold is 2.7.1.
http://kriesi.at/documentation/enfold/updating-your-theme-files/Cheers!
JosueMay 18, 2014 at 6:10 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266351You are right, the workaround provided can’t be applied in the latest version of Enfold, now you’d need to edit:
/framework/php/function-set-avia-frontend.php, line 396-411:if(!function_exists('avia_set_title_tag')) { /** * generates the html page title * @return string the html page title */ function avia_set_title_tag() { $title = get_bloginfo('name').' | '; $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false); $title = apply_filters('avf_title_tag', $title, wp_title('', false)); return $title; } }What structure would you like to have?
Best regards,
JosueHi Peter!
Refer to this topic:
https://kriesi.at/support/topic/adding-468-x-60-banner-to-header/Cheers!
JosueHey!
I’d recommend using this plugin:
https://wordpress.org/plugins/wp-migrate-db/The files (wp-content/uploads) will need to be moved via FTP.
Regards,
JosueHi!
It’s up for me too.
Regards,
JosueHi Lars!
Try the workaround Devin provided here:
https://kriesi.at/support/topic/scaled-images-now-at-100-in-enfold-child-after-upgrading-parent-enfold-2-7-1/#post-260759Regards,
JosueHi Angie!
I fixed your code, try:
@media only screen and (max-width: 480px) { #footer{ background-color: #333333; height: 600px !important; } #footer #nav_menu-2.widget { background-color: #f57b38; height: 109px; margin-bottom: 0 !important; margin-top: 15px !important; padding-left: 8px !important; padding-top: 9px !important; width: 165px; } }Cheers!
JosueHi!
Please update your theme to the latest version:
http://kriesi.at/documentation/enfold/updating-your-theme-files/Regards,
JosueMay 18, 2014 at 5:52 pm in reply to: New install – getting blank screen when trying to activate the theme! #266341Hello,
Are you using the latest version of WordPress? have you tried disabling all third-party plugins before activating the theme? what PHP version do you have?
Regards,
JosueMay 18, 2014 at 5:51 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266340Check in enfold/includes/helper-main-menu.php.
Regards,
JosueGreat Kathleen, glad we could help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { .third-logo, .second-logo{ display: none !important; } }Cheers!
JosueMay 18, 2014 at 4:15 pm in reply to: Title (The which show-up on browsers tabs) and Descriptions #266321Hey!
Look in includes/helper-main-menu.php, it’s valid but i’d still recommend using a plugin because it will survive theme updates.
Regarding the other topic which is quite theme agnostic, refer to this article:
http://moz.com/learn/seo/meta-descriptionCheers,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
You are welcome, glad we could help :)
Regards,
JosueHi!
You need to wrap them in a strong element with the class of ‘logo’:
echo "<strong class='logo'><a href='http://kriesi.at' target='_blank' class='first-logo'><img src='http://kriesi.at/wp-content/themes/kriesi/images/logo.png' /></a></strong>"; echo "<strong class='logo'><a href='http://kriesi.at' target='_blank' class='second-logo'><img src='http://kriesi.at/wp-content/themes/kriesi/images/logo.png' /></a></strong>"; echo "<strong class='logo'><a href='http://kriesi.at' target='_blank' class='third-logo'><img src='http://kriesi.at/wp-content/themes/kriesi/images/logo.png' /></a></strong>";Regards,
JosueOpen /includes/helper-main-menu.php, go to line 101 and modify it to something like:
echo "<div id='desktop-logo'>".avia_logo(AVIA_BASE_URL.'images/layout/desktop-logo.png', $addition, 'strong', true)."</div>"; echo "<div id='mobile-logo'>".avia_logo(AVIA_BASE_URL.'images/layout/mobile-logo.png', $addition, 'strong', true)."</div>";You’d need to upload the respective logos to the folder set there, don’t forget to add the CSS i provided in my last reply.
Cheers!
JosueYes, i did. I’ll tag the rest of team so we can find a solution quicker.
Best regards,
JosueHi!
It seems you have not added this code:
#header_main_alternate, .sub-menu li a:hover{ background: #595959 !important; } #avia-menu li a:hover{ background: #641816; }The website should look like this:

Cheers!
JosueThe menu was working as expected, it was just a misconfiguration:
http://www.luxgrandserver1.com/controltek/You needed to uncheck the ‘start a new row’ setting in each element.
Best regards,
JosueDear Boe,
Unfortunately that’s not possible with Enfold.
Best regards,
JosueYou’d need to replace all the iterations of http by https in the widget code.
Cheers!
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
