Forum Replies Created
-
AuthorPosts
-
Hey ullastret!
Please add this on Quick CSS or custom.css to remove the background of the following area:
.header_color .container_wrap_meta, .header_color .main_menu ul { background: transparent; }
Cheers!
IsmaelHey cbeneden!
Install the Codestyling Localization plugin. Go to Tools > Localization then scroll below and find Enfold. Look for the Deutsch translation then click “Edit”. Search for “You are here” then click edit and save. :)
Best regards,
IsmaelHi flinkfoxxx!
You can edit functions.php, find this code on line 443:
add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio' ) );
Replace it with:
add_theme_support( 'post-formats', array('link', 'quote', 'gallery','video','image','audio','status' ) );
We used the status post format. You can refer to this link: http://codex.wordpress.org/Post_Formats#Supported_Formats
You can edit the status format using this on functions.php:
add_filter( 'post-format-status', 'avia_status_content_filter', 10, 1 ); if(!function_exists('avia_status_content_filter')) { function avia_status_content_filter($current_post) { /* FUNCTION HERE */ } }
Best regards,
IsmaelHey!
Generate the icon using the insert shortcode wand. You can find it under Content Elements panel then get the actual html using google chrome’s inspect element. Place the generated html code on the small info text field. It should look like this:
<span class="av_font_icon avia_animate_when_visible av-icon-style- av-no-color avia-icon-pos-left avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:15px;line-height:15px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span>
Cheers!
IsmaelHey!
Please give us a link to the website. Increase the wordpress php memory limit. Set it to at least 128M. Refer to this link.
Regards,
IsmaelHi dick1980!
Add this on Quick CSS or custom.css:
.title_container .main-title:before { content: '\e86d'; font-family: 'entypo-fontello'; padding-right: 10px; }
Best regards,
IsmaelHi!
Please add this plugin, see if it helps with IE8 rendering: http://wordpress.org/plugins/html5shiv/
What is the model of your android device? Maybe a device extension or plugin is causing the issue.
Regards,
IsmaelHi!
@costin: He added it on a div then set it to fix:.main_color { background: #ffffff url(https://www.heart-working.de/wp-content/uploads/2013/04/bg3.png) top center no-repeat fixed; }
Cheers!
IsmaelHey!
Change the color of the menu using this:
.header_color .main_menu ul:first-child > li > a { color: red; }
This is for the active menu:
.header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a { color: blue; }
Cheers!
IsmaelHi!
Can you please post a screenshot of what your trying to do? Do you want to change the grey background of the iconlist? You can set the image as background. Use this on Quick CSS:
.alternate_color .avia-icon-list .iconlist_icon { background-color: #d0d0d0; background: #d0d0d0 url('IMAGE URL HERE') no-repeat; }
Best regards,
IsmaelHi!
You can add this on Quick CSS or custom.css to fix the logo:
.logo, .logo img { max-width: 236px !important; width: 236px !important; height: 99px; }
Regards,
IsmaelFebruary 17, 2014 at 5:28 am in reply to: Advanced layout editor not present in product page #224765Hey hanlinsg!
Unfortunately, the product post type does not support the Advance Layout Editor. :/
However, you can still insert shortcodes using the shortcode wand. :)
Best regards,
IsmaelHey!
Can you please give us a link to the website? A screenshot of the issue will help.
Best regards,
IsmaelHey!
I don’t see any issue on the page. The easy sliders are working properly. Please remove browser cache then reload the page a few times. Test it on another browser. Please post a screenshot of the issue if there is still any.
Cheers!
IsmaelHi donniemaclean!
You should remove this line of code on Quick CSS:
.main_menu ul:first-child > li a { height: 75px !important; line-height: 75px !important; }
Regards,
IsmaelHi tonyiatridis!
You can add this on Quick CSS or custom.css:
.form-allowed-tags { display: none; }
Regards,
IsmaelHey RicardoSuarez!
Edit config-templatebuilder > avia-shortcodes > tabs.php, find this code on line 253″
$output .= ' <div data-fake-id="#'.$tab_atts['custom_id'].'" class="tab '.$titleClass.'" '.$markup_title.'>'.$icon.$tab_atts['title'].'</div>'."\n";
Replace it with:
$output .= ' <div id="#'.$tab_atts['custom_id'].'" data-fake-id="#'.$tab_atts['custom_id'].'" class="tab '.$titleClass.'" '.$markup_title.'>'.$icon.$tab_atts['title'].'</div>'."\n";
Best regards,
IsmaelFebruary 15, 2014 at 9:19 am in reply to: Website is very slow to load with this theme. How can this be fixed? #224302Hi!
Aside from optimizing images and using a cache plugin. You can also use CDN or upgrade your hosting services.
Best regards,
IsmaelHi!
Please increase the wordpress php memory limit. Refer to this link. That should fix it.
Regards,
IsmaelHey!
You need to upload your own logo on Enfold > Theme Options > Logo. Refer to this link if you want to add a tagline below the logo:
Best regards,
IsmaelHey gxjansen!
Please edit includes > loop-index.php, remove everything and replace it with this code: http://pastebin.com/LD37TZ4b
Best regards,
IsmaelHi gxjansen!
Please update to Enfold 2.5, download it on your themeforest account then update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
The update should fix it.
Cheers!
IsmaelHi gxjansen!
First, try to regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/
If it that doesn’t work, please add this on Quick CSS or custom.css:
.template-blog .blog-meta .attachment-square.wp-post-image { height: 100%; }
Cheers!
IsmaelHi!
Please add this on Quick CSS or custom.css:
.home #av_section_1 .flex_column.av_one_half.avia-builder-el-4.el_after_av_one_half.avia-builder-el-last { position: relative; top: 20px; }
Cheers!
IsmaelHey!
Please be specific about what elements you want to change or adjust. You can remove some white space on every section using this on Quick CSS or custom.css:
.content, .sidebar { padding-top: 10px; padding-bottom: 10px; } .hr { margin: 10px 0; }
Best regards,
IsmaelFebruary 15, 2014 at 8:45 am in reply to: Bug? Fullwidth masonry shows all categories, not just the ones selected #224287Hey chartier!
You have a lot of plugins installed. Have you tried deactivating each of them? Check it on another browser after you deactivate the plugins.
Cheers!
Ismael -
AuthorPosts