Forum Replies Created
-
AuthorPosts
-
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
Hi,
It should be there by default. Go to Appearance > Menu panel. On Theme Locations, select a Main Menu.
Regards,
Ismael
August 15, 2013 at 3:08 am in reply to: Missing blog post and fatal error when trying to login to wp dashboard #135161Hi,
You can use this:
.main_color .hr-inner {
border-color: green;
}Remove browser cache then reload the page.
Regards,
Ismael
Hi,
What do you mean by “changing these to ‘special headings’ with a HR next to the text”?
Regards,
Ismael
Hi,
Please try this:
#top div .avia-gallery img {
max-height: 100%;
}Regards,
Ismael
Hi,
First, upgrade your theme to 1.9.1. Then switch the Advance Layout Editor to debug mode.
Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You can now see the actual shortcode below the Advance Editor. You can combine shortcodes like this:
[av_tab_container position='sidebar_tab sidebar_tab_left' boxed='border_tabs' initial='1']
[av_tab title='Tab 1' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[av_tab title='Tab 2' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#000000' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[/av_tab_container]The code above is the tab shortcode with button shortcode inside the toggles.
Regards,
Ismael
Hey,
Please add this on your custom.css at the very bottom:
@media only screen and (min-width: 1140px) {
.responsive .container .twelve.units {
width: 1030px !important;
}
}Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
@media only screen and (min-width: 768px) and (max-width: 989px) {
.main_menu ul:first-child > li > a {
padding: 0 8px;
font-size: 11px;
}
}Regards,
Ismael
August 15, 2013 at 2:42 am in reply to: Continuous background image and page-specific backgrounds #135103Hi,
Sorry but we really don’t give support for third party plugins. The best way to do is to hire a freelancer developer or contact the plugin author.
Sorry for this. :(
Regards,
Ismael
-
AuthorPosts