Viewing 30 results - 6,091 through 6,120 (of 7,495 total)
  • Author
    Search Results
  • #334932

    In reply to: Highlight Menu Items

    Hey ecoresearch!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    li#menu-item-3194 .avia-menu-text {
    padding: 5px;
    background-color: red;
    border-radius: 5px;
    }

    You can right click on Chrome or Firefox to inspect elements to find menu item ID’s http://i.imgur.com/HyPTCRg.jpg
    It is a lot easier to highlight a menu item on Enfold 3.0.1

    Best regards,
    Yigit

    #334720

    In reply to: Portfolio

    Hi!

    Glad it is working now.

    You can create Portfolio Items for your photos then use the Masonry element or Portfolio Grid element.In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Regards,
    Ismael

    #334533

    Yeaaaahhhh ! What a relief… After hours of web investigation… I found some pieces of answers like the “text-rendering” css which I had never heard of… From there I searched again in the Enfold support forum and found a magic post from Dude #307770. I tried it (part of it) and it is magical ! The type looks very clean now, on mac and both Safari Firefox and Chrome. Nothing to do with how it was before ! For example in firefox I had also a very different rendering between body text and layer slider text (which was terrible)… Well now I hope I’m not talking too fast and that the rendering is going to stay this way… You guys should add this by default in the theme !! Anyway, if ever someone is going crazy like me, here is the code I put in my child theme css file.

    Also could someone in the support team tell me if the rendering is similar on Windows browsers ? I would appreciate.

    Thank you ! And thank you Dude if ever you read this post ;)
    Regards,
    Marie

    /* Font rendering */
    body #wrap_all{
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
    #334323

    Hi!

    In Enfold theme options under Header settings->Extra Elements, make sure the checkbox “Append Search Icon to menu” is selected

    Regards,
    Arvish

    #334259
    oliviad
    Participant

    Hi,

    I would need to add some animated progress pie chart icon, I do you think I can add this plugin

    http://codecanyon.net/item/vision-wordpress-shortcodes-plugin/3372371?WT.ac=search_item&WT.oss_phrase=icon%20progress%20bars&WT.oss_rank=3&WT.z_author=TrueThemes

    and it will work?

    Thank you very much for your valuable help !

    Thanks

    Olivia

    PS : I have tried another very popular theme but Enfold always comes back as the best, more solid, reliable theme….

    #334245

    Hi schoolsict!

    Thank you for using Enfold.

    You give us a link to the overview page. Which page are you referring to? In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Cheers!
    Ismael

    #333354
    schoolsict
    Participant

    Hi

    One of the attractions for me to Enfold was the ability to do use buttons that included numbers of posts and linked to categories like http://kriesi.at/theme-overview. I assume that this is a portfolio but despite searching documentation and forums I cannot find any help to show me how this is done. Can someone point me in the right direction or tell me how this effect can be achieved?

    Many thanks

    Jeremy

    #333099
    OlivierCharlot
    Participant

    Hello,
    I have noticed that the SEO Platinum pack (properly activated and with main meta tags fille dout) is not taken into account in any Google search. Titles are not used for page tabs´titles either.
    Any clue of what could happen, or any fix for this?

    Best regards,
    Olivier.

    Hey!

    Please go to Enfold > Header > Extra Elements panel. Enable the Append search icon to main menu.

    Best regards,
    Ismael

    #332940

    Hey LSpicer!

    Thank you for using Enfold.

    Add a custom link on Appearance > Menus. Add the search or input code as Navigation Label.

    Cheers!
    Ismael

    #332779

    In aditions to this latest version of Enfold doing the above, it also has some other consequences.

    There is a common code snippet that ‘Event Calendar Pro’ users have been using which allows one to Change all instances of ‘Events’ to ‘Something’. i.e. We have changed every occurrence of “Event/s” to “Class/Classes”.
    The snippet is here;

    // This example replaces "Event" with "Meeting" in all Tribe Plugins text
    // See the codex to learn more about WP text domains:
    // http://codex.wordpress.org/Translating_WordPress#Localization_Technology
    // Example Tribe domains: 'tribe-events-calendar', 'tribe-events-calendar-pro'...
    
    add_filter('gettext', 'theme_filter_text', 10, 3);
    
    function theme_filter_text( $translations, $text, $domain ) {
        // If this text domain starts with "tribe-"
        if(strpos($domain, 'tribe-') === 0) {
                // Replace upper case, lower case, singular, and plural
                $text = str_replace(
                        // Text to search for
                        array('Event', 'event', 'Events', 'events'),
    
                        // Text to replace it with -- change this for your needs
                        array('Meeting', 'meeting', 'Meetings', 'meetings'),
                        $text
                );
    
        }
    
    	return $text;
    }
    
    add_filter('ngettext', 'theme_filter_ntext', 10, 5);
    
    function theme_filter_ntext( $translation, $single, $plural, $number, $domain ) {
    	// If this text domain starts with "tribe-"
        if(strpos($domain, 'tribe-') === 0) {
        	// Replace upper case, lower case, singular, and plural
        	if( $number > 1 ) {
                $plural = str_replace(
                        // Text to search for
                        array('Events', 'events'),
    
                        // Text to replace it with -- change this for your needs
                        array('Meetings', 'meetings'),
                        $plural
                );
    
                return $plural;
            } else {
            	 $single = str_replace(
                        // Text to search for
                        array('Event', 'event'),
    
                        // Text to replace it with -- change this for your needs
                        array('Meeting', 'meeting'),
                        $single
                );
    
            	 return $single;
            }
        }
    }

    But when applied to and the latest Kriesi Enfold theme is active it has a strange side effect that renders the WP-backend dysfunctional.

    While solving the problem of replacing the “event/s” instances with another word, it also seems to remove the Published | Drafts | Deleted tabs from the pages, posts, event overview pages in the WP backend.

    Again, this does not effect standard WP theme, nor did it effect earlier versions of Enfold.

    I have tried applying the following code that Devin mentioned above and still experience the same issue.

    require_once( 'config-events-calendar/config.php' );

    This is making wordpress unusable.

    #332738
    debenm
    Participant

    In the latest update Enfold has added a 1px vertical line between the search icon and the social icons on our site. How can I get rid of it?

    #332587
    wafflecone
    Participant

    The Issue:

    Using the Enfold theme, I have an IFrame positioned about halfway down my sales page which I have inserted via the Code Block Content Element. When I load the page on my mobile device, Enfold automatically scrolls down to the location of the IFrame. I have confirmed that the IFrame is the cause by eliminating the IFrame from the page and reloading. When I do this, the page loads as expected with the headline at the top.

    What I’ve done:

    Aside from removing the IFrame to determine that it was the cause, I’ve checked the source code of the IFrame itself to see if there was anything that might be triggering the behavior. Nothing was immediately apparent but something is causing Enfold to behave in this way.

    What I need:

    I need the sales page to load as normal, with the headline at the top. I don’t want the page to auto scroll to the location of the IFrame.

    I’ve included that source below. Thanks for any help you can provide.

    <!DOCTYPE html>
    <!-- saved from url=(0013)about:internet -->
    <html>
        <head><meta content='IE=Edge' http-equiv='X-UA-Compatible'>
        <meta http-equiv='Content-Type' content='text/html;charset=UTF-8' />
        <meta name='GENERATOR' content='SpreadsheetConverter  version 7.8.6078.0)' />
    <!-- The parts of this webpage that is defined by the original spreadsheet have the same copyright as the original spreadsheet. -->
    <!-- The generic Excel-related parts of this page is Copyright © 2002-2013 Framtidsforum I&M AB, Sweden. -->
        <title>Invisalign Calculator</title>
        <link rel="stylesheet" href="assets/app.min.css" />
        <script type="text/javascript" src="assets/app.min.js"></script>
        <script type="text/javascript">
            $(function(){
                var calendar_dateFormats = {};
                var defaultDateFmt = 'm/d/yy';
                postcode();
                var tabWiz = $('#tab').tabs();
                var focusCtrl=$('input:not(":hidden,:button,[readonly=readonly],:disabled"),select,a.ui-slider-handle,textarea,a.ui-state-active');
    			                <!-- to prevent popup dialog to appear in page load.-->
    			                if(focusCtrl!= undefined && focusCtrl.filter(':first').hasClass('hasDatepicker')==false){
    				                focusCtrl.filter(':first').focus();
    			                }
            });
        </script>
        <link rel='stylesheet' type='text/css' href='' media='print' id='printallcss' />
        </head>
        <body onload='LoadFromQueryString();GetCookies();recalc_onclick("");' onunload='SetCookies();'>
            <noscript style='color:#F15623;'>
                The webpage is not working since JavaScript is not enabled. 
                Most likely, you are viewing using Dropbox website or another limited browser environment.
            </noscript>
    
            <form id='formc' name='formc' method='post' action='' target='_top'>
    		    <input type='hidden' id='xl_spreadsheet' name='xl_spreadsheet' value='Invisalign Calculator' />
                <input type='hidden' id='xl_client' name='xl_client' value='x7.8.6078.0' />
    			<div id='tab'>
                     <div id='sheet-1' style='padding: 1em 1.4em;'>
                        <table width= '817' cellspacing='0' cellpadding='0' style='border-spacing:0;' onkeydown='javascript:navigate(event);'>
    					<col width='162'/>
    					<col width='11'/>
    					<col width='113'/>
    					<col width='11'/>
    					<col width='520'/>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Cost of
      Treatment
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$price' style='border:0;padding:0;'>
    							    <select name='price' id='price' class='ee108' style=' width:100% ' tabindex='1' onchange="recalc_onclick('price')" size='1' data-sheet='1' data-row='1' data-col='3'>
    									<option  data-value='n:0' selected > $            -   </option>
    									<option  data-value='n:2500' > $  2,500</option>
    									<option  data-value='n:3000' > $  3,000</option>
    									<option  data-value='n:3500' > $  3,500</option>
    									<option  data-value='n:4000' > $  4,000</option>
    									<option  data-value='n:4500' > $  4,500</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '5'>
    							Most
      Invisalign® cases will cost between $2,500 and $4,500
    						</td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Insurance Coverage
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$insurance' style='border:0;padding:0;'>
    							    <select name='insurance' id='insurance' class='ee108' style=' width:100% ' tabindex='2' onchange="recalc_onclick('insurance')" size='1' data-sheet='1' data-row='3' data-col='3'>
    									<option  data-value='n:0' selected > $            -   </option>
    									<option  data-value='n:500' > $      500</option>
    									<option  data-value='n:1000' > $  1,000</option>
    									<option  data-value='n:1500' > $  1,500</option>
    									<option  data-value='n:2000' > $  2,000</option>
    									<option  data-value='n:2500' > $  2,500</option>
    									<option  data-value='n:3000' > $  3,000</option>
    									<option  data-value='n:3500' > $  3,500</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '5'>
    							Some
      insurance providers offer coverage up to $3,500
    						</td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							FSA Contribution
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$fsa' style='border:0;padding:0;'>
    							    <select name='fsa' id='fsa' class='ee108' style=' width:100% ' tabindex='3' onchange="recalc_onclick('fsa')" size='1' data-sheet='1' data-row='5' data-col='3'>
    									<option  data-value='n:0' selected > $            -   </option>
    									<option  data-value='n:500' > $      500</option>
    									<option  data-value='n:1000' > $  1,000</option>
    									<option  data-value='n:1500' > $  1,500</option>
    									<option  data-value='n:2000' > $  2,000</option>
    									<option  data-value='n:2500' > $  2,500</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '5'>
    							With
      a Flexible Spending Account (FSA), you can put up to $2,500 towards treatment
    						</td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Your Down Payment
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$down' style='border:0;padding:0;'>
    							    <select name='down' id='down' class='ee108' style=' width:100% ' tabindex='4' onchange="recalc_onclick('down')" size='1' data-sheet='1' data-row='7' data-col='3'>
    									<option  data-value='n:0' selected > $            -   </option>
    									<option  data-value='n:250' > $      250</option>
    									<option  data-value='n:500' > $      500</option>
    									<option  data-value='n:1000' > $  1,000</option>
    									<option  data-value='n:1500' > $  1,500</option>
    									<option  data-value='n:2000' > $  2,000</option>
    									<option  data-value='n:2500' > $  2,500</option>
    									<option  data-value='n:3000' > $  3,000</option>
    									<option  data-value='n:3500' > $  3,500</option>
    									<option  data-value='n:4000' > $  4,000</option>
    									<option  data-value='n:4500' > $  4,500</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '5'>
    							Making
      a down payment can reduce your montly costs
    						</td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Your Total Out of Pocket
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee121' style='height:13pt;'>
    						<input id='XLEW_1_9_3' type='text' readonly='readonly' value='-' class='ee121' style='overflow:hidden; border:0px solid #000000; width:100% ' name='XLEW_1_9_3' tabindex='-1' />
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee123' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee124' style='height:13pt;' colspan = '5'>
    							Complete
      the fields below to estimate your monthly payment if you are financing your
      treatment.
    						</td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee123' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Monthly Payment
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee126' style='height:13pt;'>
    						<input id='XLEW_1_13_3' type='text' readonly='readonly' value='-' class='ee126' style='overflow:hidden; border:0px solid #000000; width:100% ' name='XLEW_1_13_3' tabindex='-1' />
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '2'>
    							Estimated
      monthly payment
    						</td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Payment Periods
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$Period' style='border:0;padding:0;'>
    							    <select name='Period' id='Period' class='ee108' style=' width:100% ' tabindex='5' onchange="recalc_onclick('Period')" size='1' data-sheet='1' data-row='15' data-col='3'>
    									<option  data-value='n:12' selected >12</option>
    									<option  data-value='n:18' >18</option>
    									<option  data-value='n:24' >24</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '3'>
    							Choose
      between 12, 18 or 24 month financing
    						</td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee109' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee100' style='height:13pt;'>
    							Est. Interest Rate
    						</td>
    						<td class='ee123' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee106' style='height:13pt;'>
    
    						    <fieldset id='FS1$interest' style='border:0;padding:0;'>
    							    <select name='interest' id='interest' class='ee108' style=' width:100% ' tabindex='6' onchange="recalc_onclick('interest')" size='1' data-sheet='1' data-row='17' data-col='3'>
    									<option  data-value='s:.00' selected >.00</option>
    									<option  data-value='s:.01' >.01</option>
    									<option  data-value='s:.02' >.02</option>
    									<option  data-value='s:.03' >.03</option>
    									<option  data-value='s:.04' >.04</option>
    									<option  data-value='s:.05' >.05</option>
    									<option  data-value='s:.06' >.06</option>
    									<option  data-value='s:.07' >.07</option>
    									<option  data-value='s:.08' >.08</option>
    									<option  data-value='s:.09' >.09</option>
    									<option  data-value='s:.10' >.10</option>
    							    </select>
    						    </fieldset>
    						</td>
    						<td class='ee123' style='height:13pt;'><div style='overflow:hidden'></div></td>
    						<td class='ee103' style='height:13pt;'><div style='overflow:hidden'></div></td>
                        </tr>
                        <tr style='height:13pt'>
    						<td class='ee109' style='height:13pt;' colspan = '5'>
    							Choose
      your estimated interest rate (0% financing is available)
    						</td>
                        </tr>
                    </table>
                    </div>
                </div>
            </form>
    
    	     </body>
        <script type="text/javascript">
    var co = new Object;
    function recalc_onclick(ctl) {
      if (true) {
    
    co['price']=eegetdropdownvalue(document.getElementsByName('price'));co['insurance']=eegetdropdownvalue(document.getElementsByName('insurance'));co['fsa']=eegetdropdownvalue(document.getElementsByName('fsa'));co['down']=eegetdropdownvalue(document.getElementsByName('down'));co['Period']=eegetdropdownvalue(document.getElementsByName('Period'));co['interest']=eegetdropdownvalue(document.getElementsByName('interest'));calc(co);if(typeof ls_ !== 'undefined'){ssc.liveshare.coUpdate(co,ctl);}document.getElementById('XLEW_1_9_3').value=eedatefmt(fmtdate1,co['XLEW_1_9_3']);document.getElementById('XLEW_1_13_3').value=eedatefmt(fmtdate1,co['XLEW_1_13_3']);
    };};
    var arr1xC3C7=new Array(5);for(var ii=0;ii<5;ii++){arr1xC3C7[ii]=new Array(1);for(var jj=0;jj<1;jj++){arr1xC3C7[ii][jj]=0}};var eecm1=new Array(new Array(arr1xC3C7,4,0,4,0),new Array(arr1xC3C7,2,0,2,0),new Array(arr1xC3C7,0,0,0,0));function calc(data){var c1C17=data['interest'];var c1C15=data['Period'];arr1xC3C7[4][0]=data['down'];arr1xC3C7[2][0]=data['fsa'];arr1xC3C7[0][0]=data['insurance'];var c1C1=data['price'];arr1xC3C7[1][0]=(0);arr1xC3C7[3][0]=(0);var c1C9=(((c1C1)-(sumgeneral(3,0,0,eecm1))));var c1C13=(((pmt((v2n(c1C17)),(c1C15),(c1C9),(0),(0)))*(-1)));data['XLEW_1_13_3']=c1C13;data['XLEW_1_9_3']=c1C9;};
    function postcode() {
    };
    function TriggerOnchange(hiddenId)
    {
        var e = jQuery.Event('change');
        $('#'+hiddenId).trigger(e);
    }
    var eeisus=1;var eetrue="TRUE";var eefalse="FALSE";var eedec=".";var eeth=",";var eedecreg=new RegExp("\\.","g");var eethreg=new RegExp(",","g");var eecurrencyreg=new RegExp("[$]","g");var eepercentreg=new RegExp("%","g"); var fmtdaynamesshort=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat"); var fmtdaynameslong=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"); var fmtmonthnamesshort=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"); var fmtmonthnameslong=new Array("January","February","March","April","May","June","July","August","September","October","November","December"); var fmtstrings=new Array("$"); var fmtdate1=[32,25,0];
    function eegetdropdownvalue(ctl) {
                                        var control = $(ctl);
                                        var tag = control.get(0).tagName;
                                        var val;
                                        if (tag == 'INPUT') {
                                            val = $('input[name=' + control.attr('name') + ']:checked').attr('data-value');
                                        } 
                                        else if( tag == 'SELECT'){
                                            val = control.find(':selected').attr('data-value'); /* data-value contains type and value, eg. n:100 (number), b:true (bool), s:ram (string) */
                                        }   
                                        else {
                                            val = control.val();
                                        }
                                        return (val == undefined) ? 0 : eeunpackdropdownvalue(val);
                                    }
    
    function myIsNaN(x){return(isNaN(x)||(typeof x=='number'&&!isFinite(x)));};
    
    function mod(n,d){return n-d*Math.floor(n/d);};
    
    function round(n,nd){if(isFinite(n)&&isFinite(nd)){var sign_n=(n<0)?-1:1;var abs_n=Math.abs(n);var factor=Math.pow(10,nd);return sign_n*Math.round(abs_n*factor)/factor;}else{return NaN;}};
    
    function sum2(arr,rt,rb){var sum=0;for(var ii=rt;ii<=rb;ii++){sum+=arr[ii]};return sum};function sum3(arr,rt,ct,rb,cb){var sum=0;for(var ii=rt;ii<=rb;ii++){for(var jj=ct;jj<=cb;jj++){sum+=arr[ii][jj]}};return sum};
    
    function sumgeneral(cnt,vsum,vcnt,x){var sum=vsum;for(var ii=0;ii<x.length;ii++){sum+=sum3(x[ii][0],x[ii][1],x[ii][2],x[ii][3],x[ii][4]);};return sum;};
    
    function s2n(str){str=String(str).replace(eedecreg,".");str=str.replace(eethreg,"");str=str.replace(eecurrencyreg,"");var res=parseFloat(str);if(myIsNaN(res))res=0;if(str.search(eepercentreg)>=0)res=res/100;return res;}
    
    function v2n(v){switch(typeof v){case "number":return v;case "string":return s2n(v);case "boolean":return v?1:0;case "object":if(v.constructor==Number){return v;};if(v.constructor==String){return s2n(v);};if(v.constructor==Boolean){return v?1:0;};return Number.NaN;default:return Number.NaN;}};
    
    var near0RegExp=new RegExp("[.](.*0000000|.*9999999)");function eedisplayFloat(x){if(myIsNaN(x)){return Number.NaN;}else{var str=String(x);if(near0RegExp.test(str)){x=round(x,8);str=String(x);}return str.replace(/\./g,eedec);}};
    
    function eedisplayScientific(x,nd){if(myIsNaN(x)){return Number.NaN;}else{var str=String(x.toExponential(nd));return str.replace(/\./g,eedec);}};
    
    function eedisplayFloatND(x,nd){if(myIsNaN(x)){return Number.NaN;}else{var res=round(x,nd);if(nd>0){var str=String(res);if(str.indexOf('e')!=-1)return str;if(str.indexOf('E')!=-1)return str;var parts=str.split('.');if(parts.length<2){var decimals=('00000000000000').substring(0,nd);return(parts[0]).toString()+eedec+decimals;}else{var decimals=((parts[1]).toString()+'00000000000000').substring(0,nd);return(parts[0]).toString()+eedec+decimals;}}else{return res;}}};
    
    function eedisplayPercent(x){if(myIsNaN(x)){return Number.NaN;}else{return eedisplayFloat(x*100)+'%';}};
    
    function eedisplayPercentND(x,nd){if(myIsNaN(x)){return Number.NaN;}else{return eedisplayFloatND(x*100,nd)+'%';}}
    
    function eedisplayFloatNDTh(x,nd){if(myIsNaN(x)){return Number.NaN;}else{var res=round(x,nd);if(nd>0){var str=String(res);if(str.indexOf('e')!=-1)return str;if(str.indexOf('E')!=-1)return str;var parts=str.split('.');var res2=eeinsertThousand(parts[0].toString());if(parts.length<2){var decimals=('00000000000000').substring(0,nd);return(res2+eedec+decimals);}else{var decimals=((parts[1]).toString()+'00000000000000').substring(0,nd);return(res2+eedec+decimals);}}else{return(eeinsertThousand(res.toString()));}}};
    
    function eedisplayPercentNDTh(x,nd){if(myIsNaN(x)){return Number.NaN;}else{return eedisplayFloatNDTh(x*100,nd)+'%';}}
    
    function eeinsertThousand(whole){if(whole==""||whole.indexOf("e")>=0){return whole;}else{var minus_sign="";if(whole.charAt(0)=="-"){minus_sign="-";whole=whole.substring(1);};var res="";var str_length=whole.length-1;for(var ii=0;ii<=str_length;ii++){if(ii>0&&ii%3==0){res=eeth+res;};res=whole.charAt(str_length-ii)+res;};return minus_sign+res;}};
    
     function eedatefmt(fmt,x){if(!isFinite(x))return Number.NaN;var padding=0;var tmp=0;var res="";var len=fmt.length;for(var ii=0;ii<len;ii++){if(fmt[ii]>31){res+=fmtstrings[fmt[ii]-32];}else{switch(fmt[ii]){case 2:res+=eemonth(x);break;case 3:tmp=eemonth(x);if(tmp<10){res+="0";};res+=tmp;break;case 4:res+=fmtmonthnamesshort[eemonth(x)-1];break;case 5:res+=fmtmonthnameslong[eemonth(x)-1];break;case 6:res+=eeday(x);break;case 7:tmp=eeday(x);if(tmp<10){res+="0";};res+=tmp;break;case 8:res+=fmtdaynamesshort[weekday(x,1)-1];break;case 9:res+=fmtdaynameslong[weekday(x,1)-1];break;case 10:tmp=year(x)%100;if(tmp<10){res+="0";};res+=tmp;break;case 11:res+=year(x);break;case 12:res+=hour(x);break;case 13:tmp=hour(x);if(tmp<10){res+="0";};res+=tmp;break;case 14:tmp=hour(x)%12;if(tmp==0){res+="12";}else{res+=tmp%12;};break;case 15:tmp=hour(x)%12;if(tmp==0){res+="12";}else{if(tmp<10){res+="0";};res+=tmp;};break;case 16:res+=minute(x);break;case 17:tmp=minute(x);if(tmp<10){res+="0";};res+=tmp;break;case 18:res+=second(x);break;case 19:tmp=second(x);
     if(tmp<10){res+="0";};res+=tmp;break;case 21:case 22:if(hour(x)<12){res+="AM";}else{res+="PM";};break;case 23:res+=eedisplayFloat(x);break;case 24:tmp=fmt[++ii];res+=eedisplayFloatND(x,tmp);break;case 25:tmp=fmt[++ii];res+=eedisplayFloatNDTh(x,tmp);break;case 26:res+=eedisplayPercent(x);break;case 27:tmp=fmt[++ii];res+=eedisplayPercentND(x,tmp);break;case 28:tmp=fmt[++ii];res+=eedisplayPercentNDTh(x,tmp);break;case 29:tmp=fmt[++ii];res+=eedisplayScientific(x,tmp);break;case 30:padding=fmt[++ii];tmp=hour(x)+Math.floor(x)*24;tmp=tmp.toString();if(tmp.length<padding){res+=('00000000000000').substring(0,padding-tmp.length);}res+=tmp;break;};};};return res;};
    
    function eeunpackdropdownvalue(val) {if (val.length<2) return val;var typ = val.substring(0, 2);var data = val.substring(2);if (typ == 'b:') return data.toLowerCase() == 'true';if (typ == 'n:') return parseFloat(data);if (typ == 's:') return data;return val;  };
    
     function leap_gregorian(year){return((year%4)==0)&&(!(((year%100)==0)&&((year%400)!=0)));}var GREGORIAN_EPOCH=1721425;function gregorian_to_jd(year,month,day){return(GREGORIAN_EPOCH-0)+(365*(year-1))+Math.floor((year-1)/4)+(-Math.floor((year-1)/100))+Math.floor((year-1)/400)+Math.floor((((367*month)-362)/12)+((month<=2)?0:(leap_gregorian(year)?-1:-2))+day);}function jd_to_gregorian(jd){var wjd,depoch,quadricent,dqc,cent,dcent,quad,dquad,yindex,year,yearday,leapadj;wjd=Math.floor(jd);depoch=wjd-GREGORIAN_EPOCH-1;quadricent=Math.floor(depoch/146097);dqc=mod(depoch,146097);cent=Math.floor(dqc/36524);dcent=mod(dqc,36524);quad=Math.floor(dcent/1461);dquad=mod(dcent,1461);yindex=Math.floor(dquad/365);year=(quadricent*400)+(cent*100)+(quad*4)+yindex;if(!((cent==4)||(yindex==4))){year++;}yearday=wjd-gregorian_to_jd(year,1,1);leapadj=((wjd<gregorian_to_jd(year,3,1))?0:(leap_gregorian(year)?1:2));var month=Math.floor((((yearday+leapadj)*12)+373)/367);var day=(wjd-gregorian_to_jd(year,month,1))+1;
     return new Array(year,month,day);}
    
    function eeday(serial_number){if(!isFinite(serial_number))return Number.NaN;if(serial_number<1){return 0;}if(serial_number>60)serial_number--;var res=jd_to_gregorian(serial_number+2415020);return res[2];};
    
    function hour(serial_number){if(!isFinite(serial_number))return Number.NaN;var res=Math.floor((serial_number-Math.floor(serial_number))*86400+0.5);return Math.floor(res/3600);}
    
    function minute(serial_number){if(!isFinite(serial_number))return Number.NaN;var res=Math.floor((serial_number-Math.floor(serial_number))*86400+0.5);return Math.floor(res/60)%60;};
    
    function eemonth(serial_number){if(!isFinite(serial_number))return Number.NaN;if(serial_number<1){return 1;}if(serial_number>60)serial_number--;var res=jd_to_gregorian(serial_number+2415020);return res[1];};
    
    function second(serial_number){if(!isFinite(serial_number))return Number.NaN;var res=Math.floor((serial_number-Math.floor(serial_number))*86400+0.5);return res%60;};
    
     function weekday(serial_number,return_type){if(!isFinite(return_type)||!isFinite(serial_number))return Number.NaN;if(return_type<1||return_type>3)return Number.NaN;var res=Math.floor(serial_number+6)%7;switch(Math.floor(return_type)){case 1:return res+1;case 2:return(res+6)%7+1;case 3:return(res+6)%7;};return "hej";};
    
    function year(serial_number){if(!isFinite(serial_number))return Number.NaN;if(serial_number<1){return 1900;}if(serial_number>60)serial_number--;var res=jd_to_gregorian(serial_number+2415020);return res[0];};
    
     function pmt(rate,nper,pv,fv,type){if(rate==0){return-pv/nper;}else{var pvif=Math.pow(1+rate,nper);var fvifa=(Math.pow(1+rate,nper)-1)/rate;var type1=(type!=0)?1:0;return((-pv*pvif-fv)/((1+rate*type1)*fvifa));}};
    function eequerystring(){
        var variable,key,value,ii,querystring,variables;querystring=document.location.search;
        if(querystring.length>0){
            variables=querystring.substring(1).split('&');
            for(ii=0;ii<variables.length;ii++){
                variable=variables[ii].split('=');
                key=unescape(variable[0])
                value=unescape(variable[1]);
                if(document.formc[key]!=null)
                    document.formc[key].value=value;
            }
        }
    }
          function LoadFromQueryString(){
        eequerystring();
            };
    function navigate(e){var t=e.keyCode|e.which;if(t!=13&&t!=40&&t!=38)return;var n=$(e.target||e.srcElement);if(n.is("textarea"))return;if(n.is("select")&&(t==38||t==40))return;var r=parseInt(n.attr("data-sheet"),10);var i=parseInt(n.attr("data-row"),10);var s=parseInt(n.attr("data-col"),10);var o=false;var u=$("#sheet-"+r+"");var a='input:not(":hidden,:button,[readonly=readonly],:disabled"),select,a.ui-slider-handle,textarea';var f=i+1;var l=i-1;var c=f;var h=l;while(t==40&&f<=c||t==38&&l>=h){var p=u.find(a).filter("[data-sheet="+r+"][data-row="+(t==38?l:f)+"][data-col="+s+"]");if(p.length>0){p.focus();if(p.is("input:text, textarea"))p.select();o=true;break}else{var d;if(u.data("col"+s)==undefined){d=u.find(a).filter("[data-sheet="+r+"][data-col="+s+"]").map(function(){return parseInt($(this).attr("data-row"),10)}).toArray();u.data("col"+s,d)}else{d=u.data("col"+s)}c=d[d.length-1];h=d[0];var v="indexOf"in Array.prototype?d.indexOf(i):$.inArray(i,d);if(t==40&&i<c){f=d[v+1]}else if(t==38&&i>h){l=d[v-1]}else{break}}}if(!o){var m;if(t==38)m=parseInt(n.attr("tabindex"),10)-1;else m=parseInt(n.attr("tabindex"),10)+1;var g=u.find(a).filter("[data-sheet][data-row][data-col][tabindex="+m+"]");if(g.length>0){if(g.is(":radio"))g=g.filter(":checked");if(g.length>0){g.focus();if(g.is("input:text, textarea"))g.select()}}else{var y=u.find(a).filter("[data-sheet][data-row][data-col][tabindex]:first");y.focus();if(y.is("input:text, textarea"))y.select()}}e.preventDefault?e.preventDefault():e.returnValue=false}
    var ssccf1n = function(op,id,css,data1){	
    	                switch(op)
    	                {
                            						case 'image':                               
                                $('#' + id).attr('src',$('#'+data1).attr('src'));
                            break;
          		
    	                }
                    }; 
                    var ssccf4n = function(op,id,colors,data1,data2,data3,data4){
                        switch(op)
                        {
                               
                        }
                    };
    
      </script>
    </html>
    
    #332574
    #332573

    OK for those having the same issues, here’s what i found – i had searched numerous threads on this subject, and each one had a different “fix” – none of which worked for me. but i did find one thread that provided a clue – mentioning that each megamenu has its “own name” based on the configuration you set up for your own site.

    so using firebug, i found the code for “my” megamenu installations, and inserted this code into Custom CSS in the Enfold control panel:

    .avia_mega_div.avia_mega5.twelve.units {
    right: -1360px !important;
    }

    and it seems to work – on Mac Firefox, Chrome and less so on Safari. But at least they are all more or less centered now, as drop-downs.

    I hope this is helpful. If any Kriesi team members can help further explain what’s happening, that would be great for those who come later for help on this thread.

    #332448

    Hi carmen!

    Please go to Enfold/includes folder and edit Loop-search.php file

    Best regards,
    Yigit

    #331655
    #331628

    Topic: Video In Lightbox

    in forum Enfold
    sundialstudios
    Participant

    Hi guys,

    I’m sorry if this is a stupid question, but is it possible to make a video play in a lightbox in Enfold? I searched this forum and found one technique that looks like it was for an older version of Enfold.

    Thanks,
    John

    #331395

    Hey Scott!

    I could note some things:

    • You’d need to re-do the Features page
    • The search in the header is different in Enfold.
    • The phone info info in the header is also different in Enfold.
    • There is no slogan option in Enfold, perhaps you could include it in the logo image

    Regards,
    Josue

    #331222
    djshortkut
    Participant

    1. After updating to Enfold 3.0 my custom text in the top bar (on the right) is positioned too far to the right (License# 943561, C-53, C-8) and gets cut off on the iPad. Can you provide me with some Quick CSS to move the text over to the left more so the end of the text lines up with the search icon? It used to be like that until I updated.

    2. On the iPhone the top bar height also increased. How do I reduce the height for mobile devices?

    #330933

    Hi heufti65!

    Please use this plugin to translate missing strings – https://wordpress.org/plugins/codestyling-localization/
    After installing the plugin please go to Tools > Localization > Themes > Enfold > choose your language and Rescan theme files before editing them. Make sure to check “non-case sensitive” while searching the string

    Cheers!
    Yigit

    #330501
    EvoSteffan
    Participant

    Dear support,

    I would like to show stars at my blogposts in Google search. I would like to achieve this by giving users the option to rate my blogposts. Does Enfold has support for this? Or is it better to use the following plugin: https://wordpress.org/plugins/all-in-one-schemaorg-rich-snippets/installation/

    Thanks in advance and friendly regards,

    Steffan Amende

    #330047

    In reply to: Baseline logo

    Hey!

    Thank you for the info. Please give us admin rights. What do you mean by BO > Appearance > customized ? You can only modify the logo on Enfold > Theme Options > Header > Header Layout panel.

    In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Cheers!
    Ismael

    #330019

    Hi!

    Once you set the Blog Style to “Use the advance layout builder” option, you’ll be able to edit the blog page using the Advance Layout Builder. Set the blog style then edit the page. Add the Blog Posts element, because… blog page should have at least “blog posts” in it I guess. You can then add additional elements such as sliders, buttons etc. You can also use the Masonry element to showcase your posts. It will not affect the single posts pages. For that, you can toggle Enfold > Blog Layout > Single Post Style.

    In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Regards,
    Ismael

    #329804

    Ubermenu 3 (Chris Mavricos) came through for us with a solution to continue use of the Enfold Ajax Search with preview results. See the Sevenspark.com URL above for the complete details. You may close this ticket. I’m sure others will benefit from this solution using Enfold (2.9.2) and Ubermenu (3).

    #329784

    I’m having the same issue. My site is FaithFamilyLifeAndOtherThings.org

    Here’s what I know/or think I’ve discovered done to fix but am not getting the right result.

    1. I have the WordPress Jetpack plugin. I deactivated the mobile theme option. Still seeing codes on mobile device. My Android LG2 phone and my LG3Tablet.
    2. I’ve searched for a mobile activate tab within enfold. Only find within my page builder that I can choose two layouts for mobile theme: Default or My Home Page. For each page it looks like I have to choose but doing so doesn’t fix my problem.

    Side Note: The Jetpack offers some functionality to me that Enfold or WP.org dashboard doesn’t such as giving my readers an option to follow my blog or subscribe. I’m not a coder. Have no idea how to incorporate this functionality without the jetpack plugin.

    Please help. I’m close to launching this site but must first fix this issue. I tried to attach a screen shot but couldn’t figure out how.

    Thank you.
    Dori Price

    #329544

    Hi!

    Thank you for visiting Kriesi’s support forum! In case you have questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you still have any questions, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
    Thanks!

    Best regards,
    Ismael

    #329269
    welswebmaster
    Participant

    Hi – We recently upgraded Ubermenu to version 3. We were using the Enfold Ajax preview search as a menu item with an input box to see a quick preview of search results.
    We followed this set of instructions to make it happen:
    http://sevenspark.com/support/topic/ubermenu-3-and-using-the-enfold-search-instead#post-29316
    I’ve reached out to Ubermenu as you can see and removed the code in the functions.php. I’m unable to proceed with the old instructions of “disable the Reset Div & Span Styling option in the UberMenu Control Panel > Theme Integration.” because that’s no longer an option.

    Is there a way for me to use the Enfold Ajax search as a shortcode or widget on the Ubermenu? Or – any other ideas of how to make this happen?
    Thanks for your help.

    #328786

    In reply to: Google "Immobilier"

    Hey SPOONIX!

    Thank you for using Enfold.

    I’m sorry but we don’t provide support for third party scripts. However, you can edit header.php or try adding this on functions.php to place the script inside the head tag:

    function googleimo_code() { ?>
    <script src="https://www.google.com/jsapi"
            type="text/javascript"></script>
        <script language="Javascript" type="text/javascript">
        //<!
        google.load('search', '1');
     
        function OnLoad() {
          // Create a search control
          var searchControl = new google.search.SearchControl();
     
          // Add in a full set of searchers
          var localSearch = new google.search.LocalSearch();
          searchControl.addSearcher(localSearch);
          searchControl.addSearcher(new google.search.WebSearch());
          searchControl.addSearcher(new google.search.VideoSearch());
          searchControl.addSearcher(new google.search.BlogSearch());
          searchControl.addSearcher(new google.search.NewsSearch());
          searchControl.addSearcher(new google.search.ImageSearch());
          searchControl.addSearcher(new google.search.BookSearch());
          searchControl.addSearcher(new google.search.PatentSearch());
     
          // Set the Local Search center point
          localSearch.setCenterPoint("New York, NY");
     
          // tell the searcher to draw itself and tell it where to attach
          searchControl.draw(document.getElementById("searchcontrol"));
     
          // execute an inital search
          searchControl.execute("IMMOBILIER");
        }
        google.setOnLoadCallback(OnLoad);
     
        //]]>
        </script>
    <?php }
    
    add_action('wp_head', 'googleimo_code', 10);

    Place the div in header.php.

    Regards,
    Ismael

    #328178

    Hey!

    Please go to Enfold/Includes folder and helper-main-menu.php file and find

    if($headerS['header_social'] == 'icon_active_main' && !empty($headerS['bottom_menu'])) echo $icons;

    and add following code right below it

    get_search_form();

    and adjust its position using following code in Quick CSS field

    #header form#searchform { top: 10%;  left: 40%; position: relative; }

    Regards,
    Yigit

Viewing 30 results - 6,091 through 6,120 (of 7,495 total)