Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for the info.
Please post the login details here and set it as a private reply. We would like to modify the .htaccess file using the Yoast SEO plugin. If possible, please create a backup of the actual .htaccess file located on the root directory, just in case.
Best regards,
IsmaelHi!
I’m sorry but you’re using an old version of the theme and it looks like the socket is disabled. Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHey Veronica!
Thank you for using Enfold.
Edit the portfolio page then add the Portfolio Grid element. If possible, please go to Settings > Permalink panel to flush the permalink settings.
Best regards,
IsmaelHi TheElear!
Thank you for using Enfold.
I’m sorry but we won’t be able to trace back the modifications that you’ve made. Note that you have to place the loop-index.php file inside the includes folder on the child theme directory.
Cheers!
IsmaelHey!
Looks like the redirects are working now. We have to add it manually on the .htaccess file using Yoast. We disabled the simple 301 redirect plugin.
http://la-appraisal.com/wp-content/themes/enfold/framework/php/wordpress-importer/
http://la-appraisal.com/wp-content/themes/enfold/framework/php/avia_shortcodes/
http://la-appraisal.com/wp-content/themes/enfold/framework/css/conditional_load/
Regards,
IsmaelHey!
Thank you for using Enfold.
We are aware of the issue but we’re still trying to figure it out. For now, you can use the hr whitespace separator element / shortcode in place of the br tags.
Best regards,
IsmaelHey!
Thank you for the update.
You can hide the default layer slider on mobile then show another slider or a static image using css media queries. Please refer to this link:
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/Best regards,
IsmaelHi!
Thank you for using Enfold.
Yes, it is possible with the portfolio items but the page won’t look good on the lightbox container. Edit a portfolio item then look for the Overwrite Portfolio Link setting. Set it to define custom link. Use the url of the single post or portfolio page, add the ?iframe=true attribute in the end. Something like this:
http://www.mysite.com/portfolio-item/single-portfolio-custom-link?iframe=trueUse the masonry element to display the portfolio entries.
Cheers!
IsmaelHey!
Did you replace the code with this?
add_filter('avf_template_builder_content', 'avf_template_builder_content_title', 10, 1); function avf_template_builder_content_title($content = "") { $title = get_the_title(); return $title . $content; }This will only render the page title, not the whole title container.
Regards,
IsmaelHey!
1.) Use this to change the style of the “Make an Appointment” menu item:
li#menu-item-3780 a { background: green; padding: 10px; color: #ffffff; }This for the social icons:
#top .social_bookmarks { height: 50px; } #header_meta .container { min-height: 50px; } #top .social_bookmarks li a { width: 50px; line-height: 50px; min-height: 50px; font-size: 20px; } #top .social_bookmarks li { width: 50px; }2.) You can change the phone number color with this:
.phone-info span { color: #719430; }Cheers!
IsmaelHi!
Thank you for the info.
I’m really not sure why icons are missing. Please get a fresh copy of the Enfold theme from your themeforest account then override the old one via FTP. Refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Maybe, files are missing or corrupted. And add this code on .htaccess file:
<FilesMatch "\.(ttf|otf|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>Please create a backup of .htaccess file just in case.
Cheers!
IsmaelHey!
This option is also not available for events pages but if you can give us a screenshot on how you want the single events page to look like, maybe we can help. For further modifications, please visit Envato Studio or Werkpress.
Best regards,
IsmaelHey!
Thank you for the update.
You have to commend out the default avia logo on helper-main-menu.php file:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);Replace it with:
//echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);Regards,
IsmaelNovember 15, 2014 at 6:20 am in reply to: One-Page-Site: Anzeige aktiver Menüpunkt funktioniert nicht in Chrome bzw. IE #351694Hi!
Did you remove the modifications on avia.js file? It’s not working even when I’m logged in. I noticed that you placed the helper-main-menu.php file on the child theme folder. What are the modifications that you added there?
Cheers!
IsmaelHey!
Thank you for the update.
I’m still not sure what’s causing the issue. Can you please report the issue to your hosting provider? Ask them for any error logs. This might help us debug the issue.
Regards,
IsmaelHi!
You can use this to change the background color of the menu container making it span the whole width of the container:
div#header_main_alternate { background: #4d4d4d; }Best regards,
IsmaelHey!
You can add this below to hide the secondary menu on 1080px above then show it when screen size is between 800px and 1079px:
@media only screen and (min-width: 1080px) { ul#avia2-menu { display: none; } } @media only screen and (min-width: 800px) and (max-width: 1079px) { ul#avia2-menu { display: block; } ul#avia-menu { display: none; } }Cheers!
IsmaelHey!
Yes, you can add it on the child theme’s functions.php file. Forget the line 16.
Regards,
IsmaelHi!
Thank you for the info. We will forward this to Kriesi. Please wait for his response.
Cheers!
IsmaelHi Andrea!
Thank you for using Enfold.
How did you disable the animation? You can actually use this on Quick CSS to disable it:
*caption animation*/ @-webkit-keyframes caption-right { 0% { -webkit-transform:translate(2000px,0); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } } @-moz-keyframes caption-right { 0% { -moz-transform:translate(2000px,0); opacity: 0; } 100% { -moz-transform:translate(0,0); opacity: 1; } } @keyframes caption-right { 0% { transform:translate(2000px,0); opacity: 0; } 100% { transform:translate(0,0); opacity: 1; } } @-webkit-keyframes caption-left { 0% { -webkit-transform:translate(-2000px,0); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } } @-moz-keyframes caption-left { 0% { -moz-transform:translate(-2000px,0); opacity: 0; } 100% { -moz-transform:translate(0,0); opacity: 1; } } @keyframes caption-left { 0% { transform:translate(-2000px,0); opacity: 0; } 100% { transform:translate(0,0); opacity: 1; } } @-webkit-keyframes caption-top { 0% { -webkit-transform:translate(0,-20px); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } } @-moz-keyframes caption-top { 0% { -moz-transform:translate(0,-20px); opacity: 0; } 100% { -moz-transform:translate(0,0); opacity: 1; } } @keyframes caption-top { 0% { transform:translate(0,-20px); opacity: 0; } 100% { transform:translate(0,0); opacity: 1; } } @-webkit-keyframes caption-bottom { 0% { -webkit-transform:translate(0,20px); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } } @-moz-keyframes caption-bottom { 0% { -moz-transform:translate(0,20px); opacity: 0; } 100% { -moz-transform:translate(0,0); opacity: 1; } } @keyframes caption-bottom { 0% { transform:translate(0,20px); opacity: 0; } 100% { transform:translate(0,0); opacity: 1; } }Replace the css properties of the beginning of the animation, 0%, with the css properties of the end animation. Example:
@-webkit-keyframes caption-bottom { 0% { -webkit-transform:translate(0,20px); opacity: 0; } 100% { -webkit-transform:translate(0,0); opacity: 1; } }Should be replaced with:
@-webkit-keyframes caption-bottom { 0% { -webkit-transform:translate(0,0); opacity: 1; } 100% { -webkit-transform:translate(0,0); opacity: 1; } }Regards,
IsmaelHey!
You can vote or request for the feature here: https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelHey!
It works on our installation. Please remove browser cache then test it again. There will be a short delay. Let the load page before testing it.
Best regards,
IsmaelHey!
Yes, you’re correct regarding the template files but it is much easier to use this filter. If you’re planning to add it on posts, products, page(Default Editor) etc, you might need to manually add it on the template files. The solution above actually works on our installation. Make sure that the Header Title and Breadcrumbs on Enfold > Header is enabled. You can hide the default title container with this:
#main > .stretch_full.container_wrap.title_container { display: none; }Or you can replace the code with this:
add_filter('avf_template_builder_content', 'avf_template_builder_content_title', 10, 1); function avf_template_builder_content_title($content = "") { $title = get_the_title(); return $title . $content; }Regarding the blog post navigation, you can use the get_previous_post and get_next_post function on loop-index.php file. Refer to these links for more info:
http://codex.wordpress.org/Function_Reference/get_previous_post
http://codex.wordpress.org/Function_Reference/get_next_postCheers!
IsmaelHey!
You can use the same filter:
function avia_add_custom_icon($icons) { $icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue859'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Cart'] = 'cart'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Place it below this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Best regards,
IsmaelNovember 14, 2014 at 5:28 am in reply to: One-Page-Site: Anzeige aktiver Menüpunkt funktioniert nicht in Chrome bzw. IE #351128Hi emin!
Thank you for using Enfold.
Please refer to these links on how to customize the mega menu, adding images, rows etc:
http://kriesi.at/documentation/enfold/setting-up-your-mega-menu/
http://kriesi.at/documentation/enfold/portfolio-item/creating-a-mega-menu/Regards,
IsmaelHey!
It is actually quite simple. Just review the documentation on how to add a custom css class then add your own css modifications. You can set the post here as a private reply if you’re uncomfortable handing out your login credentials. We’ll create an example.
Cheers!
IsmaelHi!
Please post the login details here and set it as a private reply. We would like to check it. I’ll ask the rest of the support team to take a look.
Best regards,
IsmaelHey!
What is the current PHP version? Have you tried switching to a default theme? Test the widgets again.
Best regards,
IsmaelHey!
Please remove all the css code then use this:
.av-main-nav > li, .av-main-nav > li > a { height: 20px !important; line-height: 20px !important; } .av-main-nav > li { border-left: 1px solid; } .av-main-nav > li:first-child { border-left: none; } .avia-menu.av-main-nav-wrap { top: 30px; position: relative; }Cheers!
Ismael -
AuthorPosts
