Forum Replies Created
-
AuthorPosts
-
Hi LFE!
Thank you for using Enfold.
Set the columns to 3 then add this to the Quick CSS field:
#top .no_margin.av_one_third { padding: 20px; }
If this is not what you’re after, please provide a screenshot.
Cheers!
IsmaelHey!
Alright. Please post the website url here. We would like to inspect it. Make sure that you have the latest version of the theme. If you’re not familiar with file permissions, please contact your hosting provider and let them generate the .htaccess file for you.
Cheers!
IsmaelHey!
If I may ask, what kind of mobile device are you currently using to check the site? You don’t have the latest version of the theme. Please download version 3.0.8.
Regards,
IsmaelFebruary 20, 2015 at 3:21 am in reply to: Menu and Formatting Messed Up After Updating Enfold #399408Hey!
You can just delete the header.php file on the child theme folder. The header codes on the latest update vary a lot so the header mod might be useless now. Please post the child theme’s header.php code on pastebin.com. We would like to check it.
Best regards,
IsmaelHi!
No, it’s alright. As long as it works and css codes can be removed as quickly as you can add it.
Cheers!
IsmaelHey erkuto!
Thank you for using Enfold.
For tag pages, use this:
add_filter('avf_blog_style','avia_change_tag_blog_layout', 10, 2); function avia_change_tag_blog_layout($layout, $context){ if($context == 'tag') $layout = 'single-big'; return $layout; }
Cheers!
IsmaelFebruary 19, 2015 at 2:26 pm in reply to: Using database to modify sidebar on multiple pages #398911Hey!
I want to suggest database queries but it can mess up the database when done improperly. Change it manually. Open the wp_postmeta table then click search. On the meta_key column, input “sidebar” then click go. It will create a list of all posts with the sidebar meta_key.
Cheers!
IsmaelHi!
Yes, you don’t have to resize any image because the thumbnails are already available. Glad you like the theme. Thank you.
Regards,
IsmaelHey!
Alright. That clear things up a bit. Replace the code on functions.php with this:
add_action('ava_after_main_menu','custom_things'); function custom_things() { global $blog_id; if ($blog_id == 1) { echo '<div class="secondary-logo"> <a href=" http://www.theimplantexperts.com/"> <img src="http://dentists.theimplantexperts.com/wp-content/uploads/sites/2/2015/01/TIE_WebHeader_Patientslink1.png" /> </a> </div>'; } elseif ($blog_id == 2) { echo '<div class="secondary-logo"> <a href=" http://dentists.theimplantexperts.com/"> <img src="http://theimplantexperts.com/wp-content/uploads/2015/01/TIE_WebHeader_Patientslink.png" /> </a> </div>'; } }
Regards,
IsmaelFebruary 19, 2015 at 2:12 pm in reply to: Table element: column heading dissapears when resized #398901Hey!
Refer to these links:
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/This time, instead of doing it on sliders, replicate the same process to your tables. Anyway, have you tried switching the table purpose to tabular? After that, you can set the Responsive Styling to scrollable. This way it will just retain the table layout, just like on desktop view, then add a scrollbar.
Best regards,
IsmaelHi JasonC!
Thank you for using Enfold.
1.) You can change the background color of the shrinked header with this on Quick CSS field:
.header_color.header-scrolled .header_bg { background: white; }
2.) The transparent header works best when there is a slider or color section with background at the very top of the page. It will definitely not work on a blank page.
Regards,
IsmaelFebruary 19, 2015 at 1:50 pm in reply to: Fullwidth submenu Avia element: highlight menu for each section ID #398880Hey traumreiter!
Thank you for using Enfold.
You can replace the footer column content on Appearance > Widgets panel. Add your own widget to the footer columns widget areas.
Regards,
IsmaelHi!
The iframe lightbox isn’t working because the Lightbox Modal Window is disabled. We created a test page for you here: http://neckeropen.com/test-link/
Regards,
IsmaelHey!
Looks like you’re still using version 3.0.4. Please update the theme to 3.0.8. We can’t help you unless you have the latest version. Maybe you’re updating the wrong directory.
Best regards,
IsmaelFebruary 19, 2015 at 1:15 pm in reply to: Menu and Formatting Messed Up After Updating Enfold #398847Hey!
OK. I tried to make it look as close as possible, like the previous site. Now, you need to recreate the Enfold Menu because most of the pages are duplicated: http://dev.skloff.com/wp-admin/nav-menus.php
Not sure why that happened. Best thing to do is to delete the current menu then recreate it from scratch.
Best regards,
IsmaelHey!
OK.. sorry about that.
1.) You want an excerpt on archive page. Please refer to the solution provided here: https://kriesi.at/support/topic/blog-category-frontpage-view/#post-386022
2.) Add featured image on archive pages. Use this on functions.php:
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-big'; return $layout; }
If it’s still not working, kindly open another thread for each and every issue. We’ll try to help you there. We’ll close this for now.
Regards,
IsmaelFebruary 19, 2015 at 12:41 pm in reply to: Google Maps is not showing (Enfold 3.0.4, WordPress 4.0.1 DE) #398830Hi!
I checked the contact us page and the map is working. I sent a test message via the contact form. Did you receive it? Try to install this plugin in order to configure smtp settings: https://wordpress.org/plugins/easy-wp-smtp/
Cheers!
IsmaelHey!
Hmm.. Sorry about that. Please replace it with:
add_filter('after_theme_setup', $avia_config['shop_single_column'] = 5, $avia_config['shop_single_column_items'] = 5);
Cheers!
IsmaelHi!
Alright. Looks like it’s happening on iPhone5, at least on an emulation. Try this:
@media only screen and (max-width: 420px) { .home div#fullscreen_slider_0 { max-height: 425px !important; overflow: hidden; }}
Remove the other css code.
Cheers!
IsmaelHi!
The mobile menu kicks in on screen size below 998px, assuming you have that activated on Enfold > Header > Mobile Menu > Header Mobile Menu activation settings. Use this css media queries to adjust the transition on mobile screens:
@media only screen and (max-width: 989px) { } /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) { } /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) { }
Please provide a link to the actual page so that we can inspect it.
Cheers!
IsmaelHi!
I’m sorry but you have a very old version of the theme, 2.9.2, which is not compatible with WP 4.1. Please download the latest version, 3.0.8, from your themeforest account then update the theme via FTP. Refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHi!
Add this on functions.php:
add_action('avia_meta_header', 'ava_get_user'); function ava_get_user() { if ( is_user_logged_in()) { $user = wp_get_current_user(); echo "<div id='header-welcome'>Welcome ". $user->display_name ."</div>"; } }
Use the “header-welcome” class to adjust the position of the new container.
Cheers!
IsmaelFebruary 19, 2015 at 12:11 pm in reply to: Header background image doesn't always load on mobile devices? #398811Hi!
I’m sorry but you have the old version of the theme, 3.0.5. Please download the latest version, 3.0.8, from your themeforest account then update the theme via FTP. Refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHi!
@jameelkarim: I’m not sure what’s wrong with your installation but can you please delete the other themes except for Enfold and default WP themes? In a few cases, fragments of settings from previous themes can break the current theme.
@tab01234: Please refer to this link on how to properly update the theme: http://kriesi.at/documentation/enfold/updating-your-theme-files/Best regards,
IsmaelHey Munford!
Thank you for using Enfold.
Edit the portfolio grid element, look for the Portfolio Grid Image Size setting. Set it to manual then select your preferred thumbnail size.
Best regards,
IsmaelHi!
I was able to access the dashboard but the frontend isn’t loading. Please check. http://franzelina.com/FALSE ALARM. Anyway, I can see the woocommerce pages, checkout, cart, product page etc. Can you please elaborate the issue?
Regards,
IsmaelHi!
Alright. Try to adjust the top padding on smaller screens:
@media only screen and (max-width: 767px) { .html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption { padding-top: 20px; }}
Best regards,
IsmaelHi!
The shortcode wand (black wand with an awesome skyblue sparkle) is the theme’s default shortcode generator. You can see it above the default text editor. Click it, go to Media Elements then insert the Video shortcode. Create a slider layer for the shortcode. Please post the login details here so that we can inspect it. Set it as a private reply.
Best regards,
Ismael -
AuthorPosts