Forum Replies Created

Viewing 30 posts - 61,711 through 61,740 (of 66,939 total)
  • Author
    Posts
  • in reply to: Difficulty removing Related Posts from blog pages. #204394

    Hey!

    Glad it is fixed. :)

    Best regards,
    Ismael

    in reply to: create portafolio entry and 404 error #204392

    Hey!

    Before we move on please refer to this link then follow Dude’s instruction at the very bottom: https://kriesi.at/support/topic/portfolio-items-all-404s-rewrite-rules-missing/

    Best regards,
    Ismael

    in reply to: Can't add images to the easy slider #204388

    Hey kinnear!

    Please post the login details here as a private reply. We would like to inspect it. You can watch this video by Devin to learn more about the theme: https://vimeo.com/channels/aviathemes/64927359

    Cheers!
    Ismael

    in reply to: Difficulty removing Related Posts from blog pages. #204387

    Hey!

    Yep, that might be it. Please flush the cache plugin settings. Test it on another browser.

    Cheers!
    Ismael

    in reply to: Difficulty removing Related Posts from blog pages. #204384

    Hi!

    I don’t see the related posts anymore on this post: http://meritagefunds.com/meritage-leads-investment-in-peakcolo/

    Please remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: create portafolio entry and 404 error #204381

    Hey!

    Can you please give us the login details? Post it as a private reply.

    Cheers!
    Ismael

    in reply to: Difficulty removing Related Posts from blog pages. #204377

    Hi dpilling!

    You can use this instead:

    .single .related_posts {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Blog posts and Latest News posts #204376

    Hey!

    You can remove the breadcrumb using this on Enfold > Styling > Quick CSS:

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    To change the button to circle, first, you need to add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Buttons then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-button”.

    You can add something like this on your custom.css or Quick CSS:

    .awesome-button .avia-button {
    border-radius: 40px;
    padding: 20px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin: 3px 0;
    line-height: 0;
    position: relative;
    font-weight: normal;
    text-align: center;
    width: 40px;
    min-width: 40px !important;
    }

    Regards,
    Ismael

    in reply to: Issue regarding quality of responsive images and more #204374

    Hey!

    You can add this on your custom.css or Quick CSS to adjust the partner logo element on mobile view:

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-smallarrow-slider .flex_column {
    margin: 0px;
    width: 100%;
    }
    }

    Best regards,
    Ismael

    in reply to: Image resize problem in IE and FF, Chrome looks fine #204372

    Hi!

    Please try to add this at the very bottom of custom.css or Quick CSS:

    #top #header .avia_mega_div > .sub-menu > li > ul > li a {
    width: 100%;
    max-width: 250px;
    }

    Regards,
    Ismael

    in reply to: Best dimension size for feature image area? #204367

    Hi!

    The slider use for the Landing Page Style demo is the LayerSlider plugin which is natively included with the theme. You can Import the dummy data to check the example slider. The background image dimension is 1700x470px. This is an example of the background image use: http://kriesi.at/themes/enfold/files/2013/04/floor.jpg

    Watch this video to learn more about the LayerSlider: http://www.youtube.com/watch?v=ZY9SxVyugx4

    Cheers!
    Ismael

    in reply to: Adding new templates for custom post type additions #204363

    Hi!

    Did you change the title on single-report.php file?

    $title = __('Blog - Latest News', 'avia_framework'); //default blog title

    Replace it with:

    $title = __('Reports, 'avia_framework'); //default blog title

    Cheers!
    Ismael

    in reply to: Customize menu #204361

    Hey jbc1407!

    What do you mean by “sub-main” menu? You can change the main menu color using this on Quick CSS:

    .header_color .main_menu ul:first-child > li > a {
    color: red;
    }

    Change the sub menu using this:

    .header_color .sub_menu>ul>li>a {
    color: blue;
    }

    Regards,
    Ismael

    in reply to: create portafolio entry and 404 error #204358

    Hey!

    Please add this at the bottom of functions.php file:

    add_action( 'init', 'avia_deactivate_permalink_rewrite', 10);
    function avia_deactivate_permalink_rewrite(){
    remove_action( 'init', 'avia_wpml_register_post_type_permalink', 20);
    }
    

    Go to Settings > Permalinks and click the “Save” button to flush the permalinks. Do the flush a few times.

    Cheers!
    Ismael

    in reply to: Padding #204356

    Hi yingfuli!

    You can adjust the content div padding using this:

    .content, .sidebar {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Regards,
    Ismael

    Hey!

    You can copy the whole avia_which_archive function on the child theme’s functions.php:

    if(!function_exists('avia_which_archive'))
    {
    	/**
    	 *  checks which archive we are viewing and returns the archive string
    	 */
    
    	function avia_which_archive()
    	{
    		$output = "";
    
    		if ( is_category() )
    		{
    			$output = __('Awesome for category:','avia_framework')." ".single_cat_title('',false);
    		}
    		elseif (is_day())
    		{
    			$output = __('Archive for date:','avia_framework')." ".get_the_time( __('F jS, Y','avia_framework') );
    		}
    		elseif (is_month())
    		{
    			$output = __('Archive for month:','avia_framework')." ".get_the_time( __('F, Y','avia_framework') );
    		}
    		elseif (is_year())
    		{
    			$output = __('Archive for year:','avia_framework')." ".get_the_time( __('Y','avia_framework') );
    		}
    		elseif (is_search())
    		{
    			global $wp_query;
    			if(!empty($wp_query->found_posts))
    			{
    				if($wp_query->found_posts > 1)
    				{
    					$output =  $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output =  $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    			}
    			else
    			{
    				if(!empty($_GET['s']))
    				{
    					$output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
    				}
    				else
    				{
    					$output = __('To search the site please enter a valid term','avia_framework');
    				}
    			}
    
    		}
    		elseif (is_author())
    		{
    			$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
    			$output = __('Author Archive','avia_framework')." ";
    
    			if(isset($curauth->nickname)) $output .= __('for:','avia_framework')." ".$curauth->nickname;
    
    		}
    		elseif (is_tag())
    		{
    			$output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false);
    		}
    		elseif(is_tax())
    		{
    			$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    			$output = __('Archive for:','avia_framework')." ".$term->name;
    		}
    		else
    		{
    			$output = __('Archives','avia_framework')." ";
    		}
    
    		if (isset($_GET['paged']) && !empty($_GET['paged']))
    		{
    			$output .= " (".__('Page','avia_framework')." ".$_GET['paged'].")";
    		}
    
    		return $output;
    	}
    }
    

    Best regards,
    Ismael

    in reply to: Enfold – Fullwidth Gallery centering #204353

    Hi!

    You can use this to center align the gallery:

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    text-align: center;
    }
    
    .single .gallery {
    display: inline-block;
    }

    Regards,
    Ismael

    in reply to: Off-centered Menu IPAD #204350

    Hi!

    Do what Devin said or try to add this at the very bottom of custom.css or Quick CSS:

    .main_menu {
    position: absolute;
    margin: 0;
    right: 0;
    bottom: 0;
    }

    Best regards,
    Ismael

    Hi jvines!

    You can use this for the first link:

    .entry-content p {
    padding: 1.0em 0;
    }

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .entry-content p{
    padding: 1.0em 0;
    }

    Regards,
    Ismael

    in reply to: Best dimension size for feature image area? #204225

    Hey laurendevine!

    As you can on the demo here: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/

    The images use for the Fullscreen Slider is 1500x1500px in size.

    Best regards,
    Ismael

    in reply to: Issue regarding quality of responsive images and more #204224

    Hey!

    This is what I see when I resize the browser. The logo is beside the slide down menu. Is this fixed?

    Regards,
    Ismael

    Hey!

    Please use this. Don’t forget to remove browser cache then reload the page a few times after.

    .active-parent-item>a>.avia-menu-fx>.avia-arrow-wrap, .active-parent-item>a>.avia-menu-fx>.avia-arrow-wrap {
    display:block !important;
    opacity: 1;
    visibility: visible;
    }

    Regards,
    Ismael

    in reply to: Portfolio Item option missing in Enfold options #204220

    Hey EvanMPW!

    The Portfolio options is not available on Enfold Settings. You can create a specific portfolio page using the Portfolio Grid element on the Advance Layout Builder. I’m not sure why the portfolio slug revert back to default but try to update the theme via FTP in the future. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: fontello uploading error #204218

    Hey!

    Have you test it on a different browser and computer? I actually encountered this issue on Google Chrome Windows 8. Please try to download the theme again from your themeforest account then update it via FTP.

    Cheers!
    Ismael

    in reply to: category widget with two columns #203995

    Hey jmalevic!

    I’m not sure if this is possible. Please hire a freelance developer to modify the category widget for you. Can you please give us a link to the page with the category widgets?

    Best regards,
    Ismael

    in reply to: Disable Layerslider failed!!! #203994

    Hey!

    I accessed the website and the LayerSlider panel. It loads fine on my end. I used Chrome Windows 7. Please try to remove browser cache or test it on another browser:

    Cheers!
    Ismael

    in reply to: Fixing the footer #203993

    Hi wallaroomedia!

    Please don’t edit anything on the theme files. Go to Enfold > Footer > Copyright then place the [nolink] tag on the field.

    Cheers!
    Ismael

    in reply to: blank page for editing with Advanced Layout Editor #203606

    Hi!

    Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then check it on another browser.

    Regards,
    Ismael

    Hey odeya!

    This will only work if you’re not using the Advance Layout Builder for your pages. Edit page.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );

    Below, add this code:

    //wordpress function that loads the comments template "comments.php"
                            comments_template( '/includes/comments.php');

    Edit the page then make sure that the Allow Comments option under Discussions box is enabled.

    Cheers!
    Ismael

    in reply to: Blank text blocks in the Avia Layout Builder #203603

    Hi!

    Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then test it on another browser.

    Regards,
    Ismael

Viewing 30 posts - 61,711 through 61,740 (of 66,939 total)