Forum Replies Created
-
AuthorPosts
-
Hi,
Open /config-templatebuilder/avia-template-builder/php/generic-helper.class.php and look for line 25:
$link = wp_get_attachment_image_src($post_id, 'large');Replace it by this:
$link = wp_get_attachment_image_src($post_id, 'full');Regards,
JosueHey Richard!
Change:
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a img{ max-height: 100px; border: none; }To:
#top #wrap_all .avia-gallery-1 .avia-gallery-thumb a{ max-height: 100px; overflow: hidden !important; } #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a img{ border: none; }Regards,
JosueHey!
That’s expected, it’s happening because the span date is inside the strong element, i’d suggest changing the structure in /framework/php/class-framework-widgets.php, around line 530, wrap the title with another span so you can target that only:
strong.news-headline:hover span.title { text-decoration: underline !important; }Best regards,
JosueHi!
I re-added the code Ismael suggested and the breadcrumb issue seems to be fixed now, please review your site.
Regards,
JosueAugust 12, 2014 at 6:37 am in reply to: Titles but no content in a masonry or portfolio grid #302998Hi,
Have you set a featured image to each Portfolio item?

Regards,
JosueHey!
Have you tried setting those Posts as Video format?

Best regards,
JosueHi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHey!
Did you re-add the code? the single post view now displays fullwidth:
http://blueoaks.cc.fqdns.net/resources/sermons/stories-that-stick/the-mustard-seed/Regards,
JosueHey Ron!
I guess the CSS Yigit added was this:
#second-slide img.ls-l.ls-preloaded { width: auto!important; height: auto!important; }Right now i commented that out and the slider is still working as expected, so i guess you can safely remove it now.
Regards,
JosueHi!
This mod would require a lot of coding and unfortunately that’s something we can’t cover, i’ll provide you the files involved so you can try doing it yourself:
js/avia.js
Look for the aviaMegamenu function located in line 894.includes/helper-main-menu.php
If you need to put a empty div to store the submenu items you should do it here, around line 131.An idea would be to try to move the submenus to an empty container when hovered via JavaScript + additional style fixes could be handled by CSS.
Best regards,
JosueHey Anders!
The image that is being included on the homepage is already resized to 495×400.
Regards,
JosueHey!
I was able to set them in different locations, please take a look:
http://enfoldtest.wpengine.com/hotspot/ (hosted on WPengine)Regards,
JosueHi!
You need to lower the size of the first heading when on mobile, try adding this:
@media only screen and (max-width: 767px) { .entry-content-wrapper h2.av-special-heading-tag { font-size: 18px !important; } }Regards,
JosueNow the slider isn’t working, i’m trying to do some tests but when doing so it keeps redirecting me to a hostgator 404 page.
Hi Justin,
It still displays fine for me right now, tested in two computers.
Regards,
JosueIs the issue fixed? the slider is now correctly rendering on my end.
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHi!
The website is not loading for me right now.
Regards,
JosueHi!
Try doing the redirect manually by editing the .htaccess file:
http://kb.mediatemple.net/questions/242/How+do+I+redirect+my+site+using+a+.htaccess+file%3FRegards,
JosueYou are welcome Adrien, glad we could help :)
Regards,
JosueAugust 12, 2014 at 2:33 am in reply to: Fix for Visualizer issue cause page builder problems. #302933Hey Chrillemeter!
The problem is that Visualizer is loading the WP media-editor.js file before the theme does, this makes the “wp” object unavailable for avia-media.js.
Try the following, open /config-templatebuilder/avia-template-builder/php/template-builder.class.php and look for line 204:
wp_enqueue_script('avia_builder_js', $this->paths['assetsURL'].'js/avia-builder.js', array('jquery','jquery-ui-core', 'jquery-ui-sortable', 'jquery-ui-droppable','wp-color-picker'), $ver, TRUE );Replace it by:
wp_enqueue_script('avia_builder_js', $this->paths['assetsURL'].'js/avia-builder.js', array('jquery','jquery-ui-core', 'jquery-ui-sortable', 'jquery-ui-droppable','wp-color-picker', 'media-editor'), $ver, TRUE );Regards,
JosueAugust 11, 2014 at 11:13 pm in reply to: Insert search button and widget area in the secondary menu bar #302905Hey Cerasela!
You can use the “Search” widget for that.
Cheers!
JosueHey Adrien!
add_theme_support( 'avia_conditionals_for_mega_menu' );Is a native Enfold feature that let you insert conditionals for menu items, it will put something like this:

Cheers!
JosueHi!
Try adding this line to wp-config.php or theme functions.php:
error_reporting(E_ALL & ~E_NOTICE);Regards,
JosueAugust 11, 2014 at 9:03 pm in reply to: Social icons cut off on footer in IE on smaller page sizes/responsive modes #302870Hey Gabe!
Well, you should not worry about that. Fortunately, there is no such thing as IE8 “mobile”.
Regards,
JosueHey!
I tested that fix (functions.php:54) on my local install and it worked:
http://screencast.com/t/vp7LnkQv1Regards,
JosueAugust 11, 2014 at 8:23 pm in reply to: Strange recursive div adding a simple text content in footer widget #302850Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHey!
We need to see the site live in order to solve frontend issues, reply back to this topic when you go live so we can assist you.
Best regards,
JosueAugust 11, 2014 at 8:20 pm in reply to: Insert search button and widget area in the secondary menu bar #302844Hi!
Change this line:
if ((is_object($args) && $args->theme_location == ‘avia’) || (is_string($args) && $args = “fallback_menu”))To:
if ((is_object($args) && $args->theme_location == ‘avia2’) || (is_string($args) && $args = “fallback_menu”))Best regards,
JosueNice workaround, glad i could help :)
Cheers!
Josue -
AuthorPosts
