Forum Replies Created

Viewing 30 posts - 49,921 through 49,950 (of 66,229 total)
  • Author
    Posts
  • in reply to: Advanced layer slider #405594

    Hi!

    Edit the single.php file then add a do_shortcode function (http://codex.wordpress.org/Function_Reference/do_shortcode). Generate the shortcode using the shortcode wand. Use the full width slider or image shortcode.

    Regards,
    Ismael

    in reply to: Button in Slider not responsive #405593
    in reply to: Enfold not responsive on all pages #405583

    Hey!

    Looks like you’re using a form that is not native to the theme. Please contact the plugin author. You can add a scrollbar to the form element for smaller screens:

    form#fsForm1074890 {
    overflow-x: scroll;
    }

    Add css media queries.

    Cheers!
    Ismael

    in reply to: Image Hover without rotation #405581

    Hi!

    Actually, there is no zoom animation. It looks like it’s growing because of the opacity transition. Yigit’s code should remove the rotation.

    Cheers!
    Ismael

    in reply to: Multiple Shop Pages #405578

    Hi!

    No, unfortunately, the widget will only work for the default Shop Page and native woocommerce pages.

    Regards,
    Ismael

    in reply to: Can someone help with formatting? #405575

    Hi!

    Edit the Color Section then add a unique id attribute in the For Developers: Section ID field. Use “custom-section” for example. Add this to the Quick CSS field:

    #custom-section {
    margin-top: -500px;
    }

    Adjust the height. You might need to increase the z-index property as well. This will also require css media queries for smaller or bigger screens.

    Best regards,
    Ismael

    Hey!

    Maybe you should try another plugin such as WP MigrateDB or WP MigrateDB PRO. The transition is manual and may not be as easy as the wp engine’s migration process.

    Best regards,
    Ismael

    in reply to: Full Width Images Menu With Link and Hover Effect #405572

    Hey!

    That is a custom jquery script. Unfortunately, we can’t provide any of that code here. Maybe, you should contact the website developer or owner. Or hire a freelance developer for a more extensive custom hover effect. :)

    Best regards,
    Ismael

    in reply to: Bug on Media Entries Page #405571

    Hi!

    Oh. Sorry about that. This should work:

    add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1);
    function avf_portfolio_title_args($args) { 	
    
    	$title = get_the_title($id);
    
    	if(is_singular('portfolio') && is_single()) {
    		$terms = get_the_terms( $id, 'portfolio_entries' );
    	}elseif(is_singular('post')){
    		$terms = get_the_terms( $id, 'category' );
    	}
    	
    	if(is_singular(array('portfolio', 'post')) && is_single()) {
    		$portfoliocat = array();
    		foreach ( $terms as $term ) {
    			$portfoliocat[] = $term->name;
    		}	
    		$args['title']    = $portfoliocat[0];	
    	} else {	
    		$args['title']    = $title;
    	}
    
    	return $args;
    }

    Cheers!
    Ismael

    in reply to: Limit ajax search results with Relevanssi #405022

    Hi!

    Add this to the Quick CSS field:

    .avia-search-tooltip form#searchform {
    overflow-y: auto;
    }

    If it doesn’t work, use this:

    .avia-search-tooltip form#searchform {
    overflow-y: scroll;
    }

    Cheers!
    Ismael

    in reply to: Tabs Mobile Appearance Help #405018

    Hey tylerjmorrison!

    Thank you for using Enfold.

    I checked the page but I don’t see any tab elements, only toggles with a single item. Can you please provide a screenshot?

    Regarding the table, unfortunately, that is not possible without custom modification on the theme. You may need to hire a freelance developer.

    Best regards,
    Ismael

    in reply to: Header Iframe #405016

    Hi!

    Thank you for using Enfold.

    You mean, you don’t want it to show on mobile devices? Maybe, something like this will help:

    if(!preg_match('/iPhone|iPod|iPad/', $_SERVER['HTTP_USER_AGENT'])) {
    		echo '<iframe src="http://domussapiens.com.br/sourcelab/auth.php"><p>Your browser don't support iframe</p></iframe>';
    	} 

    Refer to this link for more info: http://stackoverflow.com/questions/15228937/php-check-if-the-page-run-on-mobile-or-desktop-browser

    Regards,
    Ismael

    Hey Simon!

    Thank you for using Enfold.

    Add this to the functions.php file:

    add_filter( 'avf_title_args', 'enfold_customization_change_title_heading' );
    function enfold_customization_change_title_heading( $args ) {
    	$args['heading'] = 'span';
    	return $args;
    }

    Regards,
    Ismael

    in reply to: Customizing the alignment of left sidebar menu #405005

    Hi!

    Thank you for using Enfold.

    Try to add this to the Quick CSS field:

    #top .widget_nav_menu li {
    text-align: left;
    padding-left: 80%;
    }

    Best regards,
    Ismael

    in reply to: Quantity Toggles on Woocommerce product pages missing #405003

    Hey AsadIC!

    Thank you for using Enfold.

    Please make sure that you have the latest version of the woocommerce plugin. That should fix the issue.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider won't resize height! #405001

    Hi!

    The thumbnail is not available for that specific image. Try to regenerate the thumbnails by using this plugin: https://wordpress.org/plugins/simple-image-sizes/

    Go to Settings > Media, click regenerate thumbnails.

    Best regards,
    Ismael

    in reply to: Adding extra logo to the right of the menu bar #404998

    Hi!

    There is nothing in the website that you can’t see in the default zoom setting so I don’t think users will intentionally zoom to 150%.

    Cheers!
    Ismael

    in reply to: Shortcode with a title contain ' #404996

    Hey!

    Try to use the character html entity of the apostrophe symbol: http://dev.w3.org/html5/html-author/charref

    Best regards,
    Ismael

    in reply to: Contact form inside the Avia layout builder #404994

    Hey Lev!

    Thank you for using Enfold.

    Unfortunately, it’s not possible without major customization on the theme. You might need to use email marketing service like MailChimp and integrate it on a contact form plugin like Contact Form 7 or Gravity Forms.

    Best regards,
    Ismael

    in reply to: Double logo with seperate links #404992

    Hey markgibbons243!

    Are you referring to the lenser and leatheman image link at the very top of the page? You can use a filter like this on functions.php:

    add_action('avia_meta_header', 'avia_meta_header_mod');
    function avia_meta_header_mod() {
    	echo "<div id='header-logo1'><a href="URL 1 HERE"><img src='IMAGE URL HERE'></a></div>";
    	echo "<div id='header-logo2'><a href="URL 2 HERE"><img src='IMAGE URL HERE'></a></div>";
    }
    

    Add the image url and links. Make sure that have a Enfold Secondary Menu set on Appearance > Menus panel and Enfold > Header > Extra Elements Header Secondary Menu option.

    Cheers!
    Ismael

    in reply to: Relocate page-title #404991

    Hi!

    What do you mean by “tap is slightly different”? If you’re referring to the capitalization of the “Uncategorized” text, add this to the Quick CSS field:

    span.avia-menu-text {
    text-transform: lowercase;
    }

    Looks like the enfold_child.css is not loaded on firefox. I’m not sure why. Please try to add this to the Quick CSS field:

    .responsive .container {
    max-width: 1310px;
    }

    Best regards,
    Ismael

    in reply to: Rearrange header on mobile #404990

    Hey!

    How did you add the widget? If you’re using the filter fro the documentation, please replace it with this:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    Remove the “echo” before the dynamic_sidebar function to remove the number “1”. Use the name of the custom widget area instead of the “header”.

    Regards,
    Ismael

    in reply to: Problem with "meta on grid" changings #404989

    Hey DustinH93!

    Thank you for using Enfold.

    1.) Please look for this code:

    if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}

    Replace it with:

     if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Contribute', 'avia_framework' ) : __('Contribute', 'avia_framework' );
    							$commentCount = $commentCount !== "0" ? $commentCount : '';
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";					
    						} 

    Again, look for this line of code:

    $commentCount = get_comments_number($the_id);
    

    Replace it with:

    $commentCount = $entry->comment_count;
    

    2.) Can you please provide a link to the issue? We would like to check it.

    Best regards,
    Ismael

    in reply to: Overlap image and contact form #404984

    Hi!

    Please try this:

    body #gform_wrapper_2 {
    padding-top: 40px;
    margin-top: -35px;
    }

    The form should look like this after:

    Cheers!
    Ismael

    in reply to: Enfold accordion styles #404981

    Hi!


    @vicrub
    : You can add your css modifications to the Enfold > General Styling > Quick CSS field. You can also modify some elements inside the Advanced Styling panel.


    @cbentley65
    : This is for the tab title and tab content:

    div .main_color .tabcontainer .active_tab_content, div .main_color .tabcontainer .active_tab {
    background-color: red;
    }
    
    #top .main_color .tabcontainer .tab:hover {
    background-color: red;
    }
    
    .main_color .template-archives .tabcontainer a, #top .main_color .tabcontainer .tab:hover, #top .main_color .tabcontainer .tab.active_tab {
    color: yellow;
    }

    Use google inspector or firebug to find the right selectors for the elements that you want to modify via css.

    Cheers!
    Ismael

    in reply to: Breadcrumb Problem #404978

    Hi!

    Did you change the id “459” to the id of the “My Work” page?

    $page = get_post(459, ARRAY_A);
    

    Cheers!
    Ismael

    in reply to: Separator Icons not centered on mobil device #404976

    Hey!

    I think it’s because of the width of the invisible line on both sides of the icon. You set the width of the separator with the issue to 200px and the other to 50px. It doesn’t automatically resize the width of this elements on smaller screens so it pushes the icon out of line. A fix should be included on the next update.

    Best regards,
    Ismael

    in reply to: How to format categories (preferably with ALB) #404973

    Hey!

    Unfortunately, you can’t use the advance layout builder when designing category pages. Yes, it will require custom coding. Please hire a freelance developer. If you want the avia_post_nav (post navigation) to filter the same category, add this to the functions.php file:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
    	$settings['is_fullwidth']  = false;
    	$settings['same_category'] = true;
    	return $settings;
    }

    Cheers!
    Ismael

    in reply to: Additional transparent header #404971

    Hi!

    Edit the page then look for Layout > Header visibility and transparency. Select “Transparent Header”.

    Cheers!
    Ismael

    in reply to: Sidebar Subscribe Border and Placeholder Text #404967

    Hey!

    Add the !important attribute after the css value.

    input#subscribe-field {
    border-radius: 2px!important;
    width: 250px !important;
    font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 100!important;
    max-width: 250px !important;
    box-sizing: border-box;
    font-weight: 100!important;
    border: 1px dotted #e1e1e1 !important;
    }

    Adjust the width and max-width if necessary.

    Best regards,
    Ismael

Viewing 30 posts - 49,921 through 49,950 (of 66,229 total)