-
AuthorSearch Results
-
June 25, 2013 at 3:11 pm #126364
In reply to: SEO issue – WIDGET TITLES come with H3
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.phpRegards,
Devin
June 25, 2013 at 11:04 am #126365In reply to: Category filter in WP DAshboard
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
June 25, 2013 at 6:09 am #126380In reply to: Remove Image Gallery Animation
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');
June 25, 2013 at 5:52 am #123185In reply to: LEFT MENU LISTING PROBLEM
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.
June 23, 2013 at 4:51 pm #126048In reply to: Shop in dummy data enfold
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?
June 23, 2013 at 3:23 pm #25243Topic: Responsive Nav not right on iPad
in forum EnfoldLAHWebDesigns
ParticipantWhen 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?
June 22, 2013 at 10:48 pm #125487In reply to: Repositioning Breadcrumbs and Page Title?
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 17archive.php
line 25forum.php
line 31index.php
line 32page.php
line 16search.php
line 17single-portfolio.php
line 16single.php
line 28taxonomy-portfolio-entries.php
line 16template-archives.php
line 22template-builder.php
line 33config-woocommerce/config.php
line 528Thanks,
Nick
June 21, 2013 at 5:47 am #125404In reply to: Changing blog name ONLY in breadcrumbs of ENFOLD
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”.
June 21, 2013 at 5:34 am #125618In reply to: Long menu disappears on resize
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
June 20, 2013 at 6:15 am #125330In reply to: LayerSlider – Layer Allignment
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.
June 19, 2013 at 4:49 pm #124505Hi,
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">£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="search" method="get" id="searchform" action="http://localhost/kriesi/enfold/" >
<div><label class="screen-reader-text" for="s">Search for:</label>
<input type="text" value="" name="s" id="s" />
<input type="submit" id="searchsubmit" value="Search" />
</div>
</form>" style="height: 88px; line-height: 88px;">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>June 18, 2013 at 11:52 pm #25009Topic: Category Posts in Custom Menu
in forum Enfoldnavin1976
ParticipantHello 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
June 18, 2013 at 5:54 am #125285In reply to: Enfold – Overlay on simple slider
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
June 18, 2013 at 4:39 am #116623In reply to: Gallery images faded until scroll
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
June 18, 2013 at 4:30 am #24937Topic: Changing The Search Function To a Back End????
in forum Enfoldmdlhale
ParticipantHi! 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:
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!!
June 17, 2013 at 6:08 am #125164In reply to: member login in menu bar area
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.
June 15, 2013 at 1:01 pm #120891In reply to: IconBox does not appear in Opera.
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
June 15, 2013 at 6:36 am #124708In 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).
June 13, 2013 at 7:10 am #123231In reply to: Simple Advice on Structuring The Blog
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.
June 13, 2013 at 5:43 am #124298In reply to: 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.
June 13, 2013 at 5:31 am #1242001) 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';June 12, 2013 at 7:36 am #123712In reply to: Table Layout / setting / styling
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
June 12, 2013 at 5:33 am #24638Topic: Unable to get Permalinks to work other than default.
in forum Enfoldleedonpark1975
ParticipantHi, 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.
June 10, 2013 at 6:03 am #123512In 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
June 9, 2013 at 8:47 am #123600In reply to: Installed ver 1.6 language en footer problems
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.
June 7, 2013 at 9:37 pm #122504In reply to: Can we move or expand the Search Bar?
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
June 7, 2013 at 11:35 am #123434In reply to: Portfolio Excerpts not showing up
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
June 7, 2013 at 8:24 am #122190In 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 "
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
June 7, 2013 at 7:04 am #123393In 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.
-
AuthorSearch Results
-
Search Results
-
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?
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
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:
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!!
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.
