Viewing 30 results - 224,131 through 224,160 (of 244,358 total)
  • Author
    Search Results
  • #249644

    In reply to: UberMenu Integration

    The ALB is the Avia Layout Builder. Viewing previews is finicky, I can’t really help improve it for you right now since we’ve never gotten an overwhelming number of complaints on its usage.

    For reliability in general I never use it when doing any projects for clients and I also don’t recommend using it either since even outside of with Enfold I’ve found it to be unreliable.

    Hey!

    I would like to avoid the image being
    cropped in the window that opens when you click on it from the portfolio grid – Is this even possible
    it seems like the images on the enfold demo are also cropped so maybe I am asking the impossible?

    Are you using the ajax portfolio? If yes the theme will not use the single-portfolio.php template I mentioned here https://kriesi.at/support/topic/how-can-i-make-the-title-for-each-portfolio-entry-18-point/#post-245059 but it will use a special html template which is loaded with js/ajax. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace:

    
    $params['style'] =  "big_thumb";
    

    with

    
    $params['style'] =  "big_thumb";
    $params['preview_size'] ='full';
    $params['crop_big_preview_thumbnail'] ='avia-gallery-big-no-crop-thumb';
    

    Best regards,
    Peter

    #249627

    Hi!

    Yes, that is possible. Just use this on Quick CSS:

    .header_color .header_bg {
    opacity: .5;
    }

    This will give the background a 50% transparency.

    Best regards,
    Ismael

    #249625

    Topic: UberMenu Integration

    in forum Enfold
    idealmm
    Participant

    Just trying to find out if the UberMenu plugin came with the Enfold theme & if so where do I find it?

    Thanks!

    #249619

    Hey!

    Ja, ich empfehle den Elementen in den Spalten eine “Custom CSS” Klasse zu geben – siehe: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ und dann verwende diese Klasse um die Hintergrundsfarbe der Elemente zu ändern (zB verwende die Klasse “colored_posts” und füge diesen Code in das Quick CSS Feld ein.

    
    #top #wrap_all .colored_posts{ background-color: #333; }
    

    Cheers!
    Peter

    #249615

    In reply to: Enfold extremly slow

    Hey!

    But if you’re not using WPML how do you want to translate the website? I.e. you can’t select a different blog page without WPML and you can’t simply add language flags to the menu. With WPML our themes will support both features out of the box – without WPML you must customize the theme files for the translation plugin you want to use but we can’t assist you with the customization.

    You can increase the font seize of the secondary menu with:

    
    #top .sub_menu>ul, #top .sub_menu>ul>li {
    font-size: 13px;
    }
    

    I recommend to place the code into the quick css field or into the child theme style.css.

    Cheers!
    Peter

    #249607

    Hi!

    Please insert this code into the enfold/functions.php file (or child theme functions.php file):

    
    if(!function_exists('avia_modify_breadcrumb_blog'))
    {
    	function avia_modify_breadcrumb_blog($trail)
    	{
           		 $blog_page = 20;
             	if(get_post_type() === "post" && (is_category() || is_archive() || is_tag()))
    		{
    
    			$front = avia_get_option('frontpage');
    			$blog = $blog_page;
    
    			if($front && $blog && $front != $blog)
    			{
    				$blog = '<a href="' . get_permalink( $blog ) . '" title="' . esc_attr( get_the_title( $blog ) ) . '">' . get_the_title( $blog ) . '</a>';
    				array_splice($trail, 1, 0, array($blog));
    			}
    		}
    		else if(get_post_type() === "post")
    		{
    			$front = avia_get_option('frontpage');
    			$blog = $blog_page;
    			
    			if($blog == $front)
    			{
    				unset($trail[1]);
    			}
    		}
    		
    		return $trail;
    	}
    
    	add_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb_blog', 15, 1);
    }
    
    

    and replace 20 with the id of your blog page.

    Best regards,
    Peter

    #249600

    In reply to: Pagination Issue

    Hey!

    Please reset the settings on Settings > Reading, set it to default. Set the homepage and blog page on the Enfold Theme Options. Reset the permalink settings again on Settings > Permalink panel. Let us know if it works.

    Best regards,
    Ismael

    #249589
    This reply has been marked as private.

    Done! Thanks Yigit

    #249584

    Hey dettospa!

    Thank you for using the theme!

    Please try to flush the permalink settings once. Just go to Settings > Permalink then click the “Save” button once. This should fix the issue.

    Regards,
    Ismael

    #249582

    Hey tcctemp!

    Thank you for using the theme!

    Yes it is possible to add icons on the icon library. Please refer to this link: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    On the next update of the theme, we’ll be adding a comprehensive css editor that will allow you to modify the style including color, font, background etc.

    Regards,
    Ismael

    #249579

    Hi GOWD!

    Thank you for using the theme!

    1.) Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    float: left;
    -webkit-transform: translate(0,0);
    }
    }
    

    Can you please post a screenshot on where you want the social icons to go when viewing on mobile device?

    2.) You can control the mobile menu activation on Enfold > Header > Mobile Menu > Header Mobile Menu activation.

    3.) You can add an image element the set the link manually. Add the link of the youtube url. This should open the video on lightbox when you click the image.

    4.) On what version of IE are you testing this with? I checked with IE9 but I don’t see the issue.

    Cheers!
    Ismael

    #249567

    Hi Zheq!

    Thank you for using the theme!

    1.) Are you talking about the galley tooltip? You can add this on Quick CSS or custom.css:

    .avia-tooltip {
    background: rgba(0, 0, 0, 0.8);
    }

    Change the color value.

    2.) Use this to change the lightbox overlay:

    div.pp_overlay {
    background: red;
    }

    3.) Edit config-templatebuilder > avia-shortcodes > contact.php, find this code on line 244:

    $elements['avia_age'] =	array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
    

    Replace the label something else:

    $elements['avia_age'] =	array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are an awesome dude by dancing around','avia_framework' ));
    

    Edit framework > php > class-form-generator.php, find this code on line 520:

    $this->elements_html .= "    <span class='value_verifier_label'>$number_1 + $number_2 = ?</span>";
    

    Replace the question mark sign with something else or remove it.

    4.) Add something like this on functions.php to change the Thank you message:

    add_filter( 'avia_contact_form_args', 'enfold_customization_autoresponsder', 10, 1);
    function enfold_customization_autoresponsder( $form_args ) {
    	$form_args['autoresponder_subject'] = 'your text here';
    	return $form_args;
    }

    5.) This feature is beyond the scope of support. Please find a plugin like NextGen Gallery or hire a freelance developer to add the feature for you.

    It is easier for us if you ask or open a thread for each inquiry. Thanks!

    Cheers!
    Ismael

    #249558

    In reply to: Enfold Theme errors

    Hi!

    Thank you for using the theme!

    Please try to change the footer settings on Enfold > Footer > Columns. See if that helps. Also, add a blank text widget on Appearance > Widgets > Footer Columns to test the footer widgets.

    Regards,
    Ismael

    #249546

    Hey motylanogha!

    Thank you for using the theme!

    Unfortunately, this is beyond the scope of support as stated on support policy and is not a theme related issue. You might need to investigate the feature yourself, find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    #249543
    dettospa
    Participant

    Hi there, I love your theme but I need some help please!

    When I try to open Item Portfolio (even the once imported from your demo) I obtain Error 404 Page not found.

    Enfold Version 2.6.2 – WordPress 3.8.2

    Thanks
    Dave

    #249523

    In reply to: Pagination Issue

    Hey JustinGreis!

    Here are my thoughts on your problem :

    1) The pagination on the demo site ( enfold ) it’s working and on my local development is working too, that only says one thing, the problem is on the plugins part.

    2) You have tons of plugins, my advice is : remove 1 by 1 start with the ones are more critical to your workflow so if you have to replace one of them you have some time to thinking throughout.

    3) I’ve checked your site looking for bugs / errors on the console, so far nothing. ( so go back to #2 ).

    OPTION #4
    Backup your site ( there is a plugin for that ) or back up your db, after that remove wordpress completely, and start with a brand new installation, if you backup your data you won’t need to start all over. On enfold options pannel you can back up your options.

    Cheers!
    David

    #249502
    Swedfit
    Participant

    Not sure if you guys can help me because its a plugin. But check my page http://www.swedfit.se/sok/
    and you will see that the search box does not cover the whole width of the box but the search button is centered correctly.

    The search box is always the same width (as shown) no matter which width the container the search box is in.

    This only happened in the enfold theme.

    Any suggestions?

    (hope you guys understand my problem aswell:)

    #249490

    Hi Randy!

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

    #top .av-main-nav ul a { padding: 3px 15px; }
    .sub-menu li { border-bottom: 1px solid #e2e2e2; }

    Cheers!
    Yigit

    #249485

    We figured it out, thanks.

    #249479

    In reply to: Smaller Menu size

    Hey!

    You can upload background image to header in Enfold theme options > Styling > Header

    Best regards,
    Yigit

    #249478

    Hi sjwmobile!

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

    @media only screen and (max-width: 480px) {
    .responsive #header_main .container {
    height: 140px !important;
    }
    #advanced_menu_toggle { top: 25%; }
    .responsive .mobile_slide_out .logo { margin-top: 18%; }
    #header_main .social_bookmarks { top: 25%; }
    }

    Please flush browser cache on your iphone and refresh your page a few times

    Regards,
    Yigit

    #249475

    In reply to: Smaller Menu size

    Hey!

    Please add following code to Quick CSS as well

    #top #menu-item-search.menu-item-search-dropdown>a:hover {
    background-color: transparent!important;
    }

    You can go to Enfold theme options > Header > Extra elements > Header Phone Number/Extra Info and add your text or link there manually

    Regards,
    Yigit

    #249470

    Hi!

    Do you mean adding anchors? If so, please see – http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
    If you did not mean that, i do not think i understood you. Can you post a screenshot or elaborate please? :)

    Cheers!
    Yigit

    #249455

    Hi~
    May I change the opacity of the header background no matter it is an image or just a color.

    #249450

    Hi!

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

    .header_color .main_menu ul:first-child > li > a { color: #408c20; }

    and adjust as needed

    Cheers!
    Yigit

    #249447

    In reply to: Smaller Menu size

    Hey!

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

    #header_main .container, .main_menu ul:first-child > li a {
    line-height: 300px;
    }

    Best regards,
    Yigit

    #249446

    Hi~
    Why only the text “home” is green and the rest of them is orange.

Viewing 30 results - 224,131 through 224,160 (of 244,358 total)