Forum Replies Created

Viewing 30 posts - 7,741 through 7,770 (of 9,352 total)
  • Author
    Posts
  • in reply to: LayerSlider jQuery Incompatibility Issue #133871

    Hi!

    Afaik the latest version (4.6.0) of LayerSlider which is bundled with Enfold 1.9.1 shouldn’t display this message. At least the plugin author claims that v4.6.0 is fully compatible with WP3.6.

    Best regards,

    Peter

    in reply to: Posting in 3.6 with Version 1.9.1 #134126

    Hey!

    Please try to deactivate all third party plugins – maybe a plugin is incompatible with WP3.6 and causes js errors on the admin screen. If the admin screen works afterwards activate the plugins one by one to find the culprit.

    Regards,

    Peter

    in reply to: Accordion : Hide "All" Category #133935

    Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestoggles.php and delete following line to remove the “All” link:

    avia_sc_toggle::$tags = $start + avia_sc_toggle::$tags;

    Unfortunately it’s not possible to pre-select another sort option and the items would be unsorted/unfiltered even if you remove the “All” link.

    in reply to: Change table order #134052

    You can try to activate the debug mode. Open up functions.php and find this line

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Then replace it with

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Now you should see a “debug window” underneath the advanced layout editor which allows you to manipulate the shortcode (and table content) directly.

    in reply to: Remove "Website & Email" from Blog Discussion #134075

    Hi!

    You can try the code someone posted here: http://wordpress.org/support/topic/remove-url-and-email-fields-from-comments-form – insert it at the bottom of functions.php.

    Best regards,

    Peter

    in reply to: LayerSlider: old jQuery issue #134012

    Hi!

    Please update your theme to version 1.9.1. You’re using version 1.7. You can download the latest version from themeforest.net.

    Regards,

    Peter

    Hi!

    Strange, the code worked for me. However I changed it a bit now – please try it again.

    Best regards,

    Peter

    in reply to: Team member hover #133750

    Hey!

    Can you post a link to the your member page please?

    Regards,

    Peter

    in reply to: lightbox not working anymore #129780

    I think a plugin (or maybe some custom php code) adds a php var to the images. Thre url looks like

    http://vacationrentalsecrets.com/wp-content/uploads/2013/04/hhrtw.png?cfc497

    and the lightbox won’t accept this url address as image because the extension must be png, jpg, etc.

    Make sure that the url of the image looks like

    http://vacationrentalsecrets.com/wp-content/uploads/2013/04/hhrtw.png

    in reply to: Logo/header padding #133457

    Hi,

    afaik there’s no margin around the logo but just a 5px padding on the top & bottom of the logo image. You can remove it with following css code

    .logo img {
    padding: 0;
    }

    If the code doesn’t help you please post a link to your website and I’ll check the logo position and css code.

    in reply to: Menu Display Speed #133934

    Open up enfold/js/avia.js and search for

    var defaults =
    {
    modify_position:true,
    delay:300
    };

    You can increase or decrease the delay value to change the speed at which navigation menus display. The value is in ms (300ms).

    in reply to: Portfolio issues #130557

    Hey!

    Please let us know if you need more help.

    Regards,

    Peter

    in reply to: Fixed sidebar bugged #133554

    Hi!

    Do you use the same layout on all pages? The mod won’t work if you want to use different sidebar layouts on different pages.

    Regards,

    Peter

    in reply to: Remove "You are here: …" on the header? #133974

    Hi!

    Add following code to the bottom of functions.php

    add_filter('avia_breadcrumbs_args','avia_remove_breadcrumb_before', 10, 1);
    function avia_remove_breadcrumb_before($args)
    {
    $args['before'] = '';
    return $args;
    }

    Regards,

    Peter

    in reply to: Bloposts don't show headers correctly anymore #130591

    Hi!

    Did you try to submit your sitemap xml file (which can be generated with Yoast SEO) to google via the google webmasters interface?

    Regards,

    Peter

    in reply to: Internet explorer 8… #133544

    Hi!

    Glad you found the culprit.

    Best regards,

    Peter

    in reply to: Nested Sidebar SOMETIMES Doesn't Work #133627

    I fixed it. The problem was caused by the “post slider” element ( http://test.curlyhost.com/neighborhoods/cascade-township-real-estate/ ). V1.9 has a small bug because it does not reset the post slider query. We fixed this in v1.9.1 which is already available (themeforest.net). I updated the file on your server and it works now.

    in reply to: Image sizes functions.php 2 #133502

    Hi!

    I hope it worked out :)

    Best regards,

    Peter

    In includes/loop-index.php replace

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    the_author_posts_link();
    echo '</span>';

    with

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    the_author_posts_link();
    echo '</span>';

    echo '<span class="blog-edit minor-meta">';
    edit_post_link();
    echo '</span>';

    in reply to: Updating Menu #128280

    Hi!

    Fixed.

    Best regards,

    Peter

    please try to replace

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    }).trigger('avia_start_animation');

    with

    //trigger displaying of thumbnails
    gallery.on('avia_start_animation', function()
    {
    images.each(function(i)
    {
    var image = $(this);
    setTimeout(function(){ image.addClass('avia_start_animation') }, (i * 110));
    });
    });

    gallery.trigger('avia_start_animation');

    in reply to: Need additional sidebar #133700

    Hi!

    Thanks chilli-mind for helping us out :)

    Regards,

    Peter

    in reply to: Video with autostart on startpage #132547

    If you want to use LayerSlider I’d suggest to host the video on youtube/vimeo and to embed the iframe into the slider. LayerSlider supports a special field for html/iframe codes

    and you can use it to embed the youtube iframe. An iframe code generator can be found here: https://developers.google.com/youtube/youtube_player_demo

    in reply to: Javascript conflict on Add/Edit posts pages #130404

    Can you please send me the ftp credentials. Kriesi and I can’t reproduce the bug on our servers and we need to debug the issue on your server. This is not possible with the default theme editor.

    Did you get a chance to review the thread I linked in my last post?

    No, because it seems to be locked for persons who don’t have a valid membership. I’ll contact the simple:press developers and ask them if they want to give us a membership account. Probably the support forum would also make it easier for us to sort out any incompatibility issues with simple press.

    in reply to: Image sizes functions.php 2 #133500

    Yes, the code would work but I’d use

    function avia_change_image_size_array()
    {
    global $avia_config;
    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
    $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>901 ); // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>330 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>173 ); // images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>474 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>687 ); // images for fullsize pages and fullsize slider

    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>564 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>807 ); // images for fullsize pages and fullsize slider
    }
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    in reply to: google maps multiple markers in one map #133524

    Actually I noticed some js errors with wp3.6 – not sure if the marker issue is related to these errors or not. You can also try: http://wordpress.org/plugins/wp-google-maps/ – based on the ratings I guess it’s a great alternative.

    in reply to: WordPress SEO Plugins #133813

    Hey!

    Second that. Yoast is imo the best seo plugin at the moment.

    Regards,

    Peter

    Afaik shortcode_handler() is not a static method but every shortcode class extends an abstract class (aviaShortcodeTemplate in shortcode-template.class.php) and you also can’t call shortcode_handler() like a static method. However you probably don’t need to cope with all these things anyway and you can use the standard do_shortcode() function: http://codex.wordpress.org/Function_Reference/do_shortcode to embed your shortcodes into the templates/loop files.

    in reply to: Secure loading issue #133124

    You just need to replace the http:// protocol with https:// – make sure that all urls on the option page (Enfold > Styling – background images) use https:// as protocol and i.e. replace

    http://www.lephenix.co.uk/wp-content/themes/enfold/images/background-images/ios-linen-light.png

    with

    https://www.lephenix.co.uk/wp-content/themes/enfold/images/background-images/ios-linen-light.png

    in reply to: Updating Menu #128278

    I can’t access the menu page because the account you created for me doesn’t allow me to view the Appearance > Menu page, the WP “Settings” pages and the plugin page. I need access to all pages to debug the error.

Viewing 30 posts - 7,741 through 7,770 (of 9,352 total)