Viewing 30 results - 7,381 through 7,410 (of 7,470 total)
  • Author
    Search Results
  • #126364

    That is definitely outdated SEO practices but you can remove or modify the wrap on widgets in:

    enfoldframeworkphpclass-sidebar-generator.php:

    Line 164 and line 165. Any change in styling will need to be re-done though I don’t know if anything is directly tied to H3 or not.

    In addition to that location there are a number of others in the following files with the same structure:

    enfoldconfig-bbpressconfig.php
    enfoldincludesadminregister-widget-area.php
    enfoldincludeserror404.php
    enfoldincludesloop-search.php

    Regards,

    Devin

    #126365

    Hi,

    You are talking about in the backend or on the website?

    If you are talking about on the site, my suggestion is to install a plugin to enhance your search since there are a couple of high end and free search plugins.

    Here they are. All current and frequently updated.

    You can use this plugin to maximize the search power of your website: SearchWP

    Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Thanks,

    Nick

    #126380

    Open up enfold/js/shortcode.js and search for this code around line 205:


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

    change it to:


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

    #123185

    If you just want to get rid of the title revert the changes I posted above (because this will remove everything) and open up functions-enfold.php. Search for:

    if(empty($title)) $class .= " empty_title ";

    and replace i with

    $title = '';
    if(empty($title)) $class .= " empty_title ";

    By going this way you’ll remove the title from all pages.

    #126048

    Thanks,

    I have installed woocommerce and activated and also set the plugin to use the shop page but when I click on the shop nav menu I get the following page error?

    Nothing Found

    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    Having never used woocommerce I don’t know where to go from here?

    #25243
    LAHWebDesigns
    Participant

    When I view my site on iPad and even resizing in a browser, the main menu slides under the logo and does not switch to the responsive layout like the demo for Enfold does.

    The demo seems to switch the navigation to the responsive button at about 1000px wide. And when I adjust the avia.js to 1000 (I’ve searched the posts here for a solution and tried changing the avia.js as suggested in one post) what I get is the responsive button and the menu!

    I have the latest update of Enfold, 1.7 and WP 3.5.2. Am I doing something wrong?

    http://www.ttg.travel/redesign/

    #125487

    Hi,

    please open up functions-enfold.php in the main folder of the theme and go to line 251 that looks like

    'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",

    This is the line that creates that whole segment, and as you can see the {title} is the title, and {additions} are the bread crumbs.

    You can just delete {title} from there.

    If you want that grey band that used to contain title be completely gone you can just change the first part of this above to the code below instead of replacing just {title}

    'html'			=> " ";


    And in page.php you can add the following to line 16 of page.php

    <?php echo "<div class='title_container'><h1>".get_the_title(get_the_ID())."</h1></div>"; ?>

    You will need to add that same code on the above line to the following files, it all goes to the same location pretty much , just look for a div with a class=”container” and paste it under it.

    http://i.imgur.com/JRKHOQi.png <— all these files are in the main theme folder.

    404.php


    line 17

    archive.php


    line 25

    forum.php


    line 31

    index.php


    line 32

    page.php


    line 16

    search.php


    line 17

    single-portfolio.php


    line 16

    single.php


    line 28

    taxonomy-portfolio-entries.php


    line 16

    template-archives.php


    line 22

    template-builder.php


    line 33

    config-woocommerce/config.php


    line 528

    Thanks,

    Nick

    #125404

    Enfold uses a new breadcrumb function which is also located in class-breadcrumbs.php – search for

    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';

    You can replace the get_bloginfo( ‘name’ ) function with your custom text. If you want to replace the $show_home variable content (by default it’s “Home”) I’d recommend to modify the breadcrumb parameters in functions-enfold.php and replace:

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    with

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'show_home' => __( 'MY CUSTOM TEXT', 'avia_framework' ),
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    and insert your custom text instead of “MY CUSTOM TEXT”.

    #125618

    Hey!

    Please search for following code in enfold/js/avia.js

    switchWidth 	  = 767;

    if(first_level_items > 8 && !bottom_menu)
    {
    switchWidth = 989;
    header.addClass('mobile_menu_tablet');
    }

    Try to change the switchWidth value of 767 to 1006.

    Regards,

    Peter

    #125330

    Hi,

    actually Enfold should import two demo slides when you activate the theme. Go to “LayerSlider WP” > All Sliders and search for the “Why Enfold – Small Header” and “Enfold – most beautiful theme ever” sliders. Both sliders contain the effects from the demo website.

    #124505

    Hi,

    Maybe you can setup the Enfold on a domain then copy the header html tag. You might need to edit the links.

    <div id="header" class=" header_color dark_bg_color mobile_drop_down">

    <div id="header_main" class="container_wrap container_wrap_logo">

    <ul class="cart_dropdown visible_cart" data-success="was added to the cart"><li class="cart_dropdown_first"><a class="cart_dropdown_link" href="http://localhost/kriesi/enfold/?page_id=1422"><span class="avia-font-entypo-fontello"></span></a><!--<span class='cart_subtotal'><span class="amount">&pound;9.99</span></span>--><div class="dropdown_widget dropdown_widget_cart" style="display: none; opacity: 0;"><div class="avia-arrow"></div><div class="widget_shopping_cart_content">

    <ul class="cart_list product_list_widget ">

    <li>
    <a href="http://localhost/kriesi/enfold/?product=single-product">

    <img width="120" height="120" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21-120x120.jpg" class="attachment-shop_thumbnail wp-post-image" alt="2">
    Single Product
    </a>

    <span class="quantity">1 × <span class="amount">£9.99</span></span> </li>

    </ul><!-- end product list -->

    <p class="total"><strong>Subtotal:</strong> <span class="amount">£9.99</span></p>

    <p class="buttons">
    <a href="http://localhost/kriesi/enfold/?page_id=1422" class="button">View Cart →</a>
    <a href="http://localhost/kriesi/enfold/?page_id=1423" class="button checkout">Checkout →</a>
    </p>

    </div></div></li></ul>
    <div class="container" style="height: 88px; line-height: 88px;">

    <strong class="logo bg-logo"><a href="http://localhost/kriesi/enfold/"><img src="http://localhost/kriesi/enfold/wp-content/themes/enfold/images/layout/logo.png" alt="" title="Enfold"></a></strong><div class="main_menu" data-selectname="Select a page"><div class="menu-main-menu-container"><ul id="menu-main-menu" class="menu"><li id="menu-item-755" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent active-parent-item dropdown_ul_available"><a href="http://kriesi.at/themes/enfold/" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Home<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>

    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1351" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-734 current_page_item"><a href="http://localhost/kriesi/enfold/"><span class="avia-bullet"></span>Home v1: Landing Page Style</a></li>
    <li id="menu-item-1356" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1108"><span class="avia-bullet"></span>Home v2: 3 Col + Contact</a></li>
    <li id="menu-item-1352" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1040"><span class="avia-bullet"></span>Home v3: 3 Column with Blog</a></li>
    <li id="menu-item-1355" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1070"><span class="avia-bullet"></span>Home v4: Small Slider</a></li>
    <li id="menu-item-1354" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1097"><span class="avia-bullet"></span>Home v5: Portfolio Style</a></li>
    <li id="menu-item-1353" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1023"><span class="avia-bullet"></span>Home v6: Classic 4 Column</a></li>
    </ul>
    </li>
    <li id="menu-item-1338" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=756" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Portfolio<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>

    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1339" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=987"><span class="avia-bullet"></span>Portfolio 2 Column</a></li>
    <li id="menu-item-1340" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=992"><span class="avia-bullet"></span>Portfolio 3 Column</a></li>
    <li id="menu-item-1342" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=756"><span class="avia-bullet"></span>Portfolio 4 Column</a></li>
    <li id="menu-item-1343" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=slider-two-third"><span class="avia-bullet"></span>Single Portfolio: 2/3 Slider</a></li>
    <li id="menu-item-1344" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=lorem-ipsum"><span class="avia-bullet"></span>Single Portfolio: 2/3 Gallery</a></li>
    <li id="menu-item-1345" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=portfolio-big"><span class="avia-bullet"></span>Single Portfolio: Big Slider</a></li>
    <li id="menu-item-1346" class="menu-item menu-item-type-post_type menu-item-object-portfolio"><a href="http://localhost/kriesi/enfold/?portfolio=vimeo-video"><span class="avia-bullet"></span>Single Portfolio: Fullscreen Slider</a></li>
    </ul>
    </li>
    <li id="menu-item-1337" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=731" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Blog<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>

    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1370" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1336"><span class="avia-bullet"></span>Blog Grid</a></li>
    <li id="menu-item-1350" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1010"><span class="avia-bullet"></span>Blog Multi Author</a></li>
    <li id="menu-item-1349" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1012"><span class="avia-bullet"></span>Blog Single Author Small</a></li>
    <li id="menu-item-1348" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1014"><span class="avia-bullet"></span>Blog Single Author Big</a></li>
    <li id="menu-item-1347" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1016"><span class="avia-bullet"></span>Blog Single Author Fullwidth</a></li>
    </ul>
    </li>
    <li id="menu-item-1357" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=1122" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Pages<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>

    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1359" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1195"><span class="avia-bullet"></span>About Us</a></li>
    <li id="menu-item-1363" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1236"><span class="avia-bullet"></span>Blank Pages</a>
    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1366" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1236"><span class="avia-bullet"></span>What is a Blank Page?</a></li>
    <li id="menu-item-1364" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1261"><span class="avia-bullet"></span>Maintenance Mode</a></li>
    <li id="menu-item-1365" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1248"><span class="avia-bullet"></span>Coming Soon</a></li>
    </ul>
    </li>
    <li id="menu-item-1361" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1167"><span class="avia-bullet"></span>Contact</a></li>
    <li id="menu-item-1367" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1277"><span class="avia-bullet"></span>FAQ</a></li>
    <li id="menu-item-1362" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1224"><span class="avia-bullet"></span>Help</a></li>
    <li id="menu-item-1369" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1324"><span class="avia-bullet"></span>Landing Page</a>
    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1358" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1212"><span class="avia-bullet"></span>Meet the Team</a></li>
    </ul>
    </li>
    <li id="menu-item-1360" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1176"><span class="avia-bullet"></span>Pricing</a></li>
    <li id="menu-item-1368" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1302"><span class="avia-bullet"></span>Services</a></li>
    </ul>
    </li>
    <li id="menu-item-1341" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-mega-parent dropdown_ul_available" style="overflow: hidden;"><a href="http://localhost/kriesi/enfold/?page_id=750" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Shortcodes<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>
    <div class="avia_mega_div avia_mega1 three units" style="opacity: 0; display: none; right: -109px;">

    <ul class="sub-menu">
    <li id="menu-item-1378" class="menu-item menu-item-type-post_type menu-item-object-page avia_mega_menu_columns_1 three units avia_mega_menu_columns_last avia_mega_menu_columns_first"><h4 class="mega_menu_title"><a href="http://localhost/kriesi/enfold/?page_id=821">Animated Image</a></h4>
    <ul class="sub-menu">
    <li id="menu-item-1379" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=761"><span class="avia-bullet"></span>Blog Elements</a></li>
    </ul>
    </li>
    </ul>

    </div>
    </li>
    <li id="menu-item-1433" class="menu-item menu-item-type-post_type menu-item-object-page dropdown_ul_available"><a href="http://localhost/kriesi/enfold/?page_id=1421" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>Shop<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span><span class="dropdown_available"></span></a>

    <ul class="sub-menu" style="display: block; opacity: 0; visibility: hidden;">
    <li id="menu-item-1434" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1422"><span class="avia-bullet"></span>Cart</a></li>
    <li id="menu-item-1435" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1430"><span class="avia-bullet"></span>Checkout → Pay</a></li>
    </ul>
    </li>
    <li id="menu-item-1463" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="http://localhost/kriesi/enfold/?page_id=1373" style="height: 88px; line-height: 88px;"><span class="avia-bullet"></span>A.Test<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="<form role=&quot;search&quot; method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;http://localhost/kriesi/enfold/&quot; >
    <div><label class=&quot;screen-reader-text&quot; for=&quot;s&quot;>Search for:</label>
    <input type=&quot;text&quot; value=&quot;&quot; name=&quot;s&quot; id=&quot;s&quot; />
    <input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; />
    </div>
    </form>" style="height: 88px; line-height: 88px;">
    #125508

    In reply to: 404 page

    The code of the 404 page can be found in wp-contentthemesenfoldincludeserror404.php

    Replace:

    <?php _e('Sorry, the post you are looking for is not available. Maybe you want to perform a search?', 'avia_framework'); ?>

    with

    <?php _e('Sorry, the page you are looking for is not available. Maybe you want to perform a search?', 'avia_framework'); ?>

    and delete

    <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>

    #25009
    navin1976
    Participant

    Hello everyone,

    I have done a search and not found a similar question, so here goes:

    I would like to recreate the behaviour of this plugin ( http://wordpress.org/plugins/category-posts-in-custom-menu/ ).

    Essentially, I want all portfolio items from a certain category to show up automatically on a custom menu (I have team members listed under a category, and the number will expand in the future). Thus when I added new items, the menu would update itself automatically.

    Unfortunately, the plugin does not seem to work on my current set-up (not sure if it is a problem with enfold or newer versions of wordpress).

    Anyone had any luck with anything similar?

    Navin

    #125285

    Hi!

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

    opa			= 0.7;

    Replace 0.7 with an higher value like 0.8 or 0.9.

    Best regards,

    Peter

    #116623

    I came across this more recent post that addresses this issue: https://kriesi.at/support/topic/galery-pictures-load-effect

    Hi,

    Open up enfold/js/shortcode.js and search for following code around line 205:

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

    });

    });

    change it to:

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

    and the gallery thumbs should load immediately.

    I have implemented it and it seems to work, but my question is, why hasn’t this been written into the code for us? It doesn’t make any sense to have to scroll down a complete page of thumbnail images before you get to see them not greyed out! Now I may have to amend the code everytime I do a theme update, so is there a good reason this fix hasn’t been applied to the code for us?

    Thanks,

    Matt

    #24937
    mdlhale
    Participant

    Hi! I’m just about ready to launch an awesome site using the enfold theme and lastly, my client wants to know if there is a way I can edit the search function.php (or code somewhere) so I can do a search of inventory on a different site (their back end) which is this:

    http://www.ecinteractive.com/5874/EnhancedSearch.aspx?clear=1&keywords=Armoires+%26+Bookcases&newSearch=true

    There must be a way I can edit the function.php so I can just route it to the backend search and use the key words input and do a search like:

    http://www.ecinteractive.com/5874/EnhancedSearch.aspx?clear=1&keywords=[Text From WordPress Search]+%26+[Text From WordPress Search]&newSearch=true

    Any suggestions? I would be so deeply appreciated for any help!!!

    Thank YOU!!

    #125164

    Open up functions-enfold.php and replace:

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'">'.$avia_config['font_icons']['search'].'</a></li>';

    with

    if(is_user_logged_in())
    {
    $items .= '<li><a title="'.__('Logout','avia_framework').'" href="'. wp_logout_url(get_permalink()) .'">'.__('Logout','avia_framework').'</a></li>';
    }
    else
    {
    $items .= '<li><a title="'.__('Login','avia_framework').'" href="'. wp_login_url(get_permalink()) .'">'.__('Login','avia_framework').'</a></li>';
    }

    This will add a login link to the menu if the user is not logged in and a log out link to the menu if the user is logged in.

    #120891

    Hi,

    I did some research into this and this shouldn’t be happening. If you go to fontello.com , can you see all the glyphs in ie8 ?

    IE8 has problems with EOT files as IE9 and up falls back to TTF.

    I reconverted all the font files from the ttf and they are different. They work for me but I don’t have IE8 to test them with.

    http://www.mediafire.com/download/b719gbbz5cle4p6/fonts.zip <– here they are. Just open up /enfold/config-templatebuilder/avia-template-builder/assets/ and you will see the fonts folder. rename it to fonts-original, and upload the fonts folder in its place that is inside the zip. Please let us know if this does anything for ie8 or even Opera.

    Thanks,

    Nick

    #124708

    In reply to: Theme Translation

    1) Personally I’d recommend to translate Enfold with Codestyling: http://wordpress.org/plugins/codestyling-localization/

    2) Install & activate the plugin and go to Tools > Localization to translate all themes/plugins. Search for the Enfold theme in the list and use the the wp-contentthemesenfoldlang folder as base directory.

    3) Click the button to generate the language files and then you can translate all text strings from the “avia_framework” textdomain (including the search results page).

    #123231

    Personally I’d recommend to use coodestyling: to translate the theme po files. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” select (or create) your language, scan the files and then translate the required strings from the “avia_framework” textdomain.

    #124298

    Hi,

    Open up enfold/js/shortcode.js and search for following code around line 205:


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

    change it to:


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

    and the gallery thumbs should load immediately.

    1) The dropcaps seem to work for me just fine: http://www.screenr.com/N32H

    2) Open up wp-contentthemesenfoldindex.php and search for:

    $title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    $t_link = home_url('/');

    Replace it with

    $title  = __('Blog - Latest News', 'avia_framework'); //default blog title
    $t_link = get_permalink();

    and replace “Blog – Latest News” with your custom text.

    3) Open up wp-contentthemesenfoldarchive.php and replace:

    global $avia_config, $more;

    with

    global $avia_config, $more;
    $avia_config['blog_content'] = 'excerpt_read_more';

    #123712

    The problem is that your table just contains tr and th elements but th elements should be used for table headlines only. Please use different elements for your data – the structure should be (like demonstrated here: http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/ ):

    <tr class="avia-heading-row">
    <th class="avia-desc-col">Geboren</th>
    <td class="mytabledata">29.02.1973</td>
    </tr>

    In your case the structure is

    <tr class="avia-heading-row">
    <th class="avia-desc-col">Geboren</th>
    <th class="avia-desc-col">29.02.1973</th>
    </tr>

    which will give you some weird styling because everything is coded as a headline. In addition search engines might have problems to index the data.

    You can also add html code (and inline styling code) into the table fields – I made a short video to demonstrate the usage: http://www.screenr.com/Nk2H

    #24638
    leedonpark1975
    Participant

    Hi, I’ve recently purchased Enfold theme. I’ve managed to create a test site. However, when I tried to use Permalinks, I’m unable to get it to work other than the elementary default http://www.mydomain.com/?p=123

    I’ve spent 2 days trying to figure out and searching google, tried every method I found but failed. At the minimum, I need “Almost Pretty” permalinks to work – http://codex.wordpress.org/Using_Permalinks#PATHINFO:_.22Almost_Pretty.22

    e.g. http://mydomain.com/index.php/post-name/

    I’m running WordPress Version 3.5.1 on Windows 2003 Server IIS6 and PHP5.

    I’ve added the lines to PHP.ini

    cgi.fix_pathinfo=1

    cgi.force_redirect=0

    PATHINFO is working on my server, I’ve tested with something like http://www.mydomain.com/phpinfo.php/HELLO_THERE

    However, http://mydomain.com/index.php/post-name/ don’t work.

    I’ve also tried the 404 method as described here- http://anaestrada81.wordpress.com/2008/10/03/almost-pretty-permalinks-for-wordpress-and-iis6-and-front-page/

    The method also requires .htaccess file to be server writable. However, I can’t find the .htaccess file in the root directory of WordPress. I don’t want what this file should contain. I’ve tried adding the sample file in http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29 and assigned total control rights to “everyone”. After this, resetting the permanlink settings don’t appear to update the .htaccess file so I’m not sure if this file is needed in the first place.

    Will appreciate any help. thanks.

    #123512

    In reply to: Preview Image Size

    I checked the portfolio grid code and it seems like you can’t control the preview thumbnail size at all. I’ll mark this thread for Kriesi – maybe he wants to add an option. For now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php

    and search for:

    $params['preview_size'] = "gallery";

    Replace “gallery” with any other valid image size:

    portfolio_small

    portfolio

    featured

    square

    entry_with_sidebar

    entry_without_sidebar

    #123600

    1) Please use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate the missing text strings. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” select (or create) your language, scan the files and then translate the required strings from the “avia_framework” textdomain.

    2) Is this the default theme twitter widget? If yes I’d recommend to replace it with another widget because we removed it from the theme code. Twitter will shutdown the current api on June 11 ( http://www.mediabistro.com/alltwitter/twitter-delays-api-shutdown_b41602 ) and our widget does not support the new api. Thus the widget won’t work after June 11 anyway. You can use a plugin like http://wordpress.org/plugins/twitter-widget-pro/ which supports the new api. Because the new authentication process is very complex we decided that we won’t bundle a twitter widget with the theme anymore and we removed it in version 1.6.

    #122504

    Thanks everyone for all your support. We’ve dealt with lots of shop WP themes before and we’ve had such a good experience with Enfold that this will be our 4th license. Really glad you added WooCommerce functionality.

    Thanks again

    -Nicolas

    #123434

    Hi andreanapier1985,

    I answered this question in your other topic with a similar question here: https://kriesi.at/support/topic/enfold-portfolio-excerpt#post-116487

    Please only make a single topic for each support request as it makes it easier for others to search and for us to answer.

    Regards,

    Devin

    #122190

    In reply to: Translating search

    Hi,

    Yeh, I also saw that. That is not always there , it appears depending on the length of the word being searched for. Only 30 characters are allowed in this entire line .. and sometimes it gets cut off in middle of character encoded quotes “” as in &quot

    Search results for “Снимок”…

    I would cut the size of this ‘Результаты поиска для’ because that has too many letters, so the actual search term never gets printed. Try it like ‘ ‘Результат для” … or even smaller, since these are useless letters, while the keyword is useful

    Thanks,

    Nick

    [edit] this reproduces it

    http://kriesi.at/themes/enfold/?s=%D0%A1%D0%BD%D0%B8%D0%BC%D0%BE%D0%BA%D0%A1

    #123393

    In reply to: Gallery Fade

    Open up enfold/js/shortcode.js and search for this code around line 205:


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

    change it to:


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

    The gallery thumbs should then load immediately. A fade effect to another color is not possible.

Viewing 30 results - 7,381 through 7,410 (of 7,470 total)