Forum Replies Created
-
AuthorPosts
-
August 31, 2013 at 4:09 am in reply to: In single.php how to remove the Sidebar and changing it to Fullwidth? #138504
Hi,
It is not a theme feature rather a standard browser behavior. There might be a different fix for each browsers and we can’t assure you that it will work. Try to add this at the bottom of js > avia.js:
jQuery(document).ready(function(){
jQuery('a,img').inohideTips();
});
(function($){
$.fn.inohideTips = function(){
return this.each(function(){
var $elem = $(this);
var savealt = '';
var savetitle = '';
$elem.hover(function(){
if ( typeof $elem.attr('alt') != "undefined" ){
var savealt = $elem.attr('alt');
$elem.removeAttr('alt');
}
if ( typeof $elem.attr('title') != "undefined" ){
var savetitle = $elem.attr('title');
$elem.removeAttr('title');
}
},function(){
if ( savetitle )
{
$elem.attr({title:savetitle});
}
if ( savealt )
{
$elem.attr({alt:savealt});
}
});
});
};
})(jQuery);Regards,
Ismael
August 31, 2013 at 3:52 am in reply to: Disable the layer slider in responsive mode when viewed on a smartphone #138518Hey,
Yes, it is possible. Inspect the layer slider then look for the id. Add something like this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) {
#layer_slider_1 {
display: none;
}
}Regards,
Ismael
Hey,
Did you accidentally checked or enabled the “Use as mega menu” option on the “Register” menu item. Please check it on Appearance > Menus panel.
Regards,
Ismael
Hey,
You can use something like this on your functions.php:
add_filter( 'kriesi_backlink', 'new_backlink');
function new_backlink ($content) {
return " - <a href='http://www.yourownurlhere.at'>Custom Text Here.</a>";
}Regards,
Ismael
Hey,
You can add the logo on a Text widget. Just add the html tag:
<img src="YOUR LOGO IMAGE URL HERE">Regards,
Ismael
August 31, 2013 at 3:36 am in reply to: Reorder data table rows, add new rows in between rows #138510Hey,
If you have the Advance Layout Editor switch to debug mode, you can reorder the shortcode manually.
To switch your theme to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}You will be able to see the actual shortcode below the builder. You can manually re-order the row shortcode.
[av_table purpose='pricing' caption='']
[av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
[/av_table]You can place the first row below the second row:
[av_table purpose='pricing' caption='']
[av_row row_style=''][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][av_cell col_style='']wee[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][av_cell col_style='']woo[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][av_cell col_style=''][/av_cell][/av_row]
[/av_table]Regards,
Ismael
Hey,
Please add this on your custom.css or Quick CSS:
.content, .sidebar {
padding-top: 10px;
padding-bottom: 10px;
}Regards,
Ismael
Hey,
You can hide the excerpt via CSS.
If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .post .entry-content.clearfix p {
display: none;
}Regards,
Ismael
Hi,
You still don’t have the latest version of Enfold. Please download the theme on your themeforest account and update your installation. You also have a lot of plugins installed. Please try to deactivate them. If you have a cache plugin, please flush the permalink settings.

Regards,
Ismael
Hey,
I think the code above will fix the alignment issue.
.sidebar_left.sidebar {
text-align: left;
}I can see that it is properly aligned now: http://web409.mis63.de/?page_id=2664
Regards,
Ismael
Hey,
Looks like we got a french translation by manv83.
fr_FR.zip (33 KB)
https://mega.co.nz/#!XER20TZR!HpD9LggQY1f28qoqpP7W5FzI2c81Qh-G7aHsp5Nafqc
Regards,
Ismael
Hey,
It is already possible to add tags to portfolio items. Please update to Enfold 2.0.1.
Regards,
Ismael
Hey,
Just add this on your custom.css or Quick CSS:
.blog .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
display: none;
}Regards,
Ismael
Hey,
You can edit js > avia.js, find this code:
// decreases header size when user scrolls down
avia_header_size();Replace it with:
// decreases header size when user scrolls down
//avia_header_size();This will keep the header from resizing.
Regards,
Ismael
Hey,
You can add this on your custom.css or Quick CSS:
.search .widget.avia_combo_widget {
display: none;
}Remove browser cache then reload the page.
Regards,
Ismael
August 31, 2013 at 2:17 am in reply to: Place login / client registration link on the top of the page. #138092Hey,
You can visit odesk.com or freelancer.com. You hire a freelance wordpress developer there. :)
Regards,
Ismael
Hey,
@bernie:Thanks for the tip. :)
@morris: Hey, I think I already answered your inquiry. Please don’t post similar thread twice.
https://kriesi.at/support/topic/change-header-features
Thanks,
Ismael
Hey,
1.) There are two instances that “You are here” appear on the class-breadcrumb.php. Find them on line 26:
echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';And line 186:
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',2.) Please edit includes > comment.php, find this code:
comment_form();Replace it with:
$comments_args = array(
// redefine your own textarea (the comment body)
'comment_notes_after' => '<p class="form-allowed-tags">' . sprintf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s', 'avia_framework' ), ' <code>' . allowed_tags() . '</code>' ) . '</p>'
);
comment_form($comments_args);Regards,
Ismael
Hi,
You can decrease the size of the logo using this on your custom.css or Quick CSS:
.logo, .logo a {
height: 70%;
}Do you also want to shrink the size of the header or just the logo?
Regards,
Ismael
Hi,
You don’t have the latest version of Enfold. Please download 2.0.1 version on your themeforest account. Watch this video on how to override the theme files via FTP: https://vimeo.com/channels/aviathemes/64927356
Regards,
Ismael
Hey,
How did you create the menu? You can edit menus on Appearance > Menu panel.
Regards,
Ismael
Hey,
Please upgrade to Enfold 2.0.1. I think it will fix the issue. Upgrade WordPress to 3.6. Did you add plugins prior to this issue?
Regards,
Ismael
August 28, 2013 at 5:06 am in reply to: I can't see editable page data of the imported dummy data #137729Hey,
Please deactivate your plugins. See if the issue persist. You can also try to re-create the home page from scratch. This is the whole shortcode:
Regards,
Ismael
Hi,
If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.
.page-id-2251 .title_container {
display: none;
}Regards,
Ismael
-
AuthorPosts
