Forum Replies Created
-
AuthorPosts
-
Hi,
Create a new page. Go to Advance Layout Editor > Plugin Additions > Insert the Product Grid element. Select the number of columns. Use this page as your shop page instead.
Please download the latest version of the theme. It might fix the issue.
Regards,
Ismael
May 25, 2013 at 5:01 am in reply to: can't get a 1 pt rule on the left of the sidebar container… #120645Hi,
Just add this on your custom.css or Quick CSS
.blog-categories.minor-meta {
display: none;
}Regards,
Ismael
Hi,
Use the Advanced Layout Editor, go Media Elements, insert Gallery. Click Add/Edit Gallery, click on the Images that you want once.
Regards,
Ismael
Hi,
Open config-templatebuilder > avia-shortcodes > testimonials.php, find this code
//final output
$output .= "<div class='avia-testimonial {$class}'>";
if($grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-content'>";
$output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
$output .= "</div>";
$output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
if(!$grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-meta-mini'>";
if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
if($link) $output .= " – <a class='avia-testimonial-link' href='{$link}'>{$linktext}</a>";
$output .= "</div>";
$output .= "</div>";
$output .= "</div>";Replace it with
//final output
$output .= "<div class='avia-testimonial {$class}'>";
if($grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-content'>";
$output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
$output .= "</div>";
$output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
if(!$grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-meta-mini'>";
if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
if($link) $output .= " – <a class='avia-testimonial-link' target='_blank' href='{$link}'>{$linktext}</a>";
$output .= "</div>";
$output .= "</div>";
$output .= "</div>";Cheers,
Ismael
Hi,
Please use this on your custom.css or Quick CSS
.widgettitle {
color: red !important;
}
.widget {
color: blue !important;
}Regards,
Ismael
Hi,
Inspect the body class for the current page with the promobox.
.page-id-734 .main_color .av_promobox{
background: #fcfcfc;
}This will only change the promobox background color on page with the id 734.
Regards,
Ismael
Hi,
Enfold uses Entypo Fontello fonts to create the icons.
http://www.entypo.com/characters/
What icons would you like to add and where?
Regards,
Ismael
Hi,
Go to Appearance > Widget, remove all the widgets on Displayed Everywhere widget area.
The navigation will only work if there are page hierarchy. You can define page hierarchy on Page Attributes, select the Parent page. Please import the dummy data then check the Pages.
You can use this plugin http://wordpress.org/plugins/wp-google-fonts/.
Regards,
Ismael
Hi,
You can add additional javascript on functions.php. Find this code
//register js
wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'avia-compat' );
wp_enqueue_script( 'avia-default' );
wp_enqueue_script( 'avia-shortcodes' );
wp_enqueue_script( 'avia-prettyPhoto' );
wp_enqueue_script( 'avia-html5-video' );You can add your own there. We cannot assure you that every javascript is compatible with the theme.
To register another script add something like this
wp_register_script( 'new-script', $template_url.'/js/new-js.js', 'jquery', "1", true);
Then link the new script with this
wp_enqueue_script( 'new-script' );
Regards,
Ismael
Hi,
I’m sorry but it is not possible. You can’t see it on the theme demo. What you can do is to create a full width page, insert 1/5 or 1/4 columns, insert the image element then link it manually to a video url. Just like what you did here http://essentialmessagemarketing.com/portfolio-item/portfolio-test-1/. Click on the image.
Regards,
Ismael
May 25, 2013 at 2:24 am in reply to: Add description in gallery images lightbox- Enfold Theme #121154Hi,
It is not possible according to Kriesi.
https://kriesi.at/support/topic/caption-in-lightbox
Regards,
Ismael
Hi,
Just add this on your custom.css
.trail-end {
display: none !important;
}Regards,
Ismael
Hi,
Sorry for the delay. Please add this on your custom.css
#wrap_all {
width: 100%;
position: relative;
z-index: 10;
}Cheers,
Ismael
Hi,
Actually, you can.
.image-overlay.overlay-type-extern .image-overlay-inside::before{content: url(../images/layout/loading.gif);}
.image-overlay.overlay-type-video .image-overlay-inside::before{content: url(../images/layout/loading.gif);}Regards,
Ismael
Hi,
You didn’t follow the instructions correctly. Cut this code
$phone = avia_get_option('phone');
$phone_class = !empty($nav) ? "with_nav" : "";
if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";Now, paste it under this code which is the code responsible for the logo.
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Add this on your custom.css to position the phone number correctly.
.social_header .phone-info {
font-weight: bold;
height: 30px;
line-height: 10px;
right: 200px;
top: 40px;
position: absolute;
}
.social_header .phone-info.with_nav span {
border: none;
}Regards,
Ismael
Hi,
Go LayerSlider WP > Select a slider > Global Settings > Basic > Slider width. 1030 seems to be the exact width.
Regards,
Ismael
Hi,
You can use Media Queries to target the text on different screens.
@media only screen and (max-width: 767px) {
p.ls-s-1 {
position: absolute;
left: 50px !important;
font-size: 25px;
}
}Don’t remove the !important.
Regards,
Ismael
Hi,
You can set an excerpt for each post. Edit the post, look for Screen Options (top right), tick the Excerpt option. You can place the excerpt there.
Regards,
Ismael
Hi,
Please follow these links.
https://kriesi.at/support/topic/mega-menu-bug#post-108100
https://kriesi.at/support/topic/header-background-image-2
Regards,
Ismael
-
AuthorPosts