Forum Replies Created
-
AuthorPosts
-
Hi,
Single product pages don’t usually have a sidebar.
It will require a bit of modification because of the single product page’s layout, please hide it. Use this on your custom.css
.single-product .sidebar {
display: none !important;
}Regards,
Ismael
Hi,
Can you give us a link to your website?
Please check functions.php. Do you have this line of code? 281-321
if(!function_exists('avia_post_nav'))
{
function avia_post_nav($same_category = false)
{
if(!is_singular() || is_post_type_hierarchical(get_post_type())) return;
//if(get_post_type() === 'portfolio') return;
global $avia_config;
$same_category = apply_filters('avia_post_nav_categories', $same_category);
$entries['prev'] = get_previous_post($same_category);
$entries['next'] = get_next_post($same_category);
$output = "";
foreach ($entries as $key => $entry)
{
if(empty($entry)) continue;
$tc1 = $tc2 = "";
$link = get_permalink($entry->ID);
$image = get_the_post_thumbnail($entry->ID, 'thumbnail');
$class = $image ? "with-image" : "without-image";
$output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
$output .= " <span class='label iconfont'>".$avia_config['font_icons'][$key]."</span>";
$output .= " <span class='entry-info-wrap'>";
$output .= " <span class='entry-info'>";
$tc1 = " <span class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</span>";
if($image) $tc2 = " <span class='entry-image'>{$image}</span>";
$output .= $key == 'prev' ? $tc1.$tc2 : $tc2.$tc1;
$output .= " </span>";
$output .= " </span>";
$output .= "</a>";
}
return $output;
//add this line for fake. never gets executed but makes the theme pass Theme check
if(1==2){paginate_links(); posts_nav_link(); next_posts_link(); previous_posts_link();}
}
}Regards,
Ismael
May 29, 2013 at 2:08 am in reply to: Alternate background image flickering black when window resize #121743Hi,
I can’t see the flickering when I re-size the browser. What browser are you using?
Let me tag the rest of the support team to check.
Regards,
Ismael
Hi,
How did you add the images without rollover effect?
If you want the rollover effect, you need something like this
<a href="http://www.klimhal-events.nl" class="avia_image avia-builder-el-3 avia-builder-el-no-sibling avia-align-center ">
<img class="avia_image avia_animated_image avia_animate_when_almost_visible top-to-bottom avia_start_animation" src="http://lavitasana.oscar.nl/wp-content/uploads/2013/05/landing-LVS-021-300x240.png" alt="">
<span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span></a>This line of code is the rollover effect
<span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span>They need to be included.
Regards,
Ismael
Hello,
You can use the text widget to insert
tag on the footer. You need to use Media Queries to make it responsive.
Regards,
Ismael
Hi,
You can play around with the column width and the margin. Use this
#footer .flex_column.av_one_third {
width: 25%;
margin-left: 8%;
}Regards,
Ismael
Hey,
It is possible. Edit sidebar.php then find this code
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column' => 'menu_order, post_title');
$children = wp_list_pages($args);Change it to this
$args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column' => 'menu_order', 'sort_order' => 'ASC');
$children = wp_list_pages($args);You can refer to this link for more sorting options.
http://codex.wordpress.org/Function_Reference/wp_list_pages
Regards,
Ismael
Hi,
Please add this on your custom.css
#header_main {
border-bottom: none;
}
.stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
border-top: none;
}
#header_main .container {
border-bottom: 1px solid #E1E1E1;
}Regards,
Ismael
May 28, 2013 at 5:54 am in reply to: Change the vertical alignment of the top menu for Enfold #121579Hey,
Sorry for the delay. You can move the menu via CSS. Just add this on your custom.css or Quick CSS
#menu-top-menu {
margin-top: 30px;
margin-left: -180px;
}Adjust the values.
Regards,
Ismael
Hi,
I think that is the logo. Just insert your logo on Enfold > Logo.
Regards,
Ismael
May 28, 2013 at 5:47 am in reply to: Great Theme! But Layer Slider is NOT working, Only showing [layerslider]? #121563Hello,
Please don’t use the LayerSlider shortcode because it is not working. Go to Advance Layout Editor, under Media Elements, insert the LayerSlider.
Regards,
Ismael
Hi,
You can insert the Horizontal Ruler element, select Whitespace. You can even indicate the height.
Regards,
Ismael
Hi,
@formateins: Thanks for the tip.
Or you can add this on your functions.php
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}Cheers,
Ismael
Hi,
Refresh your page a few times.
These are the steps you can do
– Deactivate all plugins then reactivate them to check which plugin is interfering with the Screen Options.
– Switch back to TwentyTwelve theme, see if the button works.
– Re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress?
– Increase the memory available on your PHP.
1. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M. If your line shows 64M try 128M
memory_limit = 64M ; Maximum amount of memory a script may consume (32MB)
2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M
3. Try adding this line to your wp-config.php file:
Increasing memory allocated to PHP
define(‘WP_MEMORY_LIMIT’, ’64M’);
4. Talk to your host.
Regards,
Ismael
Hi,
I think user.ini is almost the same as .htaccess. Please contact your host to make the certain changes for you.
Regards,
Ismael
Hi,
You kinda lost me there. Are you talking about the navigation?

Let me tag the rest of the support team.
Regards,
Ismael
Hi,
Please try to add this css code
.grid-content {
padding: 16px !important;
position: relative;
}Regards,
Ismael
Hi,
That is the title container. Are you sure you want to hide it? You can add this on your custom.css to remove the area.
.title_container {
display: none;
}Regards,
Ismael
Hi,
It is weird. Please download the latest version, Enfold 1.5. It might fix the issue.
Or
You can change the memory limit within the wp-config.php file or in the htaccess file:
define('WP_MEMORY_LIMIT', '128M');If you have access on the .htaccess file, add this code
php_value memory_limit 128MRegards,
Ismael
Hi,
You can change the background using this
.main_color .image-overlay .image-overlay-inside::before {
background-color: red !important;
}Open css > base.css, find this code
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}You can replace the icon used, refer to this link http://www.entypo.com/characters/. Lets try the phone icon (U+1F4DE). You can do something like this
.image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
.image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}Remove browser cache then hard refresh the page.
Cheers,
Ismael
Hi,
You move it using this on your custom.css or Quick CSS
.flex_column.av_one_full.first.avia-builder-el-0.avia-builder-el-first .avia_textblock > div > object {
margin-left: -600px;
}Adjust the left margin.
Regards,
Ismael
May 28, 2013 at 4:26 am in reply to: Contact form as part of a text block… not possible with Enfold, but how? #121379Hi,
You can probably achieve this using Contact Form 7. Then edit the styling via CSS.
Regards,
Ismael
May 28, 2013 at 4:25 am in reply to: I have some issues with translation issues and with the contact form! #120367Hi,
I tested the Contact page on my end and it is working fine. Please watch this video to understand how to work with the contact page https://vimeo.com/channels/aviathemes/64978019. Maybe it has something to do with the language.
Regards,
Ismael
-
AuthorPosts
