Forum Replies Created
-
AuthorPosts
-
February 15, 2014 at 8:45 am in reply to: Bug? Fullwidth masonry shows all categories, not just the ones selected #224287
Hey 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!
IsmaelHi Schloss Klaus!
Can you please post a screenshot? The page gives me 404 error. You can use imgur or dropbox.
Cheers!
IsmaelHi!
Can you please post a screenshot of what you’re trying to do? I don’t see any grid related css code above. Please add this on custom.css or Quick CSS to adjust the width of the 4 column grid container:
.no_margin.av_one_fourth { width: 20%; padding: 3px; }Regards,
IsmaelHey!
Please add this at the bottom of Quick CSS:
.iconbox_content_container a img, .iconbox_content_container img { width: auto\9; max-width: 100%\9; } .ie10 .iconbox_content_container a img, .ie10 .iconbox_content_container img { width: auto; max-width: 100%; }Best regards,
IsmaelFebruary 15, 2014 at 8:29 am in reply to: After updating, images in columns are no longer responsive? #224281Hi!
This should fix the image gap on mobile view:
@media only screen and (max-width: 767px) { .avia-align-center.avia_image.avia-builder-el-no-sibling { margin-bottom: 0; margin-top: 15px; } }This is for the footer widget.
@media only screen and (max-width: 989px) and (min-width: 768px) { div .av_one_fourth { width: 48.0%; } }Regards,
IsmaelFebruary 15, 2014 at 8:23 am in reply to: Product descriptions disappeared from front end of site #224277Hi srubens!
We haven’t tested Woocommerce 2.1 on Enfold. Please try a lower version of the plugin. We need to inspect the site live.
Cheers!
IsmaelHi!
You can create a file called loop-report.php on the includes folder then edit config-templatebuilder > avia-shortcodes > blog.php. Find this code on line 259:
get_template_part( 'includes/loop', 'index' );Replace it with:
if(!is_page( 42 )) { get_template_part( 'includes/loop', 'report' ); } else { get_template_part( 'includes/loop', 'index' ); }Replace 42 with your cpt page id or the name of the page where you want to show the custom post type report. Edit loop-report.php if you want to change the layout.
Best regards,
IsmaelHi derek62!
Have you tried this solution? https://kriesi.at/support/topic/invisible-icons/#post-216288
Please refer to this link: https://kriesi.at/support/topic/icons-problem-in-ie10/
Regards,
IsmaelHey!
Please use this:
#top .fullsize .template-blog .post-title { text-align: left; } #top .fullsize .template-blog .post-meta-infos { text-align: left; }Cheers!
IsmaelHi wholereneducation!
They are actually the Fullwidth Easy Slider, Fullscreen Slider and Color Section using video background.
Regards,
IsmaelFebruary 15, 2014 at 7:20 am in reply to: getting rid of background image with blank template #224263Hey Munford!
Please deselect the page on Enfold > Theme Options > Where do you want to display blog? option.
Best regards,
IsmaelHi!
Did you fix it again? I don’t think it has anything to do with the theme update.
Cheers!
IsmaelHi!
Please use this instead:
add_theme_support ('deactivate_layerslider');Add it at the very bottom of functions.php.
Cheers!
IsmaelHi!
Please copy the immomakler.css file on the theme’s css folder then add this on functions.php:
if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_immomakler_style', 100); } function avia_register_immomakler_style() { //register style wp_register_style('immomakler' , $template_url."/css/immomakler.css", array(), '1', 'screen'); wp_enqueue_style('immomakler'); }Best regards,
IsmaelHi!
Did you add the featured image on one post? Please deactivate all plugins, see if that helps. Update your Enfold installation, download the latest version on your themeforest account. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Cheers!
IsmaelHey intosuwo!
Please use this:
.toggle_content { font-size: 12px !important; } .js_active .toggler { font-size: 12px; }Cheers!
IsmaelHi Juan!
Can you please give us a link to the website? 128M of memory should be enough to handle the theme.
Cheers!
IsmaelHey rfb4!
Change the link color using this on Quick CSS:
.main_color a:hover, .main_color h1 a:hover, .main_color h2 a:hover, .main_color h3 a:hover, .main_color h4 a:hover, .main_color h5 a:hover, .main_color h6 a:hover, .main_color .template-search a.news-content:hover { color: red; }Use this for the bold fonts:
.main_color strong { color: red; }Regards,
IsmaelHey!
I think it is fixed now. We set the SEO > Title & Metas > Post Types > Pages > Title Templates to:
%%title%% %%sep%% %%sitedesc%%Check here: http://www.smootheedges.com/
Best regards,
IsmaelHi CivilC!
Please edit the page again then switch to Advance Layout Builder, look for Screen Options. Enable the Avia Layout Builder.
Cheers!
IsmaelHi bleepstudio!
Edit the page then look for Page Attributes > Template > choose the Blank – no footer, no header template. Add a color section then add “awesome-section” on For Developers: Section ID. Place 3 1/3 columns inside the color section and an Image element for each. Add this on Quick CSS:
#awesome-section { width:100%; height:100%; position:fixed; top: 0; } #awesome-section .container, #awesome-section .avia_image { height: 100%; }Cheers!
IsmaelHey paulann!
You can add this on functions.php:
add_filter('avia_post_slide_query','avia_order_by_random', 10, 2); function avia_order_by_random($query, $params) { $query['orderby'] = 'rand'; return $query; }Regards,
IsmaelHi Amanda!
You can adjust the top and bottom padding of the posts title. Add this on Quick CSS:
#top .fullsize .template-blog .post-title { padding: 2px 0; }Best regards,
IsmaelHey!
The image is just too tall, you should place it on a square canvas first to match the ratio of other product images.
Cheers!
IsmaelHi!
The white spaces or gaps are cause by special headings and line breaks. You can add this on custom.css or Quick CSS to adjust the top margin of special headings.
.av-special-heading { margin-top: 10px; }On the post “Shift Happens” there 3 p tags generated right after the post meta infos. You should check that.
Best regards,
IsmaelHi Jorge!
Please remove the strong tag then add this on Quick CSS:
.avia-heading-row { font-weight: bold; }Regards,
IsmaelHi cyrtocara!
You can use these plugins:
http://www.semiologic.com/software/dofollow/
http://tech.gaeatimes.com/index.php/archive/wordpress-15-plugin-strip-nofollow-tag-from-comment-urls/
http://www.fob-marketing.de/marketing-seo-blog/wordpress-nofollow-seo-plugin-nofollow-case-by-case.htmlBest regards,
Ismael -
AuthorPosts

