Forum Replies Created
-
AuthorPosts
-
Hi,
You need to contact your host. Ask them to set some values on php.ini
suhosin.post.max_vars = 5000
suhosin.request.max_vars = 5000Regards,
Ismael
Hi,
Go to Appearance > Widgets, look for Sidebar Blog then supply it with widgets. You can also create a custom widget area then assign it on a page or post.
Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS
@media only screen and (max-width: 1024px) {
.responsive #top .slide-entry {
width: 99%;
margin-left: 0;
}
}Regards,
Ismael
July 16, 2013 at 5:44 am in reply to: HOW TO – See Tags like in Twitter Post & Before FB Plugin #129795Hi,
This will only affect the current page: http://thecaloriemythbook.com/?page_id=2330
.page-id-2330 .post-entry.post-entry-type-page.post-entry-2330 .entry-content.clearfix br {
display: none;
}Regards,
Ismael
Hi,
Undo the steps we did. Please follow this one. Edit includes > loop-index.php, find this code:
//on single page replace the link with a fullscreen image
if(is_singular())
{
$link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
}Below, add this code:
if(strpos($blog_style, 'grid') !== false)
{
echo '<a href="'.$link.'"><img src="'.$link.'" title="" alt="" class="blog-grid-preview"></a>';
}Edit custom.css or Quick CSS, add this code:
.blog-grid-preview {
width: 95%;
border-radius: 10px;
}Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CS
#qoate_social_bookmark {
z-index: 999;
}Regards,
Ismael
Hi,
The plugin is somehow nested outside the sidebar. Is there any shortcode that we can use to embed it manually on a template?
Regards,
Ismael
Hi,
@dsgnerfw: Awesome site! The slider is very creative.
NOTE: If you are planning to use the theme again, you should probably buy the Extended License. :)
Cheers,
Ismael
Hi,
If you search ubermenu on the forum, you can see that many users installed it.
https://kriesi.at/support/search.php?q=ubermenu
There may be some css modifications required.
Regards,
Ismael
Hi,
You can use this for the icon box
.iconbox_icon.heading-color.avia-font-entypo-fontello {
color: red;
}Then change the icon list background and border with this
.avia-icon-list .iconlist_icon {
background-color: red;
border: 3px solid black;
}Regards,
Ismael
July 15, 2013 at 5:06 am in reply to: Portfolio items create blog parent as active ancestor/parent #129476Hi,
You can also, manipulate the style of the menu to disable the active menu styling.
.header_color .main_menu ul:first-child > li.active-parent-item > a {
color: gray;
font-weight: normal;
}Glad you fixed it.
Regards,
Ismael
Hi,
If you are creating a normal page without using the Advance Layout Editor, edit page.php then find this code
$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
get_template_part( 'includes/loop', 'page' );Below, add this code:
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');If you are using the Advance Layout Editor to create pages, edit template-builder.php, look for this code:
//only close divs if the user didnt add fullwidth slider elements at the end. also skip sidebar if the last element is a slider
if(!$last_el || !in_array($last_el['tag'], array('av_layerslider','av_slideshow_full', 'av_fullscreen') ) )
{Below, add this code:
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');Make sure that you enable the Discussion on the Screen Options, then check “Allow Comments”.
Regards,
Ismael
Hi,
Yes, it is possible.
Edit footer.php, find this code:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
Below, add this code:
<?php echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); ?>
Edit custom.css or Quick CSS and add this code:
#socket .breadcrumb.breadcrumbs.avia-breadcrumbs {
float: right;
}Regards,
Ismael
Hi,
Go to Media > Library, select an image then fill up the title and alt fields.
Regards,
Ismael
Hi,
You can find that on wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > postslider.php.
Regards,
Ismael
Hi,
I checked your website on IE, Firefox and Chrome and they all look the same.
Let me tag the rest of the support team to check this out.
Regards,
Ismael
Hi,
Please remove your code first. Then try this one
Upload your logo with the 300×200 px. Then add this on your custom.css.
/*header with social icons: */
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 200px; line-height: 200px; }Please give us a link to your website.
Regards,
Ismael
Hi,
Edit a post, look for Screen Options > enable the Avia Layout Builder then enable the “Discussions” for comments.
You can enable the comments by default on Settings > Default article settings.
Regards,
Ismael
Hi,
You can use the unique page body class. If you’re using Chrome, right click the page, Inspect Element. Look for the body class.
Use it to change a certain element on that page only. Example:
.page-id-2251 #header_main {
background: red;
}Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS
.iconlist-char {
color: red;
}Regards,
Ismael
Hi,
You can embed videos from youtube, vimeo etc. You can add the iframe tag to embed the video.
<iframe width="560" height="315" src="//www.youtube.com/embed/X9GwNTfwOaU" frameborder="0" allowfullscreen></iframe>
Regards,
Ismael
Hi,
Yes, it is possible. Click the Blog Post element to configure the options, look for “Do you want to display blog posts?”, select “Display entries from a custom taxonomy”.
Regards,
Ismael
Hi,
We can click your name and go to this website http://saintjoan.net/. Is this your site?
If the code <strong] works, you’ll see a bold font.
Regards,
Ismael
Hi,
What type of Blog Style do you have?
You can add this on your custom.css or Quick CSS
.date-container.minor-meta {
display: none;
}To remove the sidebar, edit the post then look for Layout > Choose “No Sidebar”.
You can also change the default settings on Enfold > Sidebar > Sidebar on Single Post Pages.
Regards,
Ismael
-
AuthorPosts