Viewing 30 results - 7,141 through 7,170 (of 7,486 total)
  • Author
    Search Results
  • #169776

    Hey dmaca!

    No, tbh I’m not sure why it doesn’t work. You can try to add a print_r() function to enfold/woocommerce-config/config.php to output the content of the get_post_meta query. Search for

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    and replace it with

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    print_r($active_hover);
    

    to check the return value. If you want to activate it for all products replace

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    with

    
    $active_hover = true;
    

    and it should work even if the post meta value is not set.

    Cheers!
    Peter

    #169251

    Topic: Backend optimization

    in forum Enfold
    soifran
    Participant

    Hi all,

    putting together a new website, i’m starting to have fun with Enfold.

    I’m asking here, after a couple of unsuccessful searches, what could be the best ways to optimize the backend.

    I’m using WP on the same server with other themes (Atahualpa for instance, already pretty heavy), and i can notice quite a large difference, the backend of the one with Enfold is at least twice longer to load when i’m switching between sections of the admin interface.

    using W3TC looks like to be pretty efficient on the frontend, but as I still have a lot of work on the build of the website, I would like to optimize the backend in order to have a better experience.

    thanks for the quality of your work, nice updates and hopefully quick answer.

    temporary url : http://beta.batook.org
    old address still in production : http://batook.org

    #169199

    Hello stephanusdekock!

    Follow these steps:

    1.) Create a page then switch to Advance Layout Builder.

    2.) Insert the Text Block element. Configure the text block then switch to Text or HTML mode.

    3.) Paste the Tableu Software code:

    <script type="text/javascript" src="http://public.tableausoftware.com/javascripts/api/viz_v1.js"></script><div class="tableauPlaceholder" style="width:654px; height:855px;"><noscript><a href="http://www.tableausoftware.com/public/gallery/making-pay-gap-look-good"><img alt=" " src="http://public.tableausoftware.com/static/images/Me/Medianpay-blog_2/Searchbysalary___/1_rss.png" style="border: none" /></a></noscript><object class="tableauViz" width="654" height="855" style="display:none;"><param name="host_url" value="http%3A%2F%2Fpublic.tableausoftware.com%2F" /><param name="site_root" value="" /><param name="name" value="Medianpay-blog_2/Searchbysalary___" /><param name="tabs" value="yes" /><param name="toolbar" value="yes" /><param name="static_image" value="http://public.tableausoftware.com/static/images/Me/Medianpay-blog_2/Searchbysalary___/1.png" /><param name="animate_transition" value="yes" /><param name="display_static_image" value="yes" /><param name="display_spinner" value="yes" /><param name="display_overlay" value="yes" /><param name="display_count" value="yes" /></object></div><div style="width:654px;height:22px;padding:0px 10px 0px 0px;color:black;font:normal 8pt verdana,helvetica,arial,sans-serif;"><div style="float:right; padding-right:8px;"><a href="http://www.tableausoftware.com/public/about-tableau-products?ref=http://public.tableausoftware.com/views/Medianpay-blog_2/Searchbysalary___" target="_blank">Learn About Tableau</a></div></div>

    This is what I have on my end:

    Best regards,
    Ismael

    #169169

    Hi DavidMiles!

    I don’t see it on Enfold 2.3. What browser and OS are you testing it with?

    Best regards,
    Ismael

    #168982

    Thank you, but not being a PHP programmer, I am at the mercy of the Enfold template and WordPress for the layout. Can you point me in the right direction? Is there some place within WordPress admin to define the layout, as I can on other pages, for the search results page?

    Thank you.

    #168776

    Topic: Info SEO

    in forum Enfold
    macrunner
    Participant

    Hi,

    about the new update (2.3), Kriesi wrote in the Blog:

    SEO Improvements
    Rewriting the icon system was a big task but its not the only thing that happened: We added a big SEO improvement by using more semantic HTML5 markup across the theme, and also added support for schema.org markup which improves the display of search results on google, bing etc.

    Link: http://kriesi.at/archives/enfold-version-2-3-say-hello-to-our-new-iconfont-uploader

    This means that WordPress SEO by Yoast becomes unnecessary? Or maybe if they work together you will get better results?

    Thanks for any clarification.

    #168752

    Hello sethbutler!

    Add this to your functions.php:

    
    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }
    

    Best regards,
    Devin

    #168584

    In reply to: Icons Missing

    This reply has been marked as private.
    #168401

    Hey!

    Please add following code to Quick CSS in Enfold theme options and adjust as desired

    .main_menu { right: 15%; }
    #top #menu-item-search { right: -20%; }

    Cheers!
    Yigit

    #168288
    sethbutler
    Participant

    Hello,

    Do you know the code string in Enfold 2.2 that needs to be edited to include Relevanssi results which was outlined here for the last version update?

    https://kriesi.at/support/topic/instant-search-not-matching-search-results/#post-135415

    Please reference and include both the code that needs to be replaced and the new code!

    Thank You So Much!
    Seth

    #168028

    In reply to: 3 bbpress questions

    Hi stunna42!

    1) In functions-enfold.php replace

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    with

    
    if($breadcrumb && is_bbpress()) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    2) Use following css code:

    
    #top .main_color .bbp-body p{
    color: #333;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
    color: #333;
    }
    

    The first rule will change the text color of the posts and the second rule will change the editor text color.

    3) In functions.php search for

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    

    and replace it with

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    
    if(is_bbpress())
    {
    $avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha',   'sidebar' => 'two alpha', 'meta' => 'two alpha', 'entry' => 'ten alpha');
    }
    

    Now the sidebar uses two units of the 12 units grid (instead of 3) and the content will use 10 units instead of 9.

    Regards,
    Peter

    #167787
    adriankefford
    Participant

    Hi,

    I’ve just purchased the Enfold theme and I’m getting a “template is missing” error / broken theme error under the available themes section in wordpress.

    I’ve copied the Enfold theme folder (the one with style.css in it) into my wp-content\themes\ folder and searched the forum and FAQs on the common broken theme issues.

    Any help?

    Thanks

    #167444

    thanks you Yigit
    1. i try that it didn’t work, i will try again maybe i did something wrong
    2. yep i found it, still no YouTube icon (i read that your working on it)
    3. what plugin to you recommend that looks and act as I mentioned on the example

    I have 2 more question
    1. how can i edit the socket -for example add links, change the Krisi link to different location
    2. HOW CAN I CHANG THE TEXT/COLOR ON THE EASY SLIDER (THE SLIDER as ON Home v7: One Page Portfolio)

    THANKS AGAIN,
    GREAT WORK
    Ido

    PS- I WAS SEARCHING FOR A DETAILS STEP BY STEP GUIDE TO TRANSFER MY SITE FROM ONE DOMAIN NAME TO ANOTHER, THE HOST STAY THE SAME
    I CANT SEEM TO FIND ONE THAT IS EASY TO UNDERSTAND AND FOLLOW

    #167442

    In reply to: Enfold Menu Bugs

    Hi there, just noticed another issue. The icon for the search in Safari browser isn’t showing

    Thanks

    #167426

    Topic: Lightbox and Logo

    in forum Enfold
    homemadebyx
    Participant

    2 Questions,

    1) Where’s the lightbox in Enfold?

    I’ve done a bit of searching and it seems that it’s related to WooCommerce. I’m not using Woo, is there a lightbox for other uses?

    2) Using the small fixed header, when the header shrinks and fixes itself to the top, how can i switch the logo image?

    #166946

    In reply to: Styling/Position Help

    Hey optizign13!

    1) Please add following code to Quick CSS

    #header_meta { display: none; }

    2) As Kriesi mentioned here https://kriesi.at/support/topic/enfold-feature-requests/#post-22197 “Method of adding custom icon fonts to the template builder (which allows you to add custom icons like youtube, xing etc)” feature was accepted and will be added in upcoming versions.

    3) Can you post a screenshot and show where exactly you want to make transparent?

    4)

    #top #menu-item-search { display: none; }

    5)

    #socket .sub_menu_socket { margin-right: 335px; }

    Best regards,
    Yigit

    #166588

    Hey!

    Kriesi added these two lines to avoid “content flashes” which can occur with older versions of Chrome – see: https://kriesi.at/support/topic/retina-images-and-fonts-in-portfolio-grid-theme-enfold/#post-164007

    If you want to remove them open up /wp-content/themes/enfold/css/layout.css and search for

    
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    

    – then delete both lines.

    Best regards,
    Peter

    #166549

    Request: replace the font icons with images

    Hi,
    i have been searching around quite a bit, but did not find an idea so far:
    Is there any way to replace the font icons in three specific icon boxes with three individual images?

    Thanks for your help!

    Cheers, Sebastian.

    #166537

    In reply to: wpml not find rows

    Hey!

    The text string you marked in the screenshot can be found in: /wp-content/themes/enfold/config-wpml/config.php – search for

    
    			    $output .= "<li><span class='avia_cur_lang_edit'>Editing:</span><span class='avia_cur_lang'><img title='".$languages[ICL_LANGUAGE_CODE]['native_name']."' alt='".$languages[ICL_LANGUAGE_CODE]['native_name']."' src='".$languages[ICL_LANGUAGE_CODE]['country_flag_url']."' />";
    			    $output .= ICL_LANGUAGE_NAME_EN." (Change)</span>";
    

    Replace “Editing” and “Change” with your custom text. We’ll make it translatable in the next version.

    Best regards,
    Peter

    #166445

    Hello bizzappsconsult!

    1.) WPML is the only configured plugin that you can use for Enfold. Yes, you can use qTranslate but we can’t assure that the plugin is compatible with the theme.

    2.) What do you mean delete all pages? The search field will search all of the created pages, post, portfolio items, products that you created inside the wp admin dashboard.

    Cheers!
    Ismael

    #166259
    hasinam
    Participant

    Hi,

    I know this may seem very simple, but I’m unable to add enfold google maps in my widget area for my page. Only the map title comes.

    Tried to search other posts but haven’t succeeded.

    My website: test.executivedna.net/wordpress
    Page : Contact Us

    #166057

    In reply to: Translations issues

    Hi wvanderzee!

    If you are using Poedit you can open it and click on Catalog > Update from sources. Or you can change it manually. In your WordPress theme directory please go to Enfold folder and open Search.php file and search for “happy”. Should be on 23rd line

    Cheers!
    Yigit

    #166031

    Topic: Enfold Infographics

    in forum Enfold
    andypeck
    Participant

    Hi there,

    If I had one observation about Enfold, its not the most dynamic theme. For a portfolio theme there’s a definite move to more dynamically presented data and facts. eg. Zooming thumbnails on rollover, slab text animated numbers, icons to drive data facts and so on.

    For instance… http://themeforest.net/item/infographer-multipurpose-infographic-theme/5027304?ref=soland1234

    It is over the top. There’s too much going on but I love some of the spinning slab numbers and a few of the infographics.

    Is there any move towards implementing this kind of stuff in the very near future or can you recommend a JQUERY/PLUGIN that I can try out in the theme. Ive searched everywhere and cant work out where these things are generated from.

    Cheers
    Andy

    #165960

    Hey 4ages!

    If you download the full theme folder/docs/psd package from your downloads on themeforest you’ll get the version.txt file which includes all file changes:

    
    2013 September 18 - Version 2.2
    
    - style.css - new version number
    - css/shortcodes.css - fixed a bug with .avia_start_animation elements causing fixed BG images to shift  
    - css/dynamic.css - adds a few new stylings for the forum  
    - css/bace.css - fixed a bug with firefox and linked images  
    - css/layout.css - added a few styles for various improvements mentioned bellow
    - footer.php - changed arguments of wp nav menu to work better with non-latin languages
    - header - changed arguments of wp nav menu to work better with non-latin languages
    - 404.php - added action that allows you to perform actions like notification to the blog owner if a page is missing
    - functions-enfold.php - removed buggy post nav from forum
    - includes/related-posts.pgp - added additional hooks and config options for different styling possibilities
    - js/avia.js - better detection on when to use the mobile menu
    - js/shortcodes.js - fixed a problem with easyslider, logoslider and content slider in IE 9 + 10
    - archive.php and taxonomy-portfolio_entries.php - added term descriptions
    - includes/admin/register-admin-options.php 
    	- you can now disable the dummy content import button by adding this to functions.php: add_theme_support('avia_disable_dummy_import')
    	- added option to disable search icon in main menu
    
    - folder config-woocommerce:
    	- fixed several small issues
    
    - folder config-templatebuilder:
    	- improved: template builder now works with revisions
    	- improved: portfolio layout if no images are selected
    	- added: missing translation strings for visual editor
    	- fixed: toggle active class bug
    	- added: filter for lightbox size
    	- fixed: content slider typo
    	- fixed: bug in firefox with absolute positioned elements within tables
    
    - folder config-bbpress:
    	- improved: lots of small styling improvements to the forum
    
    - folder framework:
    	- update to the newest version
    	- fixed contact form subject guessing code
    	- improved checkbox display and handling in backend
    	- added filter to default fallback menu to add additional items
    
    -folder lang:
    	- added first version for Danish, Spanish, French, Japanese, Russian, Swedish and Dutch
    

    Best regards,
    Devin

    #165658

    Topic: Problems in IE8

    in forum Enfold
    studioruigrok
    Participant

    Hi,

    Great theme, except I run into a few bugs (?) viewing the site made with the ENFOLD theme in IE8.

    My site is perfect in Google Chrome, but in IE8 it has some trouble showing some of the items on the homepage.
    The site can be viewd here: http://www2.sun-fictorie.nl/.

    The troubles are highlighted in this imageTrouble highlights.

    > The menu items are shown through the logo in IE8.
    > The slider image is not working correctly in IE8.
    > The buttons in theme color are not working correctly in IE8.
    > All the way down on the homepage we have three Icon Boxes on a Color Section custom background image, as you can see, both the icons and the background image are not showing correctly in IE8.
    > The Enfold Google Maps Widget in the footer (third column) is not showing in IE8.
    > Also, the accordion and tabs Content Elements are not working in IE8.

    Is this a bug in the theme or is it something else? I tried searching the support forum but I couldn’t realy find anything similar.
    I don’t know how to fix it and I hope someone here can help.

    Many thanks in advance.

    Kind regards,
    Dave

    #165641

    Hi Devin,

    Sorry about that…forgot to remove “private” while I’m working on the page. Please try again: http://talentdev.valiantlane.com/what-clients-say. On this page I am experimenting with how to display testimonials. At top of page I inserted the theme code for them. Below that are categorized with links in a widget to take people to the top of that category. Instead of going to just before the category so the category title shows, most of the links go to just below it.

    The goal is to make the testimonials searchable…as I am typing I’m thinking maybe what I should do is put them in a portfolio page? what do you think is best approach?

    V.

    #165566

    Please add google custom search in next version

    #165488

    Hi Ismail,

    I’m using Enfold. Actually, I mentioned it at the start of my question. Enfold is a great theme and this is the second site I’m building with it.

    Please note I’m OK with html and css, but know very little about php. Can you explain in more detail how I would follow your instruction to “use this code on your header.php.” I assume I would edit the header.php file, but would I insert a new line, and, if so, where in the file?

    Thanks,

    John

    #165283
    jbiasucci
    Participant

    I’m using the Enfold them, and have sidebars on all my pages other then my front page, which is a custom home page. I have the search widget in the sidebar, which generates a nice large search box on all the pages other than the front page, for which I don’t want to put a sidebar. But I can’t seem to get the same search box to show up on the front page.

    As a test, I’ve been able to put this search box on an ordinary page, pasting the widget code into a text box on an ordinary page. No problem. But when I try that on the front page, it gets knocked out by the system. I assume there must be some special problem with using that code on a front page.

    Here is the code I’ve successfully used on an ordinary page, but can’t get to stick on the front page:

    <div class=”widget clearfix widget_search” id=”search-2″><form id=”searchform” action=”http://northshoreunitarians.ca/&#8221; method=”get”>
    <div><input class=”button” id=”searchsubmit” type=”submit” value=”

    • This topic was modified 12 years, 5 months ago by jbiasucci.
    #165202

    Hello!

    In WordPress theme directory please go to Enfold folder and open functions-enfold.php file and find following code in line 40

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">'.$avia_config['font_icons']['search'].'';

    and change it to

    $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">Search '.$avia_config['font_icons']['search'].'';

    Best regards,
    Yigit

Viewing 30 results - 7,141 through 7,170 (of 7,486 total)