Forum Replies Created
-
AuthorPosts
-
April 22, 2014 at 2:13 pm in reply to: $20 for rush fixes. Easy, but time-sensitive. Thank you! #254323
Hey!
Thank you for the login details.
Please download the latest version 2.7 from your themeforest account then update the theme via FTP. This should fix a lot of issues. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
If the changes needs to be done asap, we suggest that you visit Werkpress for further customization.
Cheers!
IsmaelHi!
Thank you for the update.
2.) All you need to for the parallax effect is the color section element. Add a background then set the background attachment to parallax, background size to stretch to fit and the position to center center.
5.) That should be the default product variation price structure when you update to Enfold 2.7. Please download the latest version 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,
IsmaelHi phatz!
Thank you for using the theme!
I checked the website on Chrome Windows 8 and the post items link to their respective pages. Is this fixed? Please try to flush the permalink settings. Go to Settings > Permalink then click the “Save” button once.
Regards,
IsmaelHi!
Thank you for the screenshot.
It is very faint but it is there. Please add this on Quick CSS or custom.css:
#top.avia-blank #main .container_wrap:first-child { border: none; }Regards,
IsmaelApril 22, 2014 at 1:37 pm in reply to: All Text Formatting Is Wiped Out In Content Elements In Color Sections #254310Hi!
Glad it is working now.
Would you mind sharing the solution? On another note, please download the latest version 2.7 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/
Best regards,
IsmaelHey!
Thank you for using the theme!
Please disable the minify plugin then add the code. Enable it back after.
span.news-thumb { display: none !important; }Usually minimizing the image sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:
1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
4. Use BWP minify plugin to minify scripts and stylesheets.
5. Install WP-Super cache, select all recommended settings.
6. Logout your website, visit every page at least once to create super cache files.
7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
8. Have a cup of coffee.
9. Visit your site after 20 minutes or so.
10. Don’t forget to smile.Don’t forget to update the version 2.7. Please download the latest version 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/
Cheers!
IsmaelHey mediasauce!
Thank you for using the theme!
You can still update the theme via FTP. Please download the latest version 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/
Best regards,
IsmaelHi!
Thank you for the update.
The debug mode should work. Please follow these steps. 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.
Regards,
IsmaelApril 22, 2014 at 1:25 pm in reply to: Need to upgrade theme but concerned about breaking my site #254305Hi sgperry99!
Thank you for using the theme.
I’m sorry about that but you really need to upgrade to Enfold 2.7 to fix the WP 3.9 issues. 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/
I’ll forward this thread to Kriesi. Maybe he can help you out. I’m pretty sure he’ll ask you to update the theme.
Regards,
IsmaelHey AmarMahallati!
Thank you for using the theme!
If you don’t mind, please open a single thread for each questions. It will be easier for us to answer your inquiries on that manner. Thanks!
1.) Please use this on functions.php:
add_filter('avf_title_args', 'single_blog_page_title', 10, 2); function single_blog_page_title($args,$id) { if( is_single() ) { $cat = get_the_category($id); if(isset($category[0])) $args['title'] = $category[0]->cat_name; } return $args; }2.) Remove the post meta infos using this on Quick CSS or custom.css:
span.post-meta-infos { display: none; }3.) Use this to remove the tags:
.single span.blog-tags.minor-meta { display: none; }4.) Edit framework > php > function-set-avia-frontend.php, find this code on line 842:
$output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);I hope that helps.
Regards,
IsmaelHi!
Thank you for the update.
Please don’t import the functions-enfold.php file on the child theme folder. Place the code suggested above on the child theme’s functions.php. It should work.
Cheers!
IsmaelApril 21, 2014 at 3:24 pm in reply to: icon boxes – changing the holding shape from a circle to a square #253843Hi stuartleighbray!
Thank you for visiting the support forum!
If you want to make the iconbox icons container square, use this on Quick CSS or custom.css:
.iconbox_top .iconbox_icon { padding: 15px; border-radius: 0; }I hope that helps.
Best regards,
IsmaelHey!
Thank you for the update.
You can edit functions.php, find the thumbnail size code on line 102:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize sliderYou can increase the width and height of the thumbnail then set the crop parameter to false. Replace the code above with something like this:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1200, 'height'=>500, 'crop'=>false ); // images for fullsize pages and fullsize sliderUpload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
I hope that helps.
Cheers!
IsmaelHey!
Thank you for the update.
You can find the function that generates the logo on framework > php > function-set-avia-frontend.php. Look for the avia_logo function. You can find the height and width attribute there. You can copy the whole avia_logo function on your child theme’s functions.php or if you want to get fancy, use the logo filter hook.
$logo = apply_filters('avf_logo_final_output', $logo, $use_image, $headline_type, $sub, $alt, $link);I hope it helps you.
Cheers!
IsmaelHi!
Thank you for the update.
I just noticed that you added a filter function on the sidebar using a plugin. It might cause the pagination not to work, please disable that plugin then we’ll check the page again after.
Best regards,
IsmaelHey!
Thank you for the update.
When you say drop down, you mean the mobile menu? You can use this selector:
#advanced_menu_toggle, #advanced_menu_hide { left: 90%; }Regards,
IsmaelHey!
Thank you for the update.
Are you using the Advance Layout Builder to modify the portfolio item? If that is the case, the featured image will not be included on the page. Please manually add the featured image using the Image element or add a slider on the portfolio item page.
Cheers!
IsmaelHey!
Glad it is working now. It is really a good thing to create a backup of your theme files and database. Really glad you get it back. If you have any questions, let us know.
Best regards,
IsmaelHey Fabrice!
Thank you for using the theme.
Do you have the latest version Enfold 2.6.4? This should fix the WP 3.9 incompatibility issues. 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/
Let us know if it works.
Best regards,
IsmaelApril 21, 2014 at 2:59 pm in reply to: How to Customize YouTube Videos Within Layout Builder #253818Hi atrixdave!
Thank you for using the theme!
If you want a full control over the embedded video on youtube, please use the Code Block element. Get the embed code of the youtube video then wrap it on the avia-video container. Something like this:
<div class="avia-video avia-video-16-9 " itemprop="video" itemtype="http://schema.org/VideoObject"> <div class="avia-iframe-wrap"><iframe width="1500" height="844" src="//www.youtube-nocookie.com/embed/G0k3kHtyoqc?rel=0&controls=0" frameborder="0" allowfullscreen></iframe></div> </div>You can now add more video attributes on the video url. On the example above, we added the control and related option. Please use the width and height property of the example code across all youtube videos that you’ll embed.
Best regards,
IsmaelHey!
Thank you for the update.
You need to upload the whole zip file, not just the settings or .json file. Please try to export the existing slider then import the zip file back. It will work.
Cheers!
IsmaelApril 21, 2014 at 2:43 pm in reply to: Replace toggle icon with another entypo-fontello font OR use a png #253805Hey!
@wintner: Sorry about that. If you have the latest version of the theme, you can find most of the header codes on includes > helper-main-menu.php. I hope it helps.Best regards,
IsmaelHey!
Glad you figured it out!
Maybe, you missed it on your first try. No one has reported the same issue yet. Anyway, glad it is fixed now. If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. You can also watch some of our Video Tutorials to learn more about the theme.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page.
Best regards,
IsmaelApril 21, 2014 at 2:36 pm in reply to: Enfold : Add to cart button not showing up on variable product #253795Hi!
@Styletheluxe: Thank you for the update. If you don’t mind, we would like to see the actual website where this is happening. Please post the website url here or open a new thread then post the website link there.Best regards,
IsmaelApril 21, 2014 at 2:34 pm in reply to: Issue with logo and buttons on an iPad in portrait mode #253793Hey!
Thank you for using the theme!
1.) Please go to Enfold > Header > Mobile Menu > Header Mobile Menu activation. Choose the second option.
2.) Instead of using the 1/4 column, please use 2 1/2 columns. The theme have special css selectors that will modify the column layouts for mobile devices.
Cheers!
IsmaelHey!
Thank you for visiting the support forum!
Did you add any unusual html codes or anything on the menu items? I can access some of the menus but not the PrimaryNavigationMenu. Please try to recreate the menu from scratch.
Best regards,
IsmaelHey!
Thank you for the update.
Looks like a database error which is not cause by the theme. Do you have the Map Press plugin installed? Please deactivate all plugins, see if it works.
Regards,
IsmaelHi!
Glad you solved it!
If you don’t mind, please share the solution here in order to help other users with the same problem. If you have any questions regarding the theme, let us know.
Cheers!
IsmaelApril 21, 2014 at 2:19 pm in reply to: Submenu color doesn't change, and would like to show header text instead of logo #253782Hey Marc!
Thank you for using the theme!
You can add something like this on functions.php if you want a text on the header in place of the logo:
add_filter('avf_logo_final_output', 'avf_text_logo_final_output'); function avf_text_logo_final_output($logo) { $link = apply_filters('avf_logo_link', home_url('/')); $logotext = "THIS IS MY LOGO"; $subtext = "THIS IS THE SUBTEXT"; $subtext = "<span class='subtext'>$subtext</span>"; $logo = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."$subtext</a></h1>"; return $logo; }Replace the $logotext and the $subtext. I hope that helps.
Cheers!
Ismael -
AuthorPosts
