Forum Replies Created

Viewing 30 posts - 51,931 through 51,960 (of 67,519 total)
  • Author
    Posts
  • in reply to: No play icon on LayerSlider video thumbnails #390695

    Hi!

    Yeah. You’re right. Didn’t notice the video option. Try to use the video shortcode:

    http://dtcinsure.com/wp-admin/admin.php?page=layerslider&action=edit&id=6
    http://dtcinsure.com/test-page/

    You can add a poster or video thumbnail attribute: http://codex.wordpress.org/Video_Shortcode

    Regards,
    Ismael

    in reply to: Change Social Media Icons to their original color #390685

    Hi!

    Add the !important value:

    #top #wrap_all .av-social-link-facebook a{background-color:#37589B !important; color:#fff !important; }
    #top #wrap_all .av-social-link-twitter a{background-color:#46D4FE !important; color:#fff !important; }
    #top #wrap_all .av-social-link-gplus a{background-color:#DE5A49 !important; color:#fff !important; }

    Best regards,
    Ismael

    Hey!

    Replace the code with this:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
    	$sub .= "<strong class='logo-title'>Is the Ultimate Alternative to Having a<br> Human Teaching Assistant In a Home &<br> School Environment</strong>";
    	return $sub;
    }

    We added the br tags. We’ll get back to you after.

    Regards,
    Ismael

    in reply to: Custom headers on product categories pages #390676

    Hi!

    You can put something like this on functions.php:

    function ava_product_category_banner() {
    	if(has_term('artifact', 'product_cat')) {
    		echo "<div class='product_category_banner container_wrap'>ARTIFACT IMAGE HERE</div>";
    	} 
    	else if(has_term('treasure', 'product_cat')) {
    		echo "<div class='product_category_banner container_wrap'>TREASURE IMAGE HERE</div>";
    	}
    }

    Add the link to the image then change the product category. Below, add this:

    add_action('wp_footer', 'ava_product_category', 5);
    function ava_product_category(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
    		$('.product_category_banner').css('opacity', 1);
    		$('.product_category_banner').prependTo('.container_wrap.template-shop');
        });
    })(jQuery);
    </script>
    <?php
    }

    Go to Enfold > General Styling > Quick CSS field, add this:

    .product_category_banner {
    opacity: 0;;
    height: 100px;
    border-bottom: 1px solid gray;
    background: red;
    }

    You’ll have a fullwidth container on top of the product category page. All you need to do is to adjust the styling and add the images.

    Regards,
    Ismael

    in reply to: masonry page layout #390662

    Hey!

    That is strange. Have you tried removing the 1/1 column? Please download the latest version 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: Display Issue | Mobile | Firefox #390657

    Hi!

    Please edit the color section then a unique id attribute using the For Developers: Section ID field. Use “custom-section” for example. Add this on Quick CSS;

    @media only screen and (max-width: 767px) {
    .avia-mozilla #custom-section {
    max-height: 206px;
    height: 206px;
    }}

    If it doesn’t work, use this:

    @media only screen and (max-width: 767px) {
    .avia-mozilla-35 #custom-section {
    max-height: 206px;
    height: 206px;
    }}

    Cheers!
    Ismael

    in reply to: Masonry Gallery disposal #390655

    Hey!

    Thank you for using Enfold.

    Try to add this on Quick CSS or custom.css to increase the width of the masonry entries on larger screens:

    @media only screen and (min-width: 1800px) {
    .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry {
    width: 25.0%;
    }}

    Cheers!
    Ismael

    in reply to: Footer Problem On Home Page #390654

    Hi!

    Looks like the footer is fixed. Did you figure it out?

    Cheers!
    Ismael

    in reply to: Mobile Menu and WooCommerce Cart button don't look good #390647

    Hey!

    Try to replace this code with this:

    @media only screen and (max-width: 989px) {
    .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide {
    left: 240px;
    }}

    with this:

    @media only screen and (max-width: 989px) {
    .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { right: 80px; } }

    Add this below:

    @media only screen and (max-width: 767px) {
    .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { right: 90px; } }

    Regards,
    Ismael

    in reply to: Hide the term "posts" on tag archive page #390644

    Hi!

    You can add this on Quick CSS to remove the tag title:

    .tag h3.post-title.tag-page-post-type-title {
    display: none;
    }

    Try to add this on functions.php to disable the lightbox for featured images:

    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
    		{
    			
    			$large_image = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), 'extra_large' );
    			$post = get_the_permalink(get_the_ID());
    			$prepend_image = '<div class="avia-post-format-image"><a href="'.$post.'">'.$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']  = "";
    			}
    
    		
    		if(is_single(get_the_ID()) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['before_content'] = "";
    		
    		return avia_default_title_filter($current_post);
    	}

    Cheers!
    Ismael

    Hey DROR!

    Thank you for the screenshot but we need to see the actual website. Please post the website url here.

    Regards,
    Ismael

    in reply to: No me funciona la herramienta "leer más" #390633

    Hi!

    Yes, the read more tag will only work for blog posts. You can’t use on the advance layout builder.

    Best regards,
    Ismael

    Hey!

    Please use this code to fix the arrow issue:

    #wrap_all + .av-extra-border-element.border-extra-arrow-down {
    display: none !important;
    }

    Update the theme to 3.0.8.

    Regards,
    Ismael

    in reply to: Posting replies on this forum #390628

    Hi!

    Thank you for using Enfold.

    Can you please confirm if this is still happening? Might be a temporary hiccup on the forum server. Please test it again.

    Regards,
    Ismael

    in reply to: Language error after update to 3.0.8 #390626

    Hi!

    Please deactivate the theme options translation for now.

    if(!function_exists('avia_lang_setup'))
    {
    	add_action('after_setup_theme', 'avia_lang_setup');
    	function avia_lang_setup()
    	{
    		if(!is_admin())
    		{
    			$lang = apply_filters('ava_theme_textdomain_path', get_template_directory()  . '/lang');
    			load_theme_textdomain('avia_framework', $lang);
    		}
    	}
    }

    Regards,
    Ismael

    in reply to: bug: enfold resetting bbpress RTL #390623

    Hi largo6!

    Thanks for sharing.

    I’ll ask Kriesi to take a look.

    Cheers!
    Ismael

    in reply to: Increase scroll menu speed? #390619

    Hi!

    We tested this again on our installation and it works fine. Try to increase the value. Change it 15000. Let me know if the scroll animation slows down.

    Cheers!
    Ismael

    in reply to: Avia Codeblock wird nur als Platzhalter angezeigt #390616

    Hi plavinski!

    Thank you for using Enfold.

    Please post the table code on pastebin.com. We would like to check it.

    Regards,
    Ismael

    in reply to: Shortcodes not working for new plugin? #389959

    Hi!

    Have you tried using the shortcode on the default editor? Unfortunately, we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author. The html markup of the shortcode looks like this:

    <span class="str-rotate" data-str-animation="fadeIn" data-str-separator="|" data-str-speed="3000"> cool </span>
    

    There seems to be a missing class attribute (rotating, rotating flip etc) which defines the rotation effect:

    http://www.truthfairybook.com/wp-content/plugins/simple-text-rotator/css/simpletextrotator.min.css?ver=4.1

    Regards,
    Ismael

    in reply to: Mete info missing in blog post grid view #389950

    Hi!

    Maybe, we’re not on the same page. Can you please provide a link to the actual page/post? I can see the meta data below the post title: http://dev1.inspiraldesign.co/publications/

    Best regards,
    Ismael

    in reply to: Setting Logo Size Different for Home Page #389946

    Hi!

    In addition, try to place the code first on pastebin.com then paste it again to your editor. Some editors automatically converts symbols to their html entity code.

    Cheers!
    Ismael

    Hi!

    Glad it worked. Unfortunately, we won’t be able to help you further with ESSB plugin.

    Awesome plugin. Mind sharing it? :)

    Best regards,
    Ismael

    in reply to: Modify Blog Post widget options #389941

    Hey laptophobo!

    Thank you for using Enfold.

    Unfortunately, this particular request or modification is more than what we can offer as a support team. This task is beyond the scope of support and is not a theme related issue. Please hire a freelance developer or find a third party plugin that coincide with the theme. For further modifications, please visit Envato Studio or Werkpress.

    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.

    Cheers!
    Ismael

    in reply to: Team Member Short Code Deleting Elements #389940

    Hey Erich!

    Thank you for using Enfold.

    Did you add any html codes on the page? Make sure that you close the tags properly. A link to the actual site and a screenshot will help.

    Cheers!
    Ismael

    in reply to: Google+ in ENFOLD #389939

    Hi Jan!

    Thank you for using Enfold

    You can configure the social icon on Enfold > Social Profiles. Select Google Plus and then add g+ account url.

    Best regards,
    Ismael

    in reply to: Portfolio items #389937

    Hi!

    Please get the code from the link then copy it at the very bottom of functions.php file: http://pastebin.com/i9BD8jaH

    Best regards,
    Ismael

    in reply to: Switch from HTTP to HTTPS #389935

    Hi pristineio!

    Thank you for using Enfold.

    You can install this plugin: https://wordpress.org/plugins/wordpress-https/

    Regards,
    Ismael

    in reply to: Advanced Layout Editor #389934

    Hi icecreamjoe!

    Thank you for using Enfold.

    I’m sorry but you’re using an outdated version of the theme, 3.0. Please download the latest version 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

    in reply to: Border lines within featured images #389928

    Hey!

    Check it now: http://www.frank-schettler.de/blog/

    Regards,
    Ismael

    in reply to: Hide the term "posts" on tag archive page #389924

    Hi!

    Thank you for the screenshots.

    Please give us a link to the actual “tag” page. We would like to inspect it.

    Best regards,
    Ismael

Viewing 30 posts - 51,931 through 51,960 (of 67,519 total)