Forum Replies Created
-
AuthorPosts
-
Hi EA Photo!
Thank you for using the theme!
I’ll get back to you. I didn’t noticed that the 3/5 and 2/5 column are available now.
Are there any avia elements except for the column layouts? I tested the new column layouts on my end and they work fine. Did you add any html codes on the content? Did you update to WP 3.9 recently?
Please download 2.6.4 to fix the wp 3.9 issues.
Cheers!
IsmaelHi indirapril!
Thank you for visiting the support forum!
Please use this to remove the easy slider on mobile devices:
@media all and (max-width: 767px) { .home ul.avia-slideshow-inner { display: none !important; } }Remove browser cache then reload the page. I hope that helps.
Regards,
IsmaelHi youyou78!
Thank you for using the theme!
Do you mind if we take a look at the post page? If I am not mistaken, you want to change the width of the comment form? This part of your css code should close:
#top .fullsize .template-blog .post-title { max-width: 100%; }A screenshot explaining your request will help a lot. Thanks!
Cheers!
IsmaelHey HiDrew!
Thank you for using the suppor forum!
If you don’t mind, please post each questions on a single thread. It will be much easier for us to answer your queries in that manner.
1.) Please add this on Quick CSS or custom.css:
div.phone-info { font-size: 20px; top: 80px; position: relative; color: green !important; }2.) Use this for the menu borders:
.html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a, .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li:first-child a { border: none; }3.) Use this to create a gap between the menu and the layer slider:
.home div#main { margin-top: 50px; }4.) Can you please provide us a link to the page with the tables?
5.) Use this to align the testimonial name to the left:
.avia-testimonial-meta { margin-left: 0; }Regards,
IsmaelApril 21, 2014 at 7:11 am in reply to: Woocommerce rows of products displayed change & WPML bug #253681Hey Adenadoume!
Thank you for using the theme!
1.) You can change the column count on Woocommerce > Settings > Catalog > Column and Product Count.
2.) What is the version of your Enfold theme? You changed the style.css file and I’m not sure if you’re using the latest version of the theme. Please try to deactivate all plugins, see if that helps.
Regards,
IsmaelHi!
Thank you for the update.
If you don’t mind, we would like to check the website. Please edit functions.php file, look for this code on line 304:
if ( is_rtl() ) { wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'screen' ); }Replace it with:
wp_enqueue_style( 'avia-rtl', $template_url."/css/rtl.css", array(), '1', 'screen' );The is_rtl check if wordpress is using another locale language other than default U.S English. Since you don’t want to change the backend, we need to remove that function. Let us know if it works.
Cheers!
IsmaelHey!
Thank you for the update.
If you want to use the slider as a stand alone plugin, you need to deactivate the default layer slider first. Please edit functions.php, find this code on line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
add_theme_support( 'deactivate_layerslider' );This should disable the theme’s layer slider.
Cheers!
IsmaelHi Carsten!
Thank you for using the theme!
Do you mind if we take a look at the website? Please post the website url here. A screenshot of the text box issue will help. We will give you a proper response once we have taken a look at the website.
Cheers!
IsmaelHey!
Gald you figured it out.
You can switch the advance builder to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }You will be able to see the actual shortcode below the builder.
Best regards,
IsmaelApril 21, 2014 at 6:37 am in reply to: The display of tags on my accordion toggle text is not working properly #253671Hey!
Thank you for visiting the support forum!
You’re using an old version of the theme. The latest update should fix this though the issue is not there when I check the website. Please download the latest version 2.6.4 from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regards,
IsmaelHey!
Thank you for the update.
How did you remove the title? I mean what are the codes that you strip out to remove the title and leave the breadcrumbs. Instead of copying the whole function, you can use the filter hook to remove the title:
add_filter('avf_title_args', 'avf_remove_header_title', 10, 1); function avf_remove_header_title($args) { $args['title'] = ''; return $args; }Best regards,
IsmaelApril 21, 2014 at 6:21 am in reply to: Avia Layout Builder, Text Block Editor – editor populates with wrong content #253667Hi!
@2funky: Thank you for the update. Do you mind if we take a look at the website? Can you please describe the issue at hand? Test it on another browser, see if the text blocks work.Best regards,
IsmaelHey!
Thank you for the link.
I’m sorry but can you please provide a screenshot? Please note that not all mobile devices support Google Fonts API. Please refer to this link: https://developers.google.com/fonts/faq#Mobile_Supported
Best regards,
IsmaelHi!
Thank you for the update.
I’m sorry but the code will be remove if you update the theme unless you’re using a child theme. Copy the header.php file on your child theme folder then make the changes there or you can try the wp_head hook code that we suggested above. :)
Cheers!
IsmaelHey!
Thank you for the update.
You’re using version 2.4.5 which is very old and not compatible with WP 3.9. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Best regards,
IsmaelHey BetuwePC!
Thank you for using the theme!
You can’t edit anything on the Advance Layout Builder? Looks like you’re using a lot of plugins. WordPress 3.9 was released with a major update to TinyMCE and a lot of plugins may be affected. Please deactivate all plugins then test the builder again. If it works, activate the plugins one by one to find the malignant module that is wreaking havoc on your installation.
Best regards,
IsmaelHi petertoner!
Thank you for using the theme!
Did you remove the menu background? I don’t see it anymore. If you want it back, you can use this:
nav.main_menu { background: rgba(255,255,255,.5); padding: 0 30px 0 20px; border-radius: 20px; margin-top: 20px; } .header-scrolled nav.main_menu { background: transparent; margin-top: 0; padding: 0 30px 0 20px; }I hope that helps. Cheers!
Best regards,
IsmaelHey AsadIC!
Thank you for visiting the support forum!
Please download the latest version from your themeforest account then update the theme via FTP. This should fix some of the minor issues that you might be having on the theme. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Regarding the pagination issue, please try to flush the permalink settings. Go to Settings > Permalink then click the “Save” button once. I hope it fix the pagination issue.
Nice tutorials! Can I have a free subscription? :D
Best regards,
IsmaelHey kylehogan!
Thank you for using the theme!
Please re-upload your logo then configure the header settings again. Remove all css codes that you previously used to modify the header. Some header issues should be fix by simply saving the theme options. Please let us know if there’s still a lot of issues once you have reconfigure the header settings on Enfold > Header. Post the website url here. We would like to check it.
Regards,
IsmaelHey!
Thank you for using the theme.
I can see the issue on Chrome Windows 8. Did you modify anything on the theme files? Please add this on Quick CSS or custom.css:
.av-main-nav > li { line-height: 30px; border-left: 1px solid; margin-left: -1px; } li#menu-item-33 { border-left: none; }Cheers!
IsmaelHi f!
Thank you for visiting the support forum!
The standard page template file is page.php but if you’re using the Advance Layout Builder, the page will use the template-builder.php to combine the shortcodes. I hope that helps.
Cheers!
IsmaelHey Andrea!
Thank you for using the theme!
Please use this on Quick CSS or custom.css:
span.copyright { margin-top: 30px; margin-bottom: 5px; } #socket .container > * { float: none; left: 50%; -webkit-transform: translate(-50%, 0); -moz-transform: translate(-50%, 0); -ms-transform: translate(-50%, 0); transform: translate(-50%, 0); position: absolute; }Cheers!
IsmaelHi samforan!
Thank you for using the theme!
You can find the post code on includes > loop-index.php. You can remove those element using CSS. Add this on Enfold > Styling > Quick CSS:
time.date-container.minor-meta.updated, .text-sep-date, .blog-author.minor-meta, .text-sep-cat { display: none; }I hope that helps.
Best regards,
IsmaelHi ianstudio!
Glad it is fixed. Whatever it is. I’ll close it for you. :))
Best regards,
IsmaelHey!
Thank you for using the theme!
I checked the website and the logo looks fine. If you want to show the full resolution of the logo, you need to increase the height of the header container. Add this on Quick CSS or custom.css:
.html_header_top.html_header_sticky.html_large #header_main .container, .html_header_top.html_header_sticky.html_large.html_main_nav_header .main_menu ul:first-child > li a { height: 160px; line-height: 160px; }You can find all css codes on wp-content/themes/enfold/css folder.
Cheers!
IsmaelHey Starkos!
Thank you for using the theme!
I checked the website on Chrome Windows 8 but I don’t see the website moving up and down. Another thing is, you’re using a very old version of the theme. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/
Cheers!
IsmaelHey!
Thank you for the update.
Sometimes, the shortcode doesn’t work on the preview of the layer slider but it does show on the front end. Please post the link of the website here. We would like to check it. I’m sure it will work once you preview it on the actual page.
Cheers!
IsmaelHey!
Thank you for using the theme!
Looks like you’re managing it yourself well enough. Unfortunately, this is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.
Regards,
IsmaelHi redlipsid!
Thank you for using the theme!
You can disable the default lightbox plugin within the theme. Edit js > avia.js, find this code on line 60:
//activates the prettyphoto lightbox $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});Replace it with:
//activates the prettyphoto lightbox //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});Cheers!
Ismael -
AuthorPosts
