Forum Replies Created
-
AuthorPosts
-
It seems like the session folder doesn’t exist (/var/chroot/home/content/61/8377861/tmp/) which is required to store the session data or the server can’t create the session file because of permission issues, etc. – http://stackoverflow.com/questions/3262727/warning-session-start-failed-no-such-file-or-directory
You can try to deactivate all third party plugins to eliminate the risk of a “compatibility issue”. If this doesn’t help I’d switch to another hoster if GoDaddy doesn’t want to help you.
Hi!
1) Yes
2) Try following css code
.title_container {
border-top: 3px solid #fff;
}Best regards,
Peter
In footer.php replace
if( $footer_widget_setting != 'nofooterwidgets' )
with
if( $footer_widget_setting != 'nofooterwidgets' && !is_search() )
and in sidebar.php replace
if(empty($avia_config['currently_viewing'])) $avia_config['currently_viewing'] = 'page';
// general shop sidebars
if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
// single shop sidebars
if ($avia_config['currently_viewing'] == 'shop_single') $default_sidebar = false;
if ($avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar('Single Product Pages') ) : $default_sidebar = false; endif;
// general blog sidebars
if ($avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') ) : $default_sidebar = false; endif;
// general pages sidebars
if ($avia_config['currently_viewing'] == 'page' && dynamic_sidebar('Sidebar Pages') ) : $default_sidebar = false; endif;
// forum pages sidebars
if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;with
if(empty($avia_config['currently_viewing'])) $avia_config['currently_viewing'] = 'page';
if(!is_search(){
// general shop sidebars
if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;
// single shop sidebars
if ($avia_config['currently_viewing'] == 'shop_single') $default_sidebar = false;
if ($avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar('Single Product Pages') ) : $default_sidebar = false; endif;
// general blog sidebars
if ($avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') ) : $default_sidebar = false; endif;
// general pages sidebars
if ($avia_config['currently_viewing'] == 'page' && dynamic_sidebar('Sidebar Pages') ) : $default_sidebar = false; endif;
// forum pages sidebars
if ($avia_config['currently_viewing'] == 'forum' && dynamic_sidebar('Forum') ) : $default_sidebar = false; endif;
}June 24, 2013 at 12:19 pm in reply to: Responsive Header Main Menu blocks 'progress bars' when chosen 'slide out menu' #125118Hi,
maybe this is a problem with the browser or a browser extension? I tried to reproduce the issue on my LG P700 (4.1 android – jeally bean) and the website and the progress bars display just fine with the standard Chrome browser and Firefox mobile.
Actually the blog element & the post slider element (used for the grid) just support “taxonomies” and they won’t take care of the custom post type. I’d recommend to create a custom taxonomy for your custom post type (eg call it news_entries) and then you can use the $atts variable
$atts['taxonomy'] = 'news_entries';
to query just the posts which are assigned to the news_entries taxonomy.
If you’re using a standard page as front page you can hide the breadcrumb on the page editor screen. Use following option (right sidebar underneath the blue Publish/Update button):
The quick css code is just stored in the database (Theme Options) and the theme will add it to the dynamic stylesheet which will be generated every time you save the theme options (by default the path is http://yourdomain.com/wp-content/uploads/dynamic_avia/enfold.css ).
Please open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesslideshow_layerslider.php and replace
if(empty($params['args']['id'])) $params['args']['id'] = reset($slides);
with
if(empty($params['args']['id']))
{
$params['args']['id'] = (!empty($slides) && is_array($slides)) ? reset($slides) : '';
}I tagged this thread for Kriesi’s attention.
June 24, 2013 at 11:30 am in reply to: Enfold – Edit Dynamic Template of this entry gives me an error #126338Hey!
This sounds like a permission problem. Maybe you don’t have (all) wordpress admin rights?
Regards,
Peter
Hey!
Maybe you need to regenerate the thumbnails: http://wordpress.org/extend/plugins/regenerate-thumbnails/ to see the effect?
Best regards,
Peter
I’m not sure if Enfold supports videos in the ajax preview content (didn’t test this feature yet) but you can try to insert the video into the “Add Preview Text” field. Use the Magic wand, select “Media Elements” > “Video” and embed the shortcode into the text content. I’ll tag this thread for Kriesi – maybe he wants to add an option for html5 videos (instead of a gallery/slideshow).
Hi!
Please insert following code into the quick css field
#top.blog .title_container, #top.blog #footer{
display: none;
}Regards,
Peter
Hi!
Please try to add following code into the quick css field
body .av-special-heading > * {
display: inline-block;
white-space: pre-line;
}Best regards,
Peter
Hey!
Please try following css code
.iphorm-element-spacer {
padding: 0 !important;
margin: 0 !important;
}
.iphorm-outer p {
margin: 0 !important;
}
.iphorm-outer br {
display: none !important;
}Regards,
Peter
Open up page.php and single-portfolio.php and delete
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
In archive.php delete
echo avia_title(array('title' => avia_which_archive()));
in index.php and in single.php delete
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
June 24, 2013 at 10:31 am in reply to: Breadcrumbs in top of left sidebar and menu functionality #1259521) I didn’t test this but you can try following modification – first open up wp-contentthemesenfoldfunctions-enfold.php and replace
'breadcrumb' => true,
with
'breadcrumb' => false,
Then open up sidebar.php and replace
echo "<div class='inner_sidebar extralight-border'>";
with
echo "<div class='inner_sidebar extralight-border'>";
echo avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));2) You can use the “custom menu” widget which can display any menu you created on the Appearance > Menu option page.
Hi!
Please check if the wp-content/themes/ or wp-content/themes/enfold folder contains some other “temporary” folders like __MACOSX, etc.
Regards,
Peter
Hey!
Thanks for the hint :)
Regards,
Peter
Hey!
I tagged this thread for Kriesi.
Regards,
Peter
Hey!
Please post a link to the page please – probably it helps us to understand the question…
Best regards,
Peter
1) I tagged this thread for Kriesi (feature request).
2) If you want upload bigger files you probably need to change the post_max_size & the upload_max_filesize values in the php.ini. If you can’t edit the php.ini (because you don’t have access to the file, etc.) try to contact your hoster.
June 23, 2013 at 7:47 am in reply to: REMOVE DATE/BY/AUTHOR TEXT FROM PORTFOLIO AFTER SEARCH #122879Hey!
You just need to insert the code into the quick css field.
Best regards,
Peter
Hey!
@fotomaster – Try to deactivate the Enfold theme (switch to another theme), then activate the layerSlider plugin and then activate Enfold again – this should do the trick.
Regards,
Peter
Hi!
I sent Kriesi a mail and asked him to comment on this topic. Maybe he can make a screenr video, etc. which shows all settings.
Regards,
Peter
Hey!
You need to install a plugin http://wordpress.org/plugins/bbpress-do-short-codes/ – otherwise bbpress won’t support shortcodes.
Best regards,
Peter
June 22, 2013 at 6:54 am in reply to: Oneliner Tooltip cuts background on text in team members #125728Hi!
1) Can you post a link to the page with the tooltip please? I’ll investigate the css code and provide a fix.
2) Yes, just use mailto: instead of http://
Best regards,
Peter
June 22, 2013 at 6:51 am in reply to: Responsive Header Main Menu blocks 'progress bars' when chosen 'slide out menu' #125116Hi!
Can you post a link to the page where the issue occurs please?
Regards,
Peter
June 22, 2013 at 6:50 am in reply to: Please provide some information on Advanced Layout Editor with posts #125715Hi!
Currently posts do not support the advanced layout editor and based on Kriesi’s comment here: http://themeforest.net/item/enfold-responsive-multipurpose-theme/discussion/4519990?page=34#comment_4148581 I don’t expect ALE support for posts in the near future…
Regards,
Peter
Hey!
Thanks. I’ll mark the thread for Kriesi – maybe it’s useful for him too.
Regards,
Peter
-
AuthorPosts