Forum Replies Created

Viewing 30 posts - 7,951 through 7,980 (of 9,352 total)
  • Author
    Posts
  • in reply to: Responsive header not working #126517

    You need to deregister the default avia.js (which can be found in the parent theme folder) in your child theme functions.php and then you need to create a copy of enfold/js/avia.js in your child theme. Afterwards modify avia.js (which is located in your child theme folder) and register the child theme avia.js with

    add_filter('init', 'avia_replace_scripts');
    function avia_replace_scripts()
    {
    wp_deregister_script('avia-default');
    wp_dequeue_script( 'avia-default' );

    $template_url = get_template_directory_uri();
    wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
    wp_enqueue_script( 'avia-default' );
    }

    in reply to: HTML form code in promo box breaks things #131573

    Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it and check why the shortcode doesn’t work.

    The problem is you use an iframe to embed the form. If you want to center the form you must modify the iframe content which can’t be done with the theme files (css stylesheets, etc.). You’d need to modify the iframe content directly. Another possible solution would be to to set a smaller width for the iframe itself and to center the iframe with

    margin: auto;

    in reply to: Problems with IE9 and IE10 Second Scrollbar #131950

    I checked your website with the w3c validator and it seems like there’re missing paragraph tags in the html code. Maybe these tags cause the styling error. Especially check the content of following html code

    <div class='avia_textblock'><blockquote>
    <p style="text-align: left;">Die Drei Guten Gründe (3GG) sind eine reine Acoustic-Coverband und bieten für Partys, Hochzeiten, Apéros, Pubs und Firmen Events die perfekte Unterhaltung.</p>
    <p style="text-align: left;"></blockquote>
    <div class="lyte-wrapper" style="width:420px;max-width: 100%;margin:5px;">
    <div class="lyMe" id="WYL_77VknwX_oZ8" itemprop="video" itemscope itemtype="http://schema.org/VideoObject"><meta itemprop="duration" content="T348S" /><meta itemprop="thumbnailUrl" content="http://i.ytimg.com/vi/77VknwX_oZ8/0.jpg" /><meta itemprop="embedURL" content="http://www.youtube.com/embed/77VknwX_oZ8" /><meta itemprop="uploadDate" content="2011-03-03T16:58:51.000Z" /></p>
    <div id="lyte_77VknwX_oZ8" data-src="http://i.ytimg.com/vi/77VknwX_oZ8/0.jpg" class="pL">
    <div class="tC">
    <div class="tT" itemprop="name">3GG Live 2011</div>
    </div>

    in reply to: How to add captions to gallery thumbs #131689

    Hey!

    Can you post a link to your 2 columns template please?

    Best regards,

    Peter

    in reply to: side menu order #132239

    Hi!

    You can use the “Custom Menu” widget (Appearance > Widgets) to display any WordPress menu (Appearance > Menus) in the sidebar.

    Regards,

    Peter

    in reply to: search drop down titles #132090

    Open up functions-enfold.php and replace

    if(isset($post_type_obj[$key]->labels->name))
    {
    $output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
    }

    with

    if(isset($post_type_obj[$key]->labels->name))
    {
    if($post_type_obj[$key]->labels->name == 'Portfolio Items')
    {
    $output .= "<h4>Recipes</h4>";
    }
    else if($post_type_obj[$key]->labels->name == 'Pages')
    {
    $output .= "<h4>My Pages</h4>";
    }
    else
    {
    $output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
    }
    }

    and instead of “My Pages” insert your custom label text for pages.

    in reply to: Woocommerce up-sells cart page #132091

    Hey!

    I can’t reproduce this bug on my test servers. Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.

    Regards,

    Peter

    Hey!

    Maybe the attachment ids changed somehow. Please check if the attachment ids exist in the database (827, 815, 816, etc.).

    Regards,

    Peter

    in reply to: LayerSlider – Renaming Layers #131933

    Thanks for the notice. I reported it to Kriesi. Unfortunately this is not a theme bug which we can fix on our end but it seems like the LayerSlider plugin authors removed this feature in the latest version of LayerSlider (v4.6.0) which is bundled with Enfold 1.8.x. I can reproduce the issue with any other theme (like TwentyTwelve) too.

    I can’t tell you if they removed it intentional or if this is a plugin bug but I’ll ask Kriesi to contact them.

    in reply to: Logo keeps resizing #132042

    By re-sizing the menu/logo you can have a fixed menu without wasting a lot of space at the top. Afaik many users find this feature useful – i.e. I conduct a private workshop last weekend and the client told me that this feature was one of the main reasons why he bought Enfold because it shows him that the theme author takes care of important details…

    in reply to: Enflod & WishList Member #132143

    Hi!

    Please read – https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help – maybe it solves your problem too.

    Best regards,

    Peter

    in reply to: LayerSlider Scale #131833

    Kannst du mir bitte wieder den Admin Account einrichten? Ich konnte keinen JS Fehler entdecken und ein genereller Theme Bug dürfte es auch nicht sein, da die Scale option bei mir auf den Test Servern funktioniert (zB [removed] mit dem “Our most beautiful theme ever” png Bild). Ich nehme daher an, dass es irgendwie an der derzeitigen Konfiguration scheitert.

    in reply to: Error: [LayerSliderWP] Slider not found #131106

    Hey!

    It works now. I had to save the “Homepage” again and I deleted some duplicate menu items (Appearance > Menus).

    Best regards,

    Peter

    in reply to: Changing the Logo Size in Enfold #131790
    in reply to: Some issues (and thank you for this theme!!!!) #131874

    1) Maybe you forgot to remove the http:// prefix? Make sure that the protocol is set to “mailto:”

    2) Yes – insert following code into the quick css field and adjust the font size value

    #top .social_bookmarks li a {
    font-size: 30px;
    }

    3) You can use a plugin like http://wordpress.org/plugins/wp-google-fonts/ to install more fonts. However note that this can increase the page loading time and I’d recommend to stick with the default fonts (one font for headlines and one font for the body text).

    4) Yes – Kriesi just hides it with css. Insert following code into the quick css field

    @media only screen and (max-width: 767px){
    .responsive #top #main .sidebar {
    display: block !important;
    border: none !important;
    }
    }

    5) At the moment the layout builder is only bundled with the Enfold theme but we’ll release more themes in the future. Older themes (like Replete, Propulsion, Angular, Choices, Eunoia, etc.) come with a “Template Builder” which is similar to the layout builder.

    in reply to: Several questions re: Enfold and links (WP newbie) #131346

    Hey!

    You can use the “nextpage” quicktag

    <!--nextpage-->

    to split your page/post content. However note that it DOES NOT work with the “advanced layout builder” and you MUST use the “Default editor”.

    Regards,

    Peter

    in reply to: Change logo size and space available for it. #131841

    Hey!

    Insert following code into the quick css field

    .logo img {
    height: auto;
    width: 300px;
    }

    If this doesn’t work try:

    .logo img {
    height: 200px;
    width: 300px;
    }

    Regards,

    Peter

    in reply to: Insert LayerSlider homepage #131715

    As I said above you can follow Kriesi’s instructions here: https://kriesi.at/support/topic/how-to-insert-slide-show-with-layerslider to activate the slider as a plugin. It’s not our intention to mislead anyone but the slider plugin is not compatible with all elements of the template builder and we want to make sure that users don’t stack too many shortcodes/elements.

    in reply to: Remove comments and change language #131861

    Hey!

    Thanks for the hint :)

    Regards,

    Peter

    in reply to: Insert LayerSlider homepage #131713

    The layerslider shortcode is deactivated by default because it does not always work (i.e. stacked shortcode layouts, etc.). You can use activate it with a small hack though – see : https://kriesi.at/support/topic/how-to-insert-slide-show-with-layerslider

    in reply to: Logo keeps resizing #132038

    Hi!

    Open up enfold/js/avia.js and delete

    // decreases header size when user scrolls down
    avia_header_size();

    Regards,

    Peter

    in reply to: Portfolio Re-arrangement / Organizing #132019

    1) You can use a plugin like: http://wordpress.org/plugins/post-types-order/ if you want to change the sort order manually or use the code from this thread: https://kriesi.at/support/topic/blog-posts-and-grid-layout

    2) Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace

    for ($i = 1; $i <= 20; $i++ )

    with

    for ($i = 1; $i <= 50; $i++ )

    in reply to: Import Dummy Data – NOT WORKING!!! #131485

    I uploaded a sql file here: http://www.mediafire.com/?45xzy2b4486bbbi – it should help you to import the dummy data even if the “standard” importer doesn’t work. Before you can import the sql file with phpmyadmin open it up and replace all occurences of

    mywebsite.com

    with your domain name and then search for

    (1, 'Administrator', '$P$BWTyNMBieBu82YP5VvgXsrOoe9mdLu.', 'administrator', ' (Email address hidden if logged out) ', '', '2013-06-24 14:32:48', '', 0, 'Administrator');

    and replace

     (Email address hidden if logged out) 

    with your email. You can also change the default username by replacing both occurences of

    Administrator

    with your user name.

    Afterwards import the sql file into your database (eg with phpmyadmin) and use the wordpress password recovery function to generate a working password.

    in reply to: No demo content import #131999
    in reply to: Layer Slider – Effects failure on basic design #131736

    Hey!

    Glad it works now :)

    Best regards,

    Peter

    in reply to: Meta Title #131953

    Hey!

    See https://kriesi.at/support/topic/seo-site-title – you can use a filter function to change the title content.

    Regards,

    Peter

    in reply to: LayerSlider Scale #131831

    Hey!

    Kannst du bitte einen Link zu deiner Website posten?

    Regards,

    Peter

    Hey!

    You can use this link https://kriesi.at/support/profile/faterra to find your posts.

    Best regards,

    Peter

    in reply to: How to add captions to gallery thumbs #131683

    Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php and replace

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /></a>";

    with

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}' title='".$description."' ><img {$tooltip} src='".$img[0]."' title='".$title."' alt='".$alt."' /><span class='visible-caption'>{$caption}</span></a>";

    I guess you also need to add some custom style rules for the caption but it’s a starting point.

    in reply to: Iconlist Headings & SEO #131526

    Hi!

    You can add the idea to the feature request list: https://kriesi.at/support/topic/enfold-feature-requests – if more users request this option we’ll look into it.

    Best regards,

    Peter

Viewing 30 posts - 7,951 through 7,980 (of 9,352 total)