Forum Replies Created
-
AuthorPosts
-
You can add a margin to the top with:
.avia_sortable_active .isotope .isotope-item {
margin-top: 10px;
}but it’s not easily possible to add it on the left/right side because this would break the grid layout.
Hi!
Please provide a link to the Enfold website – it seems like http://lowsfurniture.com/w/ uses another theme.
Regards,
Peter
Hey!
Tbh the most important reference is that Devin is part of our support team since 2012 and he’s still with us – obviously he does a good job :)
Regards,
Peter
June 22, 2013 at 5:47 am in reply to: Dummy Data of ENFOLD version 1.7 –> no new data for new SHOP page! #125869Yes, the dummy data can be found in wp-contentthemesenfoldincludesadmindummy.xml – however the main problem is that you’ll maybe overwrite existing content when you hit the green “dummy data” import button.
Hey!
Please watch this tutorial video https://vimeo.com/channels/aviathemes/64927356 – it will help you to install the theme with ftp.
Regards,
Peter
Hey!
I changed the code above a bit – please try it again.
Best regards,
Peter
1) You can modify the button shortcode – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesbuttons.php and replace:
$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
with
if($link == 'http://www.test12345.nl') {
$output .= "<a href='{$link}' onclick="_gaq.push(['_link', 'http://www.test12345.nl']); return false;" class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
}else{
$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
}2) This is imo not easily possible. You can try a plugin like http://wordpress.org/plugins/jin-menu/ but I’m not sure if it works.
I’m not sure why it’s not working because the account page seems to work for me: http://bestmortgagebrokers.net/my-account/ – just go to Appearance > Menus and add the “My account” page to the menu. If this doesn’t work try to use the custom link option and insert the account page url into the link field. The “My account” page displays the “register” form and the “login” form.
Hi!
You can use the debug mode if you want to copy the content https://kriesi.at/support/topic/export-theme-settings-and-templates
Regards,
Peter
Hi!
Yes, you can export the “avia_options_enfold” option field in the wp_options table. However it’s a serialized array – thus you might want to use: WP MIGRATE DB
Regards,
PeterHi!
I’ll mark this for Kriesi – maybe he wants to change the default width.
Best regards,
Peter
Hi!
Are you using version 1.7? I checked the code of the latest version and custom.css is the last stylesheet in the queue – thus it should overwrite all other theme styles.
Regards,
Peter
@seamusdrumz – It’s not my job to provide help for major customization of the theme files. If Kriesi asks me to implement the REVOLUTION SLIDER script I’ll do this in my working time. If he decides to implement it he’ll include it in the next update. It’s up to Kriesi and his decision if he wants to include another slider or not and it’s my job to support the product as it is right now (even if some users are not happy with the current slider).
Btw – I removed the last sentence of your post because I took it as an offense.
Hey!
Hi,
I can’t reproduce this issue on my test server: http://www.screenr.com/ZjSH
Please make sure you’re using the latest theme version (Enfold 1.7).
Best regards,
Peter
Add following code to the buttom of functions.php:
// THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
function avia_editor_fix_style() {
echo '<style type="text/css"> .avia-modal { top: 60px !important; } </style>';
}
add_action('admin_head', 'avia_editor_fix_style');Obviously you can replace 60px with another value.
Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following line:
if($image) echo "<div class='page-thumb'>{$image}</div>";
If you want to replace it with the term name replace the line above with
echo $term->name;
Hey!
Can you provide a link to a page where the shortcodes don’t work please?
Best regards,
Peter
Hi!
I was able to reproduce the issue and I asked Kriesi to look into it.
Regards,
Peter
Please change following css code:
body, p, th, td, div, a:link, a:visited, a:active, a:hover, a:focus, h1, h1 a:link, h1 a:visited, h1 a:active, h1 a:hover, h1 a:focus, h2, h2 a:link, h2 a:visited, h2 a:active, h2 a:hover, h2 a:focus, h3, h3 a:link, h3 a:visited, h3 a:active, h3 a:hover, h3 a:focus {
font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, Helvetica, sans-serif !important;
}to
body, p, th, td, div, a:link, a:visited, a:active, a:hover, a:focus, h1, h1 a:link, h1 a:visited, h1 a:active, h1 a:hover, h1 a:focus, h2, h2 a:link, h2 a:visited, h2 a:active, h2 a:hover, h2 a:focus, h3, h3 a:link, h3 a:visited, h3 a:active, h3 a:hover, h3 a:focus {
font-family: 'Proxima Nova Regular', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}The !important tag overwrites all other font families – including the icon font.
Yes, you can use a button with layerslider – I’d recommend to use the shortcode generator (just go to a standard post editor page, use the “magic wand” icon to generate the button shortcode and then insert this shortcode into the html field of the layerslider). However note that these buttons are not responsive because layerslider can’t re-size them…
Open up wp-contentthemesenfoldjsavia.js and replace
if(container == 'body')
{
var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a');
}
else
{
var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a');
}with
if(container == 'body')
{
var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .mg_grid_wrap a, .thumb');
}
else
{
var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .mg_grid_wrap a, .thumb');
}1) See https://kriesi.at/support/topic/custom-font-with-cyrillic-symbols – you can add a new font or overwrite an existing font – a list of all supported fonts can be found in wp-contentthemesenfoldincludesadminregister-admin-options.php
'Alice'=>'Alice',
'Allerta'=>'Allerta',
'Arvo'=>'Arvo',
'Antic'=>'Antic',
'Bangers'=>'Bangers',
'Bitter'=>'Bitter',
'Cabin'=>'Cabin',
'Cardo'=>'Cardo',
'Carme'=>'Carme',
'Coda'=>'Coda',
'Coustard'=>'Coustard',
'Gruppo'=>'Gruppo',
'Damion'=>'Damion',
'Dancing Script'=>'Dancing Script',
'Droid Sans'=>'Droid Sans',
'Droid Serif'=>'Droid Serif',
'EB Garamond'=>'EB Garamond',
'Fjord One'=>'Fjord One',
'Inconsolata'=>'Inconsolata',
'Josefin Sans' => 'Josefin Sans',
'Josefin Slab'=>'Josefin Slab',
'Kameron'=>'Kameron',
'Kreon'=>'Kreon',
'Lobster'=>'Lobster',
'League Script'=>'League Script',
'Mate SC'=>'Mate SC',
'Mako'=>'Mako',
'Merriweather'=>'Merriweather',
'Metrophobic'=>'Metrophobic',
'Molengo'=>'Molengo',
'Muli'=>'Muli',
'Nobile'=>'Nobile',
'News Cycle'=>'News Cycle',
'Open Sans'=>'Open Sans:400,600',
'Orbitron'=>'Orbitron',
'Oswald'=>'Oswald',
'Pacifico'=>'Pacifico',
'Poly'=>'Poly',
'Podkova'=>'Podkova',
'PT Sans'=>'PT Sans',
'Quattrocento'=>'Quattrocento',
'Questrial'=>'Questrial',
'Quicksand'=>'Quicksand',
'Raleway'=>'Raleway',
'Salsa'=>'Salsa',
'Sunshiney'=>'Sunshiney',
'Signika Negative'=>'Signika Negative',
'Tangerine'=>'Tangerine',
'Terminal Dosis'=>'Terminal Dosis',
'Tenor Sans'=>'Tenor Sans',
'Varela Round'=>'Varela Round',
'Yellowtail'=>'Yellowtail',Eg if you want to use Open Sans with Cyrillic characters add following code to the bottom of functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
return $fonts;
}2) To change the body font size insert following code into the quick css field and change the font size/line height value:
body {
font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
}The first value is the font size, the second value the line height.
You can change the headline sizes with
h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
h5 { font-size: 16px; line-height: 1.1em; } /*17*/
h6 { font-size: 14px; line-height: 1.1em; }Hey!
Personally I never tried something similar before and I can’t provide any tips/hints. However I’ll leave this thread open – maybe someone from the community can help you.
Best regards,
Peter
Enfold uses a new breadcrumb function which is also located in class-breadcrumbs.php – search for
$trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
You can replace the get_bloginfo( ‘name’ ) function with your custom text. If you want to replace the $show_home variable content (by default it’s “Home”) I’d recommend to modify the breadcrumb parameters in functions-enfold.php and replace:
$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/
);with
$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' => "",
'show_home' => __( 'MY CUSTOM TEXT', 'avia_framework' ),
'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
);and insert your custom text instead of “MY CUSTOM TEXT”.
Hi!
Insert following code into the quick css field
body .av-special-heading.blockquote > * {
text-align: center;
}Regards,
Peter
Hey!
Try
.ajax_form fieldset{
color: #999;
}or
.ajax_form fieldset{
color: #999 !important;
}Best regards,
Peter
Hey!
Please search for following code in enfold/js/avia.js
switchWidth = 767;
if(first_level_items > 8 && !bottom_menu)
{
switchWidth = 989;
header.addClass('mobile_menu_tablet');
}Try to change the switchWidth value of 767 to 1006.
Regards,
Peter
June 21, 2013 at 5:27 am in reply to: Disable Lightbox on spefic pages so other light box can work #125428Hey!
The justified image grid uses the prettyphoto script for the lightbox too – thus you won’t notice a difference imo.
Regards,
Peter
The WPML dev recommend to use the “Widget Logic” plugin (see: http://wpml.org/2011/03/howto-display-different-widgets-per-language/ )
Hi!
Please try to install the theme via ftp: https://vimeo.com/64927356 and increase the (allocated) php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Best regards,
Peter
-
AuthorPosts