Forum Replies Created

Viewing 30 posts - 8,431 through 8,460 (of 9,352 total)
  • Author
    Posts
  • in reply to: ERROR AFTER INSTALLATION #126506

    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.

    in reply to: "Main Title" background color and font color #126025

    Hi!

    1) Yes

    2) Try following css code

    .title_container {
    border-top: 3px solid #fff;
    }

    Best regards,

    Peter

    in reply to: Search Page Result #126333

    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;

    }

    in reply to: LayerSlider – Layer Allignment #125335

    I talked to Kriesi and it seems like the demo data doesn’t contain one important option. I made a screenshot of the (missing) setting:

    Hi,

    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.

    in reply to: Custom Content Element not working in Grid View #126057

    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.

    in reply to: breadcrumbs #126019

    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):

    in reply to: Undoing Quick CSS #125550

    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 ).

    in reply to: Layerslider shortcode error #126262

    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.

    Hey!

    This sounds like a permission problem. Maybe you don’t have (all) wordpress admin rights?

    Regards,

    Peter

    in reply to: overwrite imgzise global settings in child theme #126351

    Hey!

    Maybe you need to regenerate the thumbnails: http://wordpress.org/extend/plugins/regenerate-thumbnails/ to see the effect?

    Best regards,

    Peter

    in reply to: Videos In Ajax Portfolio #125915

    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).

    in reply to: Bug with the blog page? #125347

    Hi!

    Please insert following code into the quick css field

    #top.blog .title_container, #top.blog #footer{
    display: none;
    }

    Regards,

    Peter

    in reply to: Headline Overlapping side bar #125923

    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

    in reply to: Quform #125824

    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

    in reply to: LEFT MENU LISTING PROBLEM #123183

    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));

    1) 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.

    in reply to: Layer Slider causing 404 error #125958

    Hi!

    Please check if the wp-content/themes/ or wp-content/themes/enfold folder contains some other “temporary” folders like __MACOSX, etc.

    Regards,

    Peter

    in reply to: Maps Marker #126121

    Hey!

    Thanks for the hint :)

    Regards,

    Peter

    in reply to: Shop in dummy data enfold #126045

    Hey!

    I tagged this thread for Kriesi.

    Regards,

    Peter

    in reply to: Small problem #126018

    Hey!

    Please post a link to the page please – probably it helps us to understand the question…

    Best regards,

    Peter

    in reply to: How to organize huge amounts of images and Video #126087

    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.

    in reply to: REMOVE DATE/BY/AUTHOR TEXT FROM PORTFOLIO AFTER SEARCH #122879

    Hey!

    You just need to insert the code into the quick css field.

    Best regards,

    Peter

    in reply to: Please contribute and translate Enfold #114946

    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

    in reply to: LayerSlider – Layer Allignment #125332

    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

    in reply to: shortcodes doesn`t work inside topic #125696

    Hey!

    You need to install a plugin http://wordpress.org/plugins/bbpress-do-short-codes/ – otherwise bbpress won’t support shortcodes.

    Best regards,

    Peter

    Hi!

    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

    Hi!

    Can you post a link to the page where the issue occurs please?

    Regards,

    Peter

    Hi!

    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

    in reply to: Google map on contact page not showing in iPhone. #124910

    Hey!

    Thanks. I’ll mark the thread for Kriesi – maybe it’s useful for him too.

    Regards,

    Peter

Viewing 30 posts - 8,431 through 8,460 (of 9,352 total)