Forum Replies Created
-
AuthorPosts
-
Hi,
Edit functions.php, find this code:
avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
Replace it with
avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 , 'crop' => false ); // images for fullsize pages and fullsize slider
Regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
Ismael
Hey,
Yes, the z-index of the plugin’s container is greater than of the theme’s container. Glad it worked. :)
Cheers,
Ismael
Hi,
You can this on your custom.css or Quick CSS to hide the areas
.inner_product_header {
display: none;
}
.avia_cart_buttons {
display: none;
}Regards,
Ismael
Hi,
I’m not sure but woocommerce have that kind of filters. Let me tag the rest of the support team.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS:
@media only screen and (max-width: 989px) and (min-width: 768px) {
.responsive .main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 12px;
}
}This will decrease the padding and the font size on iPad.
Note: The menu overlap is still not fix on instance when you rotate the iPad from landscape to portrait view without refreshing the page.
Regards,
Ismael
August 15, 2013 at 2:43 pm in reply to: [Portfolio Slider] Change Background Color of Slider Entries #135523Hi,
Please try this:
.avia-content-slider.avia-content-slider-active.avia-content-slider2 {
background: red;
}
.avia-content-slider.avia-content-slider-active.avia-content-slider2 .slide-image {
background: red !important;
}Regards,
Ismael
Hi,
Can you give us a link to the website? I’m not sure what you mean by “all anchor points are on the page”.
Regards,
Ismael
Hi,
Can you give us a link to the website? What is the “Services” page? Is it a parent page or something?
Regards,
Ismael
Hi,
Go Enfold > General Settings > Blog Style, select Single Author, small preview.
Regards,
Ismael
Hi,
You can use this:
.main_color .hr-inner-style {
border-color: red;
}Regards,
Ismael
Hi,
How do you add the link? It shouldn’t work that way. Please download the latest version of Enfold which is 1.9.1.
Regards,
Ismael
Hi,
I’m not sure what is causing the error. You can add this on your custom.css or Quick CSS to hide it:
body > center {
display: none;
}You’re using an old version of the theme. Please download version 1.9.1 on your themeforest account. Override the theme files via FTP, watch this video: https://vimeo.com/channels/aviathemes/64927356
Regards,
Ismael
August 15, 2013 at 4:18 am in reply to: Inserting image into layer slider — can only use full size image? #135431Hi,
Under Attachment details when selecting an image on the Media Library, you can click “Edit Image”.
Regards,
Ismael
Hi,
For example, you added an ID on the attributes panel, something like “awesome”. You can use it like this on your custom.css or Quick CSS
#awesome {
background: black;
}Regards,
Ismael
Hi,
Sorry for the inconvenience. It is only difficult on your end, maybe because of a unique factor on your hosting environment. Thousands of user are not having any trouble importing the dummy data.
Did you increase the php memory limit? Add this on your wp-config.php:
define('WP_MEMORY_LIMIT', '128M');
Again, we are very sorry that you are experiencing this issue. :(
Regards,
Ismael
Hi,
I don’t see the difference between the two links. Icons are showing fine.
Regards,
Ismael
Hi,
Unfortunately, border-radius property is not supported on IE8. Please add this on your custom.css to fix the stretched image.
.avia-testimonial-image, .avia-testimonial-image img {
max-width: 80px;
width: 80px;
}Regards,
Ismael
Hi,
I’m sure it is possible to use the plugin. You can then insert the breadcrumb code on functions-enfold.php, find this code:
//advanced title + breadcrumb function
if(!function_exists('avia_title'))
{
function avia_title($args = false, $id = false)
{
global $avia_config;
if(!$id) $id = avia_get_the_id();
$defaults = array(
'title' => get_the_title($id),
'subtitle' => "", //avia_post_meta($id, 'subtitle'),
'link' => get_permalink($id),
'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
'breadcrumb' => true,
'additions' => "",
'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
);
if ( is_tax() || is_category() || is_tag() )
{
global $wp_query;
$term = $wp_query->get_queried_object();
$defaults['link'] = get_term_link( $term );
}
else if(is_archive())
{
$defaults['link'] = "";
}
// Parse incomming $args into an array and merge it with $defaults
$args = wp_parse_args( $args, $defaults );
$args = apply_filters('avf_title_args', $args, $id);
// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
extract( $args, EXTR_SKIP );
if(empty($title)) $class .= " empty_title ";
if(!empty($link)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."'>".$title."</a>";
if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>";
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
$html = str_replace('{class}', $class, $html);
$html = str_replace('{title}', $title, $html);
$html = str_replace('{additions}', $additions, $html);
$html = str_replace('{heading}', $heading, $html);
if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview())
{
$avia_config['small_title'] = $title;
}
else
{
return $html;
}
}
}Please hire a freelance developer to help you integrate the plugin.
Regards,
Ismael
Hi,
Which slider are we talking about here? Layer Slider, Easy Slider?
You can add this on your custom.css or Quick CSS to show the numbers:
.avia-slideshow-dots a {
display: inline-block;
height: 13.5px;
width: 13.5px;
border-radius: none;
background: #000;
opacity: 0.6;
filter: alpha(opacity=60);
text-indent: 0;
overflow: visible;
margin: 0 1px;
padding: 7px;
color: black!important;
font-size: 30px;
border: none !important;
background: transparent !important;
}Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
.main_color tr:nth-child(even) {
color: #121212;
}Regards,
Ismael
Hi,
Edit template-builder.php, find this code:
echo " </div><!--end builder template-->";
Below, add this code:
$pagelist = get_pages('sort_column=menu_order&sort_order=asc');
$pages = array();
foreach ($pagelist as $page) {
$pages[] += $page->ID;
}
$current = array_search(get_the_ID(), $pages);
$prevID = $pages[$current-1];
$nextID = $pages[$current+1];
?>
<?php if (!empty($prevID)) { ?>
<a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
</a>
<?php }
if (!empty($nextID)) { ?>
<a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
<?php } ?>Edit page.php, find this code:
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'page' );
?>Add this:
<?php $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
$pages = array();
foreach ($pagelist as $page) {
$pages[] += $page->ID;
}
$current = array_search(get_the_ID(), $pages);
$prevID = $pages[$current-1];
$nextID = $pages[$current+1];
?>
<?php if (!empty($prevID)) { ?>
<a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
</a>
<?php }
if (!empty($nextID)) { ?>
<a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
<?php } ?>It doesn’t look exactly like the post nav but the it works.
Regards,
Ismael
-
AuthorPosts