Forum Replies Created
-
AuthorPosts
-
Hey,
Yes, that is possible. You can adjust the width of full width post using this:
#top .fullsize .template-blog .post .entry-content {
max-width: 950px;
}Adjust the width value. If you want to target specific post, just view the source then look for the body class.
#top.postid-1 .fullsize .template-blog .post .entry-content {
max-width: 950px !important;
}Regards,
Ismael
Hi,
You can use this plugin:
http://wordpress.org/plugins/codestyling-localization/
You can also manually change them.
Read more” and “in” category and “by” author
Edit includes > loop-index.php, find this codes:
$current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>') : get_the_excerpt();
$current_post['content'] = $blog_content == "excerpt_read_more" ? $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>' :and this:
if(!empty($cats))
{
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';
}
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
the_author_posts_link();
echo '</span>';The text “you are here” can be found on framework > php > class-breadcrumb.php
echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
Regards,
Ismael
Hey,
The shortcode renders properly on the blog excerpt. In this screenshot, I added the button element shortcode and it the button show properly.
Regards,
Ismael
Hi,
Please upgrade to Enfold 2.0 available on your themeforest account and deactivate the plugins, see if it fixes the issue.
Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS
.moonray-form-p2c10469f18 {
display: block !important;
position: relative;
min-height: 348px;
}Regards,
Ismael
August 19, 2013 at 2:03 am in reply to: Ubermenu Problems – Removing responsive menu from theme, editing .php #136013Hey,
Kriesi may be willing to share the theme to the plugin’s author. We just don’t have the authority for that. Let me tag Kriesi.
Regards,
Ismael
August 19, 2013 at 2:00 am in reply to: Would like to change image hover color from white to black (dark) #136117Hey,
@American Patriot: Thanks for the tip.
@headbentde: You can do the instructions above.
.image-overlay {
position: absolute;
background: black;
z-index: 500;
height: 100%;
width: 100%;
opacity: 0;
filter: alpha(opacity=0);
}Regards,
Ismael
Hey,
You can use this on your custom.css or Quick CSS to hide the header and breadcrumb:
.single-ai1ec_event #header, .single-ai1ec_event .stretch_full.container_wrap.alternate_color.dark_bg_color.title_container {
display: none;
}
single-ai1ec_event .fixed_header.social_header #main {
padding-top: 0;
}Regards,
Ismael
Hi,
This plugin will help.
http://wordpress.org/plugins/font-uploader/
You can use the Quick CSS to add the font-family property on the elements you want to change.
Regards,
Ismael
August 19, 2013 at 1:22 am in reply to: Blog Grid view option without picture / featured image? #136106Hey,
You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests
You can hide the image using this on your Quick CSS:
.avia-content-slider-inner .slide-image {
display: none;
}Regards,
Ismael
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 10 years, 11 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
-
This reply was modified 10 years, 11 months ago by
-
AuthorPosts