Forum Replies Created
-
AuthorPosts
-
Hi,
No, the config.php that I’m talking about is located on your root folder where you can find wp-content, wp-includes and wp-admin folders. The .htaccess can be found there too. You need access the files via FTP or your cpanel.
Regards,
Ismael
July 16, 2013 at 7:06 am in reply to: How to create vertical ruler on advance layout editor Page! #129605Hi,
The vertical rulers on that page is created using the css border. If you can give us a link to the actual page you’re working with, we can give you a css solution. What you can do is to insert 3 columns then add a border on each of them. Please give us a link to your website.
The code use on the link: http://citibikenyc.com/
border-right: 1px dotted #AFAFAF;
Regards,
Ismael
July 16, 2013 at 7:03 am in reply to: How can I Insert an Advanced Layer Slider Inside a Tab? #129706Hi,
Sorry for the delay. You can’t use the Layer Slider inside the tab or any other elements. You can use the Easy Slider instead. Another thing is, the layerslider shortcode is not working so you have to insert the slider using the Advance Layout Editor.
Regards,
Ismael
Hi,
You can something like this on your custom.css or quick CSS
Tab Content:
div .main_color .tabcontainer .active_tab_content {
background-color: black;
}Tab Menu:
div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab {
background-color: black;
color: white;
}Just change the color value.
Regards,
Ismael
Hi,
I don’t have the issue on my end. Did you edit anything on the css? Do you have any plugin that might cause the issue?
As you can see on the image above, the menu looks perfect.
Regards,
Ismael
Hi,
Please increase the wordpress php memory limit. Edit config.php, the add this code
define('WP_MEMORY_LIMIT', '128M');
or if you have a .htaccess file, add this code
php_value memory_limit 64M
Regards,
Ismael
Hi,
You can’t use the Layer Slider on the column layout and the layerslider shortcode don’t work. Please use another slider.
Regards,
Ismael
Hey,
Glad you solved it. You can create customizations on your custom.css or Quick CSS.
If you like the theme, please send us a feedback. Here’s how:
https://kriesi.at/support/topic/your-testimonials-on-our-front-page-a-unique-chance
Regards,
Ismael
Hi,
The shortcode for the layerslider is not working. Please use the Advance Layout Editor, go to Media Elements tab then insert the Layer Slider.
Regards,
Ismael
Hi,
Edit wp-contentthemesenfoldframeworkphp function-set-avia-frontend.php, find this code on line 128:
$post = get_post();
Replace it with:
$post = get_post( $id );
I’m honestly not sure if this is the proper way to fix it but it works.I already asked this question myself to Kriesi and the rest of the support team. Let me tag them.
Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS.
#header_main {
border-bottom-width: 5px;
border-bottom-style: solid;
border-color: red;
}Change the border color.
Regards,
Ismael
Hi,
Can you give us a link to your portfolio page? There are lots of ways to create the portfolio item because of the Advance Layout Editor, mine might be different from yours.
Regards,
Ismael
Hi,
You can actually copy the actual html code of the progress bar then enclose it on a unique div. Something like this
<div class="layerslider-progressbar"><div class="avia-progress-bar-container avia_animate_when_almost_visible avia-builder-el-0 avia-builder-el-no-sibling avia_start_animation"><div class="avia-progress-bar theme-color-bar icon-bar-no"><div class="progressbar-title-wrap"><div class="progressbar-icon avia-font-entypo-fontello"><span class="progressbar-char">⚒</span></div><div class="progressbar-title">Skill or Task</div></div><div class="progress avia_start_animation"><div class="bar-outer"><div class="bar" style="width: 100%" data-progress="100"></div></div></div></div></div></div></div>
Then add this on your custom.css or Quick CSS.
.layerslider-progressbar {
width: 600px;
height: 50px;
}We specify the width of the layerslider-progressbar div because the progress bar needs to inherit the size the parent element.
Regards,
Ismael
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
-
AuthorPosts