Forum Replies Created

Viewing 30 posts - 58,621 through 58,650 (of 67,175 total)
  • Author
    Posts
  • in reply to: woocommerce catalog #257627

    Hi!

    Thank you for using the theme.

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

    .single-product form.cart {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Assigning ID to button Element #257620

    Hi!

    I’m not sure why the code doesn’t work for you but do you mind if we ask why you need an id to the button? Maybe knowing why you need it can give us a better understanding on how to approach the problem. You can actually edit the config-templatebuilder > avia-shortcodes > slideshow.php and look for the button code on line 792:

    $button_html .= "<a href='{$link}' {$blank} class='avia-slideshow-button avia-button avia-color-{$button_color} {$button_count}' data-duration='800' data-easing='easeInOutQuad'>";
    

    You can add the id there but every button generated on the full screen slider will have the same id which might cause some conflict.

    Regards,
    Ismael

    in reply to: Problems with Fullwidth Masonry Gallery #257615

    Hey Ivana!

    Thank you for using the theme.

    Looks like it is happening randomly. I tested it on Chrome, load the website and 1 out 5 refresh the issue appear. Please try to optimize the website, see if it helps. Usually minimizing the image sizes and number of plugins that you install will greatly improve the performance. These are the things that you can do to optimize the website speed and page load courtesy of the wordpress community:

    1. Optimize all images with AI/Photoshop before uploading to server ‘save as web safe’ jpg
    2. Once all images are on the website optimize with ewww optimizer plugin twice 1hr 10mins apart.
    3. Install wp-smushit run once to remove jpeg extra data, then uninstall.
    4. Use BWP minify plugin to minify scripts and stylesheets.
    5. Install WP-Super cache, select all recommended settings.
    6. Logout your website, visit every page at least once to create super cache files.
    7. Join Cloudflare setup your website on their CDN, Choose options: Full CDN Optimisation save then activate purge files. once done log out.
    8. Have a cup of coffee.
    9. Visit your site after 20 minutes or so.
    10. Don’t forget to smile.

    Best regards,
    Ismael

    in reply to: Function to remove mega menu #257608

    Hi hamzahmauzam!

    Thank you for using the theme!

    Please add this on the child theme’s functions.php:

    function ava_css_dashboard() {
    echo '<style type="text/css"> p.description.description-wide.avia_checkbox.avia_mega_menu {display: none; !important} </style>';
    }
    
    add_action('admin_head', 'ava_css_dashboard');

    Regards,
    Ismael

    in reply to: Enfold Page Template crashing – losing content on page #257582

    Hey Fred!

    Please switch your advance layout builder to debug mode. Edit function.php, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. Try to copy the shortcodes on another page. Let us know if it works.

    Regards,
    Ismael

    in reply to: Problem whit the advanced layout editor #257579

    Hey!

    Thank you for the update.

    Please add it at the very bottom of functions.php. Make sure to remove browser and plugin cache. If I am not mistaken, the patch to fix the text block should be out in a few days. Please wait for it.

    Cheers!
    Ismael

    in reply to: Lost shortcodes #257031

    Hey Surensuren!

    Thank you for using the theme!

    Did you update to WP 3.9? Please download the Enfold latest version 2.7 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    Hey Jez!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css:

    .avia-fullscreen-slider .avia-slideshow-inner {
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    -moz-transform: translate3d(0px, 0px, 0px) !important;
    -ms-transform: translate3d(0px, 0px, 0px) !important;
    transform: translate3d(0px, 0px, 0px) !important;
    }

    Cheers!
    Ismael

    in reply to: Page Title in posts #257026

    Hey CloudChoice!

    Thank you for using the theme.

    Please use this on functions.php to replace the title with the post title:

    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    return $args;
    }

    Regards,
    Ismael

    in reply to: Post Slider – rearrange elements (date, read more, etc) #257024

    Hey!

    What do you mean by access the Content Elements? Do you want to edit the code? You can find all avia shortcodes on config-templatebuilder > avia-shortcodes folder.

    Cheers!
    Ismael

    in reply to: Parallax problem in tablets #257023

    Hey!

    Thank you for the info.

    Do you mind posting a screenshot? Please add this on Quick CSS or custom.css:

    .avia-android div.av-parallax.avia-full-stretch {
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0,0,0) !important;
    -ms-transform: translate3d(0,0,0) !important;
    -moz-transform: translate3d(0,0,0) !important;
    }
    

    Cheers!
    Ismael

    in reply to: Testimonial Grid #257022

    Hey Bodymindlinks!

    Thank you for using the theme!

    Insert the Testimonial element using the shortcode wand or the Advance Layout Builder then change the Testimonial Style to Grid.

    If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Cheers!
    Ismael

    in reply to: Random line breaks in tabs on mobile #257019

    Hi!

    Thank you for using the theme. There is a hidden space html entity right after the “completed” word which makes it look like this “completed&nbps ;RETURN” rendering it as one word. Please try to retype the paragraph or the sentence, see if that helps. Add this on Quick CSS or custom.css:

    .active_tab_content p {
    word-break: break-word;
    }

    Regards,
    Ismael

    in reply to: Page arrow slider order #257013

    Hey MeryVi!

    Thank you for using the theme.

    Please add this on functions.php to sort the next or previous page navigation by category:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['same_category'] = true;  
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10);

    The downside is, it will only filter the current category.

    Cheers!
    Ismael

    in reply to: add phone # to the right of Nav Menu Bar #257010

    Hey!

    Yes, just add it on the child theme’s functions.php.

    Regards,
    Ismael

    in reply to: CSS for button + icon list color #257009

    Hi Fudge!

    Thank you for using the theme!

    You can select your own color when you insert the button shortcodes. Edit the option then look for the Button Color, scroll below, choose the Custom Color. You can change the icon list icon color with this:

    span.iconlist-char {
    color: red;
    }

    And the icon list background using this:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: blue;
    }

    Best regards,
    Ismael

    in reply to: link in the menu #257008

    Hey!

    Thank you for the info.

    I tried to add a menu and it works fine although the speed is real slow. Please deactivate all plugins especially the TinyMCE Advanced plugin then we’ll check it again. Thanks!

    http://www.6-sens.fr/agence-communication-globale/wp-admin/nav-menus.php

    Cheers!
    Ismael

    in reply to: Links to blog posts #257007

    Hi!

    Thank you for the update.

    I just noticed that you’re using a very old version of the theme, 1.3.1. Please update to WordPress 3.9 then download the latest version of Enfold from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    in reply to: Ajax Portfolio broke after W3-totalcache #257005

    Hi faterra!

    Thank you for using the theme!

    You might want to increase the wordpress php memory limit to at least 128M. Depending on your hosting environment you might experience an issue when trying to access the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:

    define( 'WP_MEMORY_LIMIT', '128M' );
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );

    You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Change footer highlight/active state #257002

    Hi rickmcl!

    Thank you for using the theme!

    Did you add any widgets on the footer widget areas? The default style does not have a menu background. Do you mind if we take a look at the actual website?

    Best regards,
    Ismael

    in reply to: Images won't load in Lightbox #257001

    Hi ssasi!

    Thank you for using the theme.

    Have you tried recreating the gallery element from scratch? Transferring the site should be done using this plugin: WP MigrateDB or WP MigrateDB PRO

    Refer to this link for more info: http://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Best regards,
    Ismael

    in reply to: Sidebar Alignment #257000

    Hey!

    Thank you for the update.

    Is this the page you’re trying to duplicate? http://kriesi.at/themes/enfold/pages/

    Please edit the page then set the Layout to No Sidebar. Add the Fullscreen slider on top of everything then insert 1/4 and 3/4 column layouts below. Add the Widget Area element on the 1/4 column layout and the content on the 3/4 column. I hope that helps.

    Best regards,
    Ismael

    in reply to: No link in the button promo box? #256999

    Hey!

    Thank you for the info.

    Once you activated the child theme, you don’t have to deactivate it. Just override the parent theme files via FTP. The child theme will be updated automatically unless you copied a file on the child theme folder.

    Cheers!
    Ismael

    in reply to: Separate Logo image for Mobile #256998

    Hi headbentdesign!

    Thank you for using the theme!

    If you don’t mind, we would like to see the actual website. A screenshot how you want the logo to look like will help. Maybe, you can set the logo as background when viewing on mobile device. Add this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo img {
    display: none;
    }
    
    .responsive.html_header_top.html_logo_center .logo {
    background: url('IMAGE URL HERE') no-repeat;
    width: 100px;
    height: 70px;
    }
    }

    The logo image size should correspond on the width and height property that you set on the css.

    Best regards,
    Ismael

    in reply to: Error when trying to view a blog post #256997

    Hey tangodaddio!

    Thank you for using the theme.

    Do you mind if we take a look at the current website? We would like to check it. Make sure that you’re running the latest version of Enfold which is version 2.7.

    Best regards,
    Ismael

    in reply to: Every theme works but enfold frontside doesn't work #256954

    Hey guneybil!

    We’re sorry that you’re having this issue.

    If you don’t mind, please post the url of the website here. We would like to check it. Please download the latest version Enfold 2.7 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    in reply to: Image Upload, Mulitple Images Created #256953

    Hey!

    Thank you for the info.

    Do you mind if we take a look at the website? What exactly is the error? Please try to ask your host. We’ll provide you with a proper response once we have taken a look at the website.

    Best regards,
    Ismael

    in reply to: Issue with woocommerce sold out plugin #256951

    Hi!

    Thank you for using the theme!

    Please add this on Quick CSS or custom.css to fix the sold out notice:

    span.soldout {
    min-height: 52px;
    min-width: 52px;
    padding: 4px;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    text-align: center;
    line-height: 52px;
    top: 6px;
    left: 6px;
    margin: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 40px;
    background: #C11B17;
    background: -webkit-gradient(linear,left top,left bottom,from(#C11B17),to(#7E2217));
    background: -webkit-linear-gradient(#C11B17,#7E2217);
    background: -moz-linear-gradient(center top,#C11B17 0,#7E2217 100%);
    background: -moz-gradient(center top,#C11B17 0,#7E2217 100%);
    text-shadow: 0 -1px 0 #7E2217;
    color: #fff;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),inset 0 -1px 0 rgba(0,0,0,0.2),0 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),inset 0 -1px 0 rgba(0,0,0,0.2),0 1px 2px rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3),inset 0 -1px 0 rgba(0,0,0,0.2),0 1px 2px rgba(0,0,0,0.2);
    }

    Regards,
    Ismael

    Hey!

    Thank you for using the theme!

    Please edit includes > helper-post-formats.php, find this code on line 164:

    if(!function_exists('avia_image_slideshow_filter'))
    {
    	function avia_image_slideshow_filter($current_post)
    	{
    
    		$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
    		$image = "";
    
    		if(!$prepend_image)
    		{
    			$image		= avia_regex($current_post['content'],'image');
    			if(is_array($image))
    			{
    				$image = $image[0];
    				$prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>';
    			}
    			else
    			{
    				$image		= avia_regex($current_post['content'],'<img />',"");
    				if(is_array($image))
    				{
    					$prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>";
    				}
    			}
    		}
    		else
    		{
    			$prepend_image = '<div class="avia-post-format-image">'.$prepend_image."</div>";
    		}
    
    			if(!empty($prepend_image) && is_string($prepend_image))
    			{
    				if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    				$current_post['before_content'] = $prepend_image;
    				$current_post['slider']  = "";
    			}
    
    		return avia_default_title_filter($current_post);
    	}
    }

    Replace it with this:

    if(!function_exists('avia_image_slideshow_filter'))
    {
    	function avia_image_slideshow_filter($current_post)
    	{
    
    		$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
    		$imagelink = get_permalink();
    		$image = "";
    
    		if(!$prepend_image)
    		{
    			$image		= avia_regex($current_post['content'],'image');
    			if(is_array($image))
    			{
    				$image = $image[0];
    				$prepend_image = '<div class="avia-post-format-image"><a href="'.$imagelink.'"><img src="'.$image.'" alt="" title ="" /></a></div>';
    			}
    			else
    			{
    				$image		= avia_regex($current_post['content'],'<img />',"");
    				if(is_array($image))
    				{
    					$prepend_image = '<div class="avia-post-format-image"><a href="'.$imagelink.'">'.$image[0]."</a></div>";
    				}
    			}
    		}
    		else
    		{
    			$prepend_image = '<div class="avia-post-format-image"><a href="'.$imagelink.'">'.$prepend_image."</a></div>";
    		}
    
    			if(!empty($prepend_image) && is_string($prepend_image))
    			{
    				if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    				$current_post['before_content'] = $prepend_image;
    				$current_post['slider']  = "";
    			}
    
    		return avia_default_title_filter($current_post);
    	}
    }
    

    Cheers!
    Ismael

    in reply to: Archive PAGEs #256943

    Hey!

    Thank you for the info.

    I’m not sure if this is what you want but you can set the post format to “Link” then add the url of the page where you want to redirect.

    Regards,
    Ismael

Viewing 30 posts - 58,621 through 58,650 (of 67,175 total)