Forum Replies Created

Viewing 30 posts - 62,581 through 62,610 (of 64,025 total)
  • Author
    Posts
  • Hi,

    Please send it on ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: LayerSlider Role Settings #129455

    Hi,

    You can refer to this link. I think there are plugins that you can use to limit capabilities.

    http://codex.wordpress.org/Roles_and_Capabilities#Resources

    Regards,

    Ismael

    in reply to: Help, portfolio items don't allow fullwidth items! #129223

    Hi,

    Your site is not loading properly. I can’t check the website.

    Regards,

    Ismael

    Hi,

    What do you mean by does not coincide with the size of the main menu? I checked the link, the slider looks fine.

    Can you give us a screenshot? You can use imgur, dropbox, mediafire etc.. to post images here.

    Regards,

    Ismael

    in reply to: Google Maps not displaying #129340

    Hi,

    Remove the Minit plugin. Kriesi, use this plugin:

    http://wordpress.org/plugins/bwp-minify/

    See if the google map is fix.

    Regards,

    Ismael

    Hi,

    Can you give us a link to the website?

    1.) How do you embed the videos?

    2.) Please check the link: http://responsinator.com/?url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2F

    You can see that the titles are responsive. You can use Media Queries to make certain elements responsive. CSS changes can be made on your custom.css or Quick CSS.

    3.) You can switch the Advance Layout Editor (ALE) to debug mode. You will be able to see the actual shortcode below the ALE. You can copy and paste it to an Enfold installation somewhere else.

    Edit functions.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";
    }

    4.) We can’t say for sure. We haven’t tested the Wordfence plugin. Please let us know if you encounter any problem.

    Regards,

    Ismael

    in reply to: Page Flashes Background – when selecting Navigation #129372

    Hi,

    That’s weird. I tested your site and I don’t see the issue. Let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: Quform not working #128771

    Hi,

    Please edit footer.php, find this code

    <a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
    <div id="fb-root"></div>

    Below, add this code:

    <script type="text/javascript">

    jQuery(document).ready(function ($) {
    var $link = $('#iphorm_fancybox_51e102a0950da');
    if ($.isFunction($.fn.fancybox) && !$link.data('iphorm-initialised')) {
    $link.fancybox($.extend({
    inline: true,
    href: '#iphorm-outer-51e102a0950da',
    onStart: function () {
    $('#fancybox-outer').css('opacity', 0);
    },
    onComplete: function () {
    $('#fancybox-wrap, #fancybox-content').css({width: 'auto'});
    $.fancybox.center(0);
    setTimeout(function () {
    $('#fancybox-outer').animate({opacity: 1}, 400);
    $('#fancybox-overlay').css({height: $(document).height()});
    }, 1);
    }
    }, {})).data('iphorm-initialised', true);
    }
    });

    </script>

    Regards,

    Ismael

    in reply to: Portfolio "Next" points to last instead of next #128998

    Hi,

    Please remove the code. Use this plugin to order the portfolio items.

    http://wordpress.org/plugins/post-types-order/

    Regards,

    Ismael

    in reply to: Navigation overlays logo on smaller displays #129316

    Hi,

    Please edit js > avia.js, find this code

    first_level_items = menu.find('>li').length,
    bottom_menu = $('html').is('.bottom_nav_header'),
    switchWidth = 768;

    Replace it with:

    first_level_items = menu.find('>li').length,
    bottom_menu = $('html').is('.bottom_nav_header'),
    switchWidth = 900;

    Regards,

    Ismael

    in reply to: Logo size enfoldtheme #129196

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Images / Thumbnail sizes in blog and portfolio #129315

    Hi,

    You can find the thumbnail sizes on functions.php, find this codes

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $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'=>360 ); // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
    $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // 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'=>400 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)

    You can adjust the max-height of portfolio thumbnails with css.

    .attachment-portfolio.wp-post-image {
    max-height: 150px;
    }

    Regards,

    Ismael

    in reply to: "Home" redirection #129289

    Hi,

    Go to Appearance > Menus, remove the Home button. Replace it with your homepage. :)

    Regards,

    Ismael

    in reply to: How to display featured images inside the posts? #129017

    Hi,

    On Enfold > Blog Style > Please choose onother option except for “Grid Layout”. Create a page, insert the Blog Post element then choose Grid Layout. Set this page as your default Blog Page.

    Regards,

    Ismael

    in reply to: scroll down page reveals a section with image #129439

    Hi,

    You can use the Color Section, use a large image. The options should be like this:

    Background Image Position: Top Left

    Background Repeat: Stretch to Fit

    Background Attachment: Fixed

    Section Padding: Large Padding

    Regards,

    Ismael

    in reply to: Enfold Checkout Page CC month out of alignment #129433

    Hi,

    Just add this on your custom.css or Quick CSS

    #top #payment label {
    display: block;
    }

    Regards,

    Ismael

    Hi,

    Regular license only allow you to create a single end product which means you can only use the theme on a single website.

    You can switch the theme to debug mode. This way you will be able to see the actual shortcode below the Advance Layout Editor. You can just copy and paste the shortcode on another installation of Enfold theme.

    Open functions.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";
    }

    Regards,

    Ismael

    in reply to: Custom Logo for Specific Page #129427

    Hi,

    You can Inspect Element with Google Chrome, look for the unique body class id of the page.

    On the image above, the body class id is .page-id-2251, yours will be different. Use it to change the background image of the logo. Add this on your custom.css or Quick CSS

    .page-id-2251 .logo.bg-logo img {
    position: absolute;
    left: -9999px;
    }

    .page-id-2251 .logo.bg-logo {
    background: url(../images/layout/logo.png) no-repeat center;
    display: block;
    height: 116px;
    width: 210px;
    }

    Regards,

    Ismael

    in reply to: styling does noy update #129233

    Hi,

    I tested this on my end with the child theme turned on and the Enfold > Styling is working fine.

    Do you have a caching plugin? or any plugin for that matter?

    Regards,

    Ismael

    Hi,

    Do you have a caching plugin? Or any other plugin for that matter? Please deactivate them, see if the issue is fix. Activate them one at a time to find the chaotic plugin.

    Regards,

    Ismael

    in reply to: Enfold search box position #128921

    Hi,

    I can see it, it should be place below the magnifying glass. Did you edit something on the theme files?

    Please upgrade to Enfold 1.7.

    Regards,

    Ismael

    in reply to: Hello, I have a few questions regardin enfold theme. #129259

    Hi,

    1.) For translation, please use WPML plugin. You also use qTranslate but you will have to modify some areas.

    1.) For translation, please use WPML plugin. You also use qTranslate but you will have to modify some areas.

    Regards,

    Ismael

    in reply to: Footer Links (like http://kriesi.at/themes/enfold/) #129255

    Hey,

    If you want to remove the kriesi backlink, open footer.php and find this code.

    $kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");

    Glad it is sorted out.

    If you like the theme, please send us a feedback here.

    https://kriesi.at/support/topic/your-testimonials-on-our-front-page-a-unique-chance

    Regards,

    Ismael

    in reply to: Single image with Lightbox inside Tab #129361

    Hi,

    Yes, it is possible. An image inside the anchor tag will always open with lightbox.

    [av_tab_container position='top_tab' boxed='border_tabs' initial='1']
    [av_tab title='Tab 1' icon_select='no' icon='1']
    <a href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/24.jpg"><img class="alignright size-full wp-image-316" alt="2" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/24.jpg" width="1000" height="650" /></a>
    [/av_tab]
    [av_tab title='Tab 2' icon_select='no' icon='1']
    Tab Content goes here
    [/av_tab]
    [/av_tab_container]

    Regards,

    Ismael

    in reply to: How to display featured images inside the posts? #129015

    Hi,

    Edit post, look for Featured Image > Set featured image.

    Regards,

    Ismael

    in reply to: Ipad portrait view – overlapping logo and promo box #129068

    Hi,

    That is correct, you can change the padding on mobile view. You can do something like this on your custom.css or Quick CSS

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 1024px) {
    .main_menu ul:first-child > li > a {
    padding: 0 7px;
    font-size: 11px;
    }
    }

    Regards,

    Ismael

    Hey,

    Can you give us a link to the website? Add this on your custom.css or Quick CSS

    iframe {
    z-index: 0 !important;
    }

    Regards,

    Ismael

    in reply to: Strange Issue—Ghost Problem :-) #128841

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Bug in AJAX portfolio preview image? #128591

    Hey,

    I agree with Devin, looks like regenerating the thumbnail will solve the issue. If you didn’t change anything with the code and you are uploading images with the same dimension then they should be cropped equally. We would like to inspect the issue but the link you gave us doesn’t have the AJAX turned on.

    Regards,

    Ismael

    in reply to: Image Hover Removal Only Partially Working #129280

    Hi,

    I think you end up reading one of the thread I answered. Just add this on your custom.css or Quick CSS

    .image-overlay.overlay-type-image {
    display: none !important;
    }

    Regards,

    Ismael

Viewing 30 posts - 62,581 through 62,610 (of 64,025 total)