Viewing 30 results - 6,961 through 6,990 (of 7,502 total)
  • Author
    Search Results
  • #198969

    Hey andri7luck!

    No, the ajax search does not work with a standard search form at the moment. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ and if other users request it we’ll look into it.

    Update: I looked into it and you can do it with a quick hack. In enfold/js/avia.js replace

    
     new $.AviaAjaxSearch({scope:'#header'});
    

    with

    
     new $.AviaAjaxSearch({scope:'#header, .widget_search'});
    

    Then replace

    
    this.scope.on('keyup', '#s:not(".av_disable_ajax_search #s")' , $.proxy( this.try_search, this));
    

    with

    
    this.scope.on('keyup', '#s:not(".av_disable_ajax_search #s")' , $.proxy( this.try_search, this));
    
                $(document).not(this.options.scope).on('click', function(){
                    $('.widget_search #searchform .ajax_search_response').fadeOut(300, function(){ $(this).remove(); });
                });
    

    Afterwards add following css code into the quick css field

    
    #top .widget_search #searchform .ajax_search_response{
        padding-top: 20px;
        position: absolute;
        background: #fff;
        z-index: 100;
        max-width: 100%;
        border: 2px dotted #e2e2e2;
    }
    

    and change the styling of the ajax response results if you want.

    Regards,
    Peter

    #198923

    Hi!

    Yes, in enfold/js/avia.js search for

    
        function avia_hover_effect(container)
        {
        	if(container == 'body')
        	{
        		var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a').add('#main .avia-hover-fx');
        	}
        	else
        	{
        		var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a').add('.avia-hover-fx', container);
        	}
    

    and add your element/class to the “not” filter list – i.e. if your class is called “mycustomclass” the modified code must look like

    
        function avia_hover_effect(container)
        {
        	if(container == 'body')
        	{
        		var elements = $('#main a img').parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a, .mycustomclass, .mycustomclass a').add('#main .avia-hover-fx');
        	}
        	else
        	{
        		var elements = $('a img', container).parents('a').not('.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a, .noHover, .noHover a, .mycustomclass, .mycustomclass a').add('.avia-hover-fx', container);
        	}
    

    Cheers!
    Peter

    #198717
    integritive
    Participant

    Using Enfold theme and wondering if there is a way to edit an already saved Avia Layout Builder Template and have those edits apply site wide wherever that template is used. I have tried and also researched but can’t seem to find an answer.

    #198679

    In reply to: Enfold search function

    Yes. It was a social media tab plugin that was conflicting with the search function in the header menu. I have to use either one or the other. Thanks for the help.

    #198666
    kanoute696
    Participant

    apologies if this has been asked – I search but I found nothing, To get the text on the slider on http://kriesi.at/themes/enfold/homepage/home-v4-small-slider/ – is there a tutorial anywhere for this?.

    Thank you in advance,

    #198508

    Hi AndrewDelaware!

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

    .avia-menu-fx, #top #menu-item-search.menu-item-search-dropdown>a { display: none; }

    And flush browser cache and refresh your page a few times

    Cheers!
    Yigit

    #198505

    Hi Mono14!

    Please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open testimonials.php file and search “aviablank” and remove it

    Regards,
    Yigit

    #198351

    In reply to: Enfold search function

    Hello,

    Please try to deactivate all third party plugins to see if it gets fixed.

    Regards,
    Josue

    #198347

    Topic: Enfold search function

    in forum Enfold
    blaircomm
    Participant

    The Enfold search function in the header menu is no longer working. It worked a bit, now just produces a line type graphic in the middle of the page, but no search box etc. I tested in different browsers, the same. I am running MAC OS 10.5.8, PowerPC. (http://novabook.us/novabookblog/)

    Is there a fix I can do?

    Thank you.

    #198130

    Thank you Devin. Really want to make this work haha. Been scratching my head all night searching through google without a clue.

    I really like Masonry as a layout cause I have many more images to show. JetPack is such a common plugin that I am sure there would be many users in the same situation as me. The trouble is, they may assume it’s the fault of Enfold, cause it’s clearly stated on the error line “…themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php” Unless they go through the process like me, they will never know.

    Hopefully, there’s a way for you all to make it work with Photon really soon. Please help to escalate this! Thank you!

    I volunteer to test your masonry for you! haha.

    #198030
    odac25thka
    Participant

    Dear Admin,

    Thank you for reading this. I was experimenting with the Masonry with my blogposts by wordpress gave me this warning :

    Warning: Division by zero in /home2/nica72/public_html/brillianceresources.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 592

    My site is http://brillianceresources.com/test/

    I apologise if this has been asked before. I tried searching but cannot find an answer.

    Any help is appreciated!

    #198018
    gorkas
    Participant

    Hi.

    I installed the CodeStyling Localization plugin. Went to Tools — Localization. Selected Themes and for Enfold it says “activated”. Deleted all languages but Deutsch/Deutschland and thought that now for example search results on my site would be in German, but they are still in English.

    How do I actually activate the desired language?

    Thanks.

    #197988

    Hey LFE!

    Please do not edit the breadcrumb function directly but open up functions-enfold.php and search for:

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

    Replace the code line with

    
    if($breadcrumb) $additions .= avia_breadcrumbs(
    								array(
    									'separator' => '/', 
    									'richsnippet' => true,
    									'before' => '<span class="breadcrumb-title">You are here:</span>',
    									'show_home' => 'Home'
    									)
    							);
    

    and instead of “Home” and “You are here” insert your custom text.

    Cheers!
    Peter

    #197942
    LFE
    Participant

    I did a search but didn’t find any specific help with qTranslate for Enfold.

    I’ve installed the plugin but it doesn’t translate anything on the web site when other languages are chosen, do I have to add code somewhere to make it work?

    I understand WPML is supported, but any help to make qTranslate functional would greatly be appreciated.

    Thanks in advance,
    LF

    #197428

    In reply to: A few questions

    Hi Robsticles1!

    Please add following codes to Quick CSS in Enfold theme options under Styling tab
    1)

    #top #menu-item-search.menu-item-search-dropdown>a { display: none; }

    2)

    .multi-big .post_author_timeline { display: none; }

    3) Can you post the link to your website so we can inspect elements?
    4) It would be possible but you are going to need to hire a freelance developer for that kind of a customization

    Cheers!
    Yigit

    #197390
    brandonguy
    Participant

    I hacked up the search results to include tags in the search

    file: wp-content\themes\enfold\framework\php\function-set-avia-frontend.php

    	elseif (is_search())
    		{
    	//start hack
    	
    			global $wp_query;
    			$orig_query_found=false;
    			$tag_query_found=false;
    			
    			$orig_query = $wp_query;
    			if($orig_query->found_posts){
    		//		echo 'had a post for normal search<br/>';		
    				$orig_query_found=true;
    			
    						}else{
    	//				echo 'no results for normal search<br/>';
    					$orig_query_found=false;
    			
    					}
    			wp_reset_query(); 
    			
    			query_posts( 'tag='.$_GET['s'].'' );
    			$tag_query = $wp_query;
    			wp_reset_query(); 
    	
    		if($tag_query->found_posts){
    	//			echo 'had a post for tag search<br/>';			
    				$tag_query_found=true;
    			
    					}else{
    //					echo 'no results for tag search<br/>';
    					$tag_query_found=false;
    			
    					}
    
    //			$wp_query=$orig_query;
    
    		switch($orig_query_found){
    			case true:
    			switch($tag_query_found){
    				case true:
    
    		//		echo 'should combine the array';
    
    $wp_query->posts = array_merge( $orig_query->posts, $tag_query->posts );
    	//		$wp_query=array_merge($orig_query,$tag_query);
    		
    
    			break;
    			default:
    		
    //						echo 'leave original results';
    
    			$wp_query=$orig_query;
    
    			break;
    				
    				}
    		
    			break;
    			default:
    
    $wp_query->posts = $tag_query->posts ;
    //since no results in original, just return the tag search
    			break;
    			
    			}
    		
    	//end hack	
    		
    			if(!empty($wp_query->found_posts))

    Now have no errors if:

    • no tag results but normal search results
    • tag results but no normal search results
    • no tag results and no normal search results
    • tag results and normal search results
    • This topic was modified 12 years, 4 months ago by brandonguy.
    #197059

    Hey!

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

    #bbpress-forums div.bbp-search-form {
    float: right;
    width: 100%;
    }
    #bbp-search-form #bbp_search {
    width: 75%!important; }

    Best regards,
    Yigit

    #196939
    gamemaster
    Participant

    Hello,

    All the sites i install the enfold theme on, they are not coming up in google…

    Why is this?

    I ticked the disencourage searchenignes off…

    Some of the sites are:
    http://www.bikevents.dk (installed yoast seo on this site)
    http://www.mestertp.dk

    #196861

    Hey!

    Yes, you can use the lite version: http://wordpress.org/plugins/wp-backgrounds-lite/

    It doesn’t support a slideshow background. You can try the Flashlight theme if you want one.

    Best regards,
    Ismael

    certifiedhost
    Participant

    Hey there!
    I’ve searched for the past couple days for a solution to these issues, in the forums and off, yet I haven’t found the fix to these problems yet.
    1)
    When using the Advanced Layout Editor, I am unable to publish or update a page when I have # = # within my text. For example, “1 inode = 1 file” will result in a “Page Not Found 404″ error when I try to Publish or Update my page. The only work around I’ve been able to figure thus far is to simply reword my text to not include the equals sign, but as you could imagine, this is not a fix and rather annoying. Also, I can’t leave this issue for future authors/editors to run into without a better solution.
    2)
    Does prettyPhoto work with pages or posts, or only media elements like images? I’ve created a post that I want to load within the lightbox effect, without it’s header, footer, or sidebar. All of the documentation I’ve found only speaks mostly of images, but I’m looking to load that page on top of the current page, until clicked off. Adding ?iframe=true and &width=725&height=300 to the end of the href url doesn’t do anything. I’ve tried both rel=”lightbox” (Like stated in Enfold Documentation) and rel=”prettyPhoto” (Like stated in prettyPhoto Documentation), and still nothing.
    3)
    I’ve noticed the Advanced Layout Builder strips out any <p> tags that don’t have anything assigned to it. A simple <p> tag will be stripped from the code when editing blocks of text, but will be re-inserted when I view the page/post. I want this feature turned off, so that the HTML tags I put in stay there, and I don’t have to guess at what will be outputted as a <p> or a <br>.

    Thank you for your support, and I look forward to hearing your responses soon!
    `Joebob~

    • This topic was modified 12 years, 4 months ago by certifiedhost.
    #196616

    Hi!

    In wp-content\themes\enfold\framework\php folder and open function-set-avia-frontend.php search for and replace

    
    if(isset($curauth->nickname)) $output .= __('for:','avia_framework')." ".$curauth->nickname;
    

    with

    
    if(isset($curauth->user_nicename)) $output .= __('for:','avia_framework')." ".$curauth->user_nicename;
    

    Regards,
    Peter

    #196508

    Hey GARTLANS!

    You can add following code to Quick CSS in Enfold theme options under Styling tab

    .search-no-results .widget avia_combo_widget, .search-no-results h3 { display: none!important; }

    or you can comment out by adding // in front of each highlighted lines in this screenshot http://i.imgur.com/jPTnewr.jpg
    And yes, you should modify loop-search.php file manually if you would like to add new elements to search page

    Cheers!
    Yigit

    #196028

    Ok, so it seems that i fixed it after searching the forum. Sorry.
    THE FIX:

    – Ad css to childtheme/style.css:

    @media only screen and (max-width: 959px) {
    .responsive #header .main_menu ul { display: none;}
    .mobile_active #advanced_menu_toggle { display: block;}
    }

    – Change in enfold/avia.js:
    switchWidth = 959;

    Thanks guys

    • This reply was modified 12 years, 4 months ago by basilicon.
    #195927

    Hi Ismael,

    I’m running into this issue as well. Social icons are not appearing in the header in Chrome v31.

    – They appear in Firefox & Safari.
    – Cache is clear.
    – Search icon and scroll-up icon appear just fine (so it’s not a font issue as far as I can tell)
    – I’ve tried logging in and logging out of the WP admin.
    – Absolutely no plugins are installed.
    – HTML is served up.
    – I’ve tried playing with the CSS as much as possible, but can’t get anything to appear.

    My test site: http://maxwellcenter.com/new

    Thank you in advance.

    #195890

    Topic: Simple header issues

    in forum Enfold
    theviagroup
    Participant

    I’m having issues with the header, I simply want the Goggle plus, linked in, twitter, and stumbleupon icons not to be there. I apologize if this gets asked a lot, but I could not find it in the search. The slider meeting the header would be ideal, instead I have those icons blocking it.

    I also have another question that might not be able to be answered here, but how would I go along raising the upload limit on a windows azure website so I can upload my Enfold theme.

    Thank you.

    #195462

    Hey,

    Thanks for the response. I think I understood it right but have a look.
    here is the link
    It is the first discussion in this search “edfaber” is my mic
    (by the way your system clock is an hour to fast if you are sitting in vienna ;-)

    #195218

    Hey!

    Open up /wp-content/themes/enfold/includes/admin/register-admin-options.php and search for

    
    array('social_icon'=>'twitter', 'social_icon_link'=>'http://twitter.com/kriesi'),
    array('social_icon'=>'dribbble', 'social_icon_link'=>'http://dribbble.com/kriesi'),
    

    Replace the default values http://twitter.com/kriesi and http://dribbble.com/kriesi with your urls.

    Best regards,
    Peter

    #195017
    LFE
    Participant

    I’m seeing none of the existing templates have H1’s (unless I’m missing something). I have not installed Yoast yet, I’m first going to setup and finish the site then install.

    Should I manually edit it myself if I want a certain text to be H? Is it available somewhere in the visual editor? I see the LayerSlider has an option as well, this work well for SEO purposes?

    I tried to search for more info on SEO tips utilizing Enfold and WordPress SEO, but couldn’t find much, any help with existing threads about this, would be great.

    Thanks!

    #194986

    Hey Antonia!

    Please go to wp-content\themes\enfold\framework\php folder and open function-set-avia-frontend.php file and search “Archive for” and change any text you would like

    Best regards,
    Yigit

    #194950
    richgates
    Participant

    Hi All,

    I have been trying in vain to get similar results to what you see on http://kriesi.at/themes/enfold/portfolio/masonry-portfolio/ where below the main area there is a list of categories and/or tags so one can filter the view to show the appropriate items. I have version 2.4, and have loaded the dummy data, but unfortunately the masonry portfolio page like in the demo is not included so I am not sure how it is set up. I have also searched the forum without success.

    What I am ultimately looking to do is set up multiple portfolios. One will have various events, one will have concerts, etc. Under each of these portfolios each will have more specific information in the case of the concerts portfolio, there will be a separate category for each band that is seen with just images of that band included.

    Any ideas on how to accomplish this? I am sure it is just something I am missing. When I create the separate portfolios and assign multiple categories, they are not displayed.

Viewing 30 results - 6,961 through 6,990 (of 7,502 total)