Forum Replies Created
-
AuthorPosts
-
Hey,
Edit functions.php, find this code:
global $avia_config;
Below, add this:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Montserrat'] = 'Montserrat';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Montserrat'] = 'Montserrat';
return $fonts;
}It is now available on the Heading and Body font dropdown.
Regards,
Ismael
Hi,
Enfold 2.0 and WordPress 3.6 works perfectly fine together now. The jQuery issue has been fixed on the 1.9.1 update. We’re not really sure what is causing the Layout Builder to not work on your end. I guess it has something to do with the hosting environment. We can’t provide you with the old version of the theme. Have you tried working with the Enfold theme on another host or your local server using WAMP OR XAMP? I’ll tag Kriesi.
Regards,
Ismael
August 19, 2013 at 1:07 am in reply to: How to change font sizes of menu, content, title, etc,etc #136089Hey,
You can change font size using CSS:
.main_menu ul:first-child > li > a {
font-size: 15px;
color: red;
}Menu color:
.header_color .main_menu ul:first-child > li > a {
color: red;
}Active menu color:
.header_color .main_menu ul:first-child > li.active-parent-item > a {
color: blue;
}Please give a specific list of items you want to change, we’ll help you with it.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS
.grid-entry .grid-entry-title a {
pointer-events: none;
}Remove browser cache the reload the page.
Regards,
Ismael
August 19, 2013 at 12:59 am in reply to: Easy Slider width & height Scaling when it shouldn't #136082Hi,
The Slideshow Image Size is not the size of the slider rather the image that is going to be use on the Easy Slider. The Easy Slider will inherit the size of the container. If you have a full width page, the Easy Slider will go full width following the size of the container. I suggest you use a bigger image to avoid blurriness.
Regards,
Ismael
Hey,
Please delete the css code I above and use this instead:
.menu-main-menu-container ul li {
display: none;
}
#menu-item-search {
display: block !important;
}For the social icons, you can use this:
#header_main .social_bookmarks {
position: fixed;
left: 50px;
top: 20%;
}Regards,
Ismael
Hey,
Please create a page then go to Enfold > Theme Options. Select a page for the Frontpage then select your Blog page under “And where do you want to display the Blog?”. This page will automatically be created as your Blog page. You can also use the Advance Layout Editor, go to Content element tab then insert the Blog Posts element..
Please watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes
Google Translate:
Bitte eine Seite erstellen, dann gehen Sie zu> Theme Options entfalten. Wählen Sie eine Seite für die Frontpage wählen Sie dann Ihre Blog-Seite unter “Und wo willst du das Blog angezeigt werden?”. Diese Seite wird automatisch als Ihre Blog-Seite erstellt werden. Sie können auch die Advance-Layout-Editor, gehen Sie zu Content-Element legen Sie dann die Registerkarte Blogeinträge Element.
Regards,
Ismael
Hi,
Please contact the author plugin for that. We are not familiar with the plugin.
Regards,
Ismael
Hi,
It is working fine on our end. Are you sure you followed the video correctly then added the correct post type?
Also, don’t forget to click Screen Options then enable Avia Layout Builder on post panel.
Regards,
Ismael
Hey,
Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this one:
//set builder mode to debug<br /> add_action('avia_builder_mode', "builder_set_debug");<br /> function builder_set_debug()<br /> {<br /> return "debug";<br /> }
You will see the actual shortcode below the Builder. You can now copy it to another page. To execute PHP code, try this plugin.
Regards,
Ismael-
This reply was modified 11 years, 3 months ago by
Josue.
Hi,
First, select a blog format on Enfold > General Settings > Blog Style > select “Single Author, big preview pic”. The layout will be use by posts. Next, create a page then insert the Blog Posts element and select “Multi Author Blog”.
Regards,
Ismael
Hey,
Have you tried these plugins?
http://wordpress.org/plugins/facebook-comments-plugin/
http://wordpress.org/plugins/simple-facebook-comments/
You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
Hey,
You can use this:
.bbpress .st_facebook_vcount
.bbpress .st_twitter_vcount
.bbpress .st_email_vcount
.bbpress .st_sharethis_vcount {
display: none
}Regards,
Ismael
Hey,
You can override the font files on wp-contentthemesenfoldconfig-templatebuilderavia-template-builderassetsfonts.
Regards,
Ismael
Hey,
1.) Different how?
2.) Are you using the header with bottom navigation? You can add this on your custom.css or Quick CSS to remove the bottom menu:
#header_main_alternate {
display: none;
}3.) Go to Appearance > Widgets. Add widgets on Footer – Columns widget areas to override the dummy widgets.
Please watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes
Regards,
Ismael
Hey,
Please try to deactivate the plugins first. Refresh the Blog page a few times, see if it works.
Send the login details to ///, we would like to inspect it.
Please include the word “Kriesi” on the subject. Add the link of this thread on your email.
Regards,
IsmaelHey,
It is working fine on my end. Please remove browser cache the reload the page a few times.
Regards,
Ismael
Hey,
Please replace this with code:
bottom_menu = $('html').is('.bottom_nav_header'),
switchWidth = 900;with:
bottom_menu = $('html').is('.bottom_nav_header'),
switchWidth = 1024;and this:
if(first_level_items > 8 && !bottom_menu)
{
switchWidth = 900;
header.addClass('mobile_menu_tablet');
}with
if(first_level_items > 7 && !bottom_menu)
{
switchWidth = 1100;
header.addClass('mobile_menu_tablet');
}Remove browser cache the reload the page.
Don’t forget to add this css code on your 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;
}
}Regards,
Ismael
Hey,
Please remove the main image on Media > Library to clear the cache.
Regards,
Ismael
Hey,
You can add it on your custom.css below /* General Custom CSS */ via cpanel or ftp. You can also add it on Enfold > Styling > Quick CSS. You can use rgba and hex colors.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS to make the button text white:
.avia_iconbox_title {
color: white;
}And this to remove the text shadow:
body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
text-shadow: none;
}Regards,
Ismael
Hey,
Yes, it is better to use the <!–more–> tag to specify the excerpt. You can also click “Screen Options” then enable the Excerpt metabox. You can then manually input the excerpt for your posts.
Regards,
Ismael
Hi,
You can’t import the header options only. There are only few options on that panel, I’m sure you can get it back to where it was.
Regards,
Ismael
August 17, 2013 at 4:36 am in reply to: Can't Figure out how to remove page listing from Footer. #135838Hi,
Go to Enfold > Footer > Footer Columns, select “Select” if you want to disable the footer widgets. If you want to show widgets, select the number of columns then go to Appearance > Widgets. Add widgets on Footer – Column widget areas to override the dummy widgets.
Regards,
Ismael
-
This reply was modified 11 years, 3 months ago by
-
AuthorPosts