Forum Replies Created
-
AuthorPosts
-
Hi,
Edit header.php, try to paste the php lines on top of this code:
<?php
/*
* display the theme logo by checking if the default logo was overwritten in the backend.
* the function is located at framework/php/function-set-avia-frontend-functions.php in case you need to edit the output
*/
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');Then the javascript on footer.php, paste it on top of this code:
<a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
<div id="fb-root"></div>Regards,
Ismael
Hi,
Do you have any caching plugin? Please flush the settings. Try to deactivate any plugins for that matter, see if the iphone view works.
Is this your site? http://reclaimednj.com/?
The maintenance mode works ok on mobile devices:
http://responsinator.com/?url=http%3A%2F%2Freclaimednj.com%2F
Regards,
Ismael
Hi,
@mrkuji: Thanks for the tip. :)
@Sashmoolman: You can add this on your custom.cs or Quick CSS, for the menu:
.main_menu ul:first-child > li > a {
font-size: 20px;
}this is for the headings, you can use this:
h1 {
font-size: 30px !important;
}for h2
h2 {
font-size: 20px !important;
}so on and so forth.
Regards,
Ismael
Hi,
Add this on your custom.css or Quick CSS
.avia-menu-fx {
display: none;
}Regards,
Ismael
Hi,
They work on my end. Please remove browser cache then reload the page. Or you can use this instead:
.main_color.container_wrap.fullsize {
background: white;
}Regards,
Ismael
Hi,
There are lots of plugins installed. I don’t want to mess with your settings, so I need you disable all plugins. I can’t seem to fix the issue with the slider transition.
Please upgrade to Enfold 1.8.4. Would you be so kind to create the Layer Slider from scratch? This is a quick video on Layer Slider: http://www.youtube.com/watch?v=ZY9SxVyugx4
Regards,
Ismael
Hi,
Can you give us a link to the website? I suggest you upload a much bigger image.
Regards,
Ismael
Hi,
Please add this:
.icl-fr {
left: -40px !important;
}Nice website. :)
Regards,
Ismael
Hi,
Please give us a link to the website, we would like to inspect it. You can add letter spacing using this:
body, body p {
letter-spacing: 100px;
}Adjust the value.
Regards,
Ismael
Hi,
Just add this on your custom.css or Quick CSS
#after_layer_slider_1 {
background: white;
}Regards,
Ismael
Hi,
Yes that is possible. On the Advance Layout Editor, insert a 1/1 Column element then add a Text Block element. On the text block, add this code:
<div class="colcontenttop"></div>
On your custom.css, add this code:
.colcontenttop {
height: 38px;
background-image: url(../images/bgcolcontenttop.png);
background-repeat: no-repeat;
background-position: top;
}It will look like this:
Regards,
Ismael
Hi,
Please remove browser cache the reload the page. The code works fine on my end. :)
foreach($sorted as $key => $post_type)
{
if(isset($post_type_obj[post]->labels->name))
{
$output .= "<h4>Articles</h4>";
} elseif(isset($post_type_obj[$key]->labels->name))
{
$output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
} else {
$output .= "<hr />";
}Please give us a link to your website.
Cheers,
Ismael
Hi,
The rotating company logos are made using the Layer Slider. It is a very wide single image with the logo laid out, moving from right to left on an infinite loop.
Regards,
Ismael
Hi,
You can add Media Queries and choose to hide them on desktop screen widths. Inspect the menu that you want to hide look for the unique menu li id. Add this on your custom.css or Quick CSS.
@media only screen and (min-width: 1024px) {
/* Add your Desktop Styles here */
#menu-item-755 {
display: none;
}
}This will hide the menu on screens with minimum of 1024px resolution.
Regards,
Ismael
Hi,
Looks like you can use this plugin : http://wordpress.org/plugins/ban-hammer/installation/
Regards,
Ismael
Hey,
Glad you figured it out. Although I can’t seem to reproduce the issue on my end.
Regards,
Ismael
Hi,
You can watch tutorial videos about Enfold here: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hi,
Go to includes > admin > register-admin-options.php, find this code:
'Yellowtail'=>'Yellowtail',
Add this code below, to register the Maven Pro font.
'Maven Pro'=>'Maven Pro',
You’ll be able to select it on Enfold > Styling > Heading Font.
Regards,
Ismael
Hi,
Edit search.php, find this code:
//get the sidebar
$avia_config['currently_viewing'] = 'page';
get_sidebar();Replace it with:
//get the sidebar
$avia_config['currently_viewing'] = 'page';
echo '<div class="sidebar sidebar_right three alpha units"><div class="inner_sidebar extralight-border">';
dynamic_sidebar( 'search-sidebar' );
echo '</div></div>';Go to includes > admin > register-widget-area.php, find this code:
foreach ($sidebars_to_show as $sidebar)
{
register_sidebar(array(
'name' => 'Sidebar Pages',
'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">',
'after_widget' => '<span class="seperator extralight-border"></span></div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
}Below, add this code:
foreach ($sidebars_to_show as $sidebar)
{
register_sidebar(array(
'name' => __( 'Search Sidebar' ),
'id' => 'search-sidebar',
'before_widget' => '<div id="%1$s" class="widget clearfix %2$s">',
'after_widget' => '<span class="seperator extralight-border"></span></div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
));
}Go to Appearance > Widget, add a widget on the Search Sidebar widget area.
Regards,
Ismael
Hi,
1.) Create a new page, name it “New Shop” for example, set it to No Sidebar. On the Advance Layout Editor > Plugin Additions, insert the Product Grid element.
2.) Please add this on your custom.css or Quick CSS
.single-product .sidebar {
display: none !important;
}Regards,
Ismael
Hi,
IE8 doesn’t support the property background-color. Please add this on your custom.css or Quick CSS
.msie8 .main_color .avia-color-theme-color {
background: #f26422;
}or just use:
.main_color .avia-color-theme-color {
background: #f26422;
}Regards,
Ismael
Hi,
First, edit functions.php, add this code:
add_theme_support('avia_template_builder_custom_css');
This will allow you to add unique css selector for avia elements. Edit the text block within the 1/2 column with a form then add a unique css id, for example “form-textblock’. Use the unique css selector to add a transparent background.
.form-textblock {
background: rgba(0,0,0,.5);
}Regards,
Ismael
Hi,
Please follow this link: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit
Look for the part where you need to edit the wp-config.php. Add the code:
define('WP_MEMORY_LIMIT', '256M');
Regards,
Ismael
Hi,
The font looks fine to me. Can you give us a screenshot and point us to the areas with shadowed fonts?
Regards,
Ismael
Hi,
Please edit config-templatebuilder > aviashortcodes > postslider.php, find this code:
$html .= "<a href='#prev' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
$html .= "<a href='#next' class='next-slide' >".__('Next','avia_framework' )."</a>";Replace it with:
$html .= "<a href='#' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
$html .= "<a href='#' class='next-slide' >".__('Next','avia_framework' )."</a>";Regards,
Ismael
July 30, 2013 at 5:27 am in reply to: Fatal error: Call to undefined function layerslider_init() #131231Hey,
@UpSearchLLC: Thanks for the tip.
@batsirai: Just download the latest version of the theme then override the old theme files.
Regards,
Ismael
-
AuthorPosts