Viewing 30 results - 6,961 through 6,990 (of 7,495 total)
  • Author
    Search Results
  • #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, 3 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, 3 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, 3 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.

    Hi!

    Are you talking about the lightbox’s black border when you click on the image?

    You can add this on your custom.css or Quick CSS to remove the search button:

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

    Cheers!
    Ismael

    Ismael, it’s posible delete de “Search button” in the principal menu ¿? …”magnifying glass” or “lupa in español” ¿?

    #194522

    Hi joax!

    There is some issue in the rendering of the search icon:

    Open functions-enfold.php and make sure line 52-73 look like this:

    if(!function_exists('avia_append_search_nav'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 );
    
    	function avia_append_search_nav ( $items, $args )
    	{	
    		if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items;
    	
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'></a></li>';
    	    }
    	    return $items;
    	}
    }

    Regards,
    Josue

    #194340
    tonywilson
    Participant

    I’ve installed the latest version of wordpress and the enfold theme but I am getting a series of error messages at the top of the browser window when i view the site:

    ———————————————————————————
    Warning: session_start() [function.session-start]: open(/home//sess_3954292ce6a280032643b6104a87446b, O_RDWR) failed: Permission denied (13) in /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
    ———————————————————————————

    Followed by the expected site content, which is just the default content until I get this situation resolved, after the content I get more error messages. I searched through the forum and see that this has come up a few times but I cannot see a definitive answer as to what causes it other than it’s a hosting problem and to contact your host. I contacted my host who have come back and told me “it’s a programming problem alter your code”. Can you provide me any more detail as to the exact cause of the problem or what needs to be done in order to put this right.

    Currently the site can be viewed here: http://tonywilson.eu/wordpress/

    Thank You

    • This topic was modified 12 years, 3 months ago by tonywilson.
    #194271

    Hi~
    I tried the Color Section and it’s not responsive because the background image just can’t resize itself. It’s more like corp automatically. So I’m wondering what Media Queries is because I didn’t find it in plugin searching. And how should I edit the style to fit different screen sizes.
    I just want the effect of the fullscreen slider only make it narrower.
    Thanks~

    #193962

    Hey!

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

    .bottom_nav_header.social_header .main_menu, .bottom_nav_header.social_header .main_menu { width: auto; float: none; left: 35%; }

    Cheers!
    Yigit

    #193822

    Hey!

    You can use this on Quick CSS or custom.css:

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
    border-color: #e1e1e1;
    background-color: white;
    color: #909090;
    }
    
    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    }

    Regards,
    Ismael

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