Forum Replies Created

Viewing 30 posts - 60,241 through 60,270 (of 67,155 total)
  • Author
    Posts
  • in reply to: Specify Logo Image Dimensions #232044

    Hi!

    You can copy the whole function code on your child theme’s function.php. I think YIgit is referring to the avia_logo function:

    if(!function_exists('avia_logo'))
    {
    	/**
    	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
    	 * otherwise display the logo file linked in the css file for the .bg-logo class
    	 * @return string the logo + url
    	 */
    	function avia_logo($use_image = "", $sub = "", $headline_type = "h1")
    	{
    		$use_image 		= apply_filters('avf_logo', $use_image);
    		$headline_type 	= apply_filters('avf_logo_headline', $headline_type);
    		$sub 			= apply_filters('avf_logo_subtext',  $sub);
    		$alt 			= apply_filters('avf_logo_alt', get_bloginfo('name'));
    		$link 			= apply_filters('avf_logo_link', home_url('/'));
    		
    		if($sub) $sub = "<span class='subtext'>$sub</span>";
    
    		if($logo = avia_get_option('logo'))
    		{
    			 $logo = "<img src='{$logo}' alt='{$alt}' />";
    			 $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    		}
    		else
    		{
    			$logo = get_bloginfo('name');
    			if($use_image) $logo = "<img src='{$use_image}' alt='{$alt}' title='{$logo}'/>";
    			$logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>";
    		}
    
    		return $logo;
    	}
    }

    Regards,
    Ismael

    in reply to: Enfold: Portfolio Sort Menu #232042

    Hi yongjlee0120!

    Can you please give us a link to the website? Did you add any plugin prior to the issue? Please download the latest version of the Enfold theme. Update it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Ismael

    Hi jmikhail!

    You can find these codes on css > layout.css. Select the social icons that you’re using then place the modified code on Quick CSS or custom.css:

    #top .social_bookmarks_rss:hover	   a{color:#fff; background-color:#ffa133; }
    #top .social_bookmarks_facebook:hover  a{color:#fff; background-color:#37589b; }
    #top .social_bookmarks_twitter:hover   a{color:#fff; background-color:#46d4fe; }
    #top .social_bookmarks_mail:hover      a{color:#fff; background-color:#9fae37; }
    #top .social_bookmarks_dribbble:hover  a{color:#fff; background-color:#e44885; }
    #top .social_bookmarks_linkedin:hover  a{color:#fff; background-color:#419cca; }
    #top .social_bookmarks_search:hover    a{color:#fff; background-color:#222222; }
    #top .social_bookmarks_gplus:hover     a{color:#fff; background-color:#de5a49; }
    #top .social_bookmarks_behance:hover   a{color:#fff; background-color:#008cfa; }
    #top .social_bookmarks_flickr:hover    a{color:#fff; background-color:#ff0086; }
    #top .social_bookmarks_forrst:hover    a{color:#fff; background-color:#234317; }
    #top .social_bookmarks_myspace:hover   a{color:#fff; background-color:#000000; }
    #top .social_bookmarks_tumblr:hover    a{color:#fff; background-color:#345574; }
    #top .social_bookmarks_vimeo:hover     a{color:#fff; background-color:#31baff; }
    #top .social_bookmarks_youtube:hover   a{color:#fff; background-color:#a72b1d; }
    #top .social_bookmarks_pinterest:hover a{color:#fff; background-color:#cb2027; }
    #top .social_bookmarks_skype:hover 	   a{color:#fff; background-color:#12a5f4; }
    #top .social_bookmarks_instagram:hover a{color:#fff; background-color:#a67658; }
    #top .social_bookmarks_five_100_px:hover a{color:#fff; background-color:#222222; }
    #top .social_bookmarks_soundcloud:hover  a{color:#fff; background-color:#F76700; }
    #top .social_bookmarks_xing:hover 	     a{color:#fff; background-color:#006567; }

    You can change the background-color to yellow.

    Regards,
    Ismael

    Hi!\

    You didn’t apply the code. The image should resize to 800px. Please add this below to make resize the image up to 1200px:

    #top .fullsize .template-blog .post .entry-content-wrapper img.size-full {
    width: 1200px;
    max-width: 1200px;
    position: relative;
    left: -20%;
    }

    Regards,
    Ismael

    in reply to: Exclude Custom Taxonomy from Masonry Grid #232039

    Hey!

    Please configure the Blog Posts option then look for “Do you want to display blog posts?” > select “Display entries from a custom taxonomy”.

    Regards,
    Ismael

    Hey eperi!

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

    if(!is_admin()){
    add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
    }
    
    function avia_register_frontend_scripts()
    {
    	$template_url = get_template_directory_uri();
    	$child_theme_url = get_stylesheet_directory_uri();
    
    	//register styles
    	wp_register_style( 'avia-style' ,  $child_theme_url."/style.css", array(), '1', 'screen print' ); //register default style.css file.
    
    	//register styles
    	wp_enqueue_style( 'avia-style');
    
    }

    Best regards,
    Ismael

    in reply to: Blog Post View #231723

    Hi!

    I checked the website and the blog looks ok. I even removed the sidebar for “RATING DA REPÚBLICA” page and the blog is fine. Please remove browser cache then reload the page a few times. I don’t see the issue on the screenshot above.

    Cheers!
    Ismael

    in reply to: change the related posts no image icon #231719

    Hey!

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

    .related-format-icon.related-format-visible {
    background: url('http://localhost/kriesi/enfold/wp-content/uploads/2012/04/013-180x180.jpg') no-repeat 50% 50%;
    }

    Replace the image url.

    Regards,
    Ismael

    in reply to: Mainmenu – Link Description? #231708

    Hey fritz_enfold!

    What do you mean by “not updateable”? You can actually create a copy of the includes folder on the child theme then add the helper-responsive-megamenu.php file inside.

    Regards,
    Ismael

    in reply to: Custom "Content Elements" & "Layout Elements" #231705

    Hey fritz_enfold!

    You can add your own elements on config-templatebuilder > avia-shortcodes. Please hire a freelance developer if you’re not sure how. For further modifications, please visit Werkpress. You can use this plugin if you want to insert php codes on Text Blocks: http://wordpress.org/plugins/insert-php/

    Cheers!
    Ismael

    Hey wendyhomola!

    Please give us a link to the website. You should download the 2.5.4 version which includes an improved youtube integration. See if that helps. This is the change log for 2.5.4:

    Files that changed:
    - style.css - new version number
    - js/shortcode.js - improved youtube integration
    - folder: config-templatebuilder: small adjustments and bugfixes

    Best regards,
    Ismael

    in reply to: issue with layer slider #231701

    Hey!

    Did you create the layerslider using some other theme? Please try to recreate them using the Enfold’s default layerslider. Another thing is that you’re using a very old version of the theme. Please download the latest version on your themeforest account then update the theme via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    in reply to: Switching to the Child Theme #231698

    Hey!

    The child theme style.css should have something like this:

    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    /*Add your own styles here:*/

    You can add the css modifications below.

    Regards,
    Ismael

    Hey!

    I’m not sure why it is not working but please try create a backup of the .htaccess file then delete it. Flush the permalink settings on Settings > Permalink, click the “Save” button once.

    Regards,
    Ismael

    in reply to: HELP! Video / Audio Player (changable content) #231692

    Hi!

    Maybe, this plugin will help: https://wordpress.org/plugins/html5-video-player-with-playlist/

    Regards,
    Ismael

    Hi Fiorilla!

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

    .error404 .widget.avia_combo_widget, .error404 h3 {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Enfold Woocommerce billing address page #231683

    Hi!

    I’m sorry but I can’t see the link to your website. I think it has been removed on your second post. I’ll ask Yigit to look at the site again. You should probably post the website url here again.

    Best regards,
    Ismael

    in reply to: Error Import Dummy Data #231678

    Hey!

    Please watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes

    Watch this one if you want an image on Mega Menus: https://vimeo.com/channels/aviathemes/67651241

    Remove the theme name on Enfold > Footer > Copyright, add the [nolink] tag.

    What do you mean by iconset? You can add portfolio pages using the Portfolio Grid element.

    Cheers!
    Ismael

    in reply to: sidebar widgets with wrong content #231673

    Hey oberton!

    Please give us a link to the website. A screenshot of the issue will help.

    Best regards,
    Ismael

    in reply to: portfoliopage and blog deasapeare… #231672

    Hey!

    I’m sorry for the delay. Did you add any plugins prior to the issue? You have 19 plugins installed, please try to deactivate them and check the website again.

    Best regards,
    Ismael

    in reply to: Custom Background Images #231667

    Hey!

    I was able to use the image that you uploaded on Enfold > Styling > Custom Background Image. Make sure that you click “Use Image” button after you uploaded the image.

    Best regards,
    Ismael

    Hey BabaOorhum!

    That is only available using the portfolio grid or masonry elements. You need to hire a freelance developer if you want to add it on something else. For further modifications, please visit Werkpress.

    Best regards,
    Ismael

    Hi HawthornTravel!

    I checked the page and I’m really not sure what’s wrong with it. I don’t see the issues mentioned above regarding the testimonials. A screenshot will help. Please contact the plugin author, we don’t usually support third party plugins. You can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests

    Cheers!
    Ismael

    in reply to: Facebook share doesn't work #231642

    Hi!

    Please use the Yoast SEO plugin, go to SEO > Social, tick the “Add Open Graph meta data” checkbox, login as facebook admin and then set the description + image. Afterwards save the settings. Make sure that there are no other SEO plugins installed. The images you’re uploading are not working.

    Cheers!
    Ismael

    in reply to: Facebook Share doesn't work correctly #231641

    Hey andreasgaide!

    Please use the Yoast SEO plugin, go to SEO > Social, tick the “Add Open Graph meta data” checkbox, login as facebook admin and then set the description + image. Afterwards save the settings. Make sure that there are no other SEO plugins installed.

    Cheers!
    Ismael

    in reply to: Blog page not accepting saved template #231637

    Hey!

    Please deselect the blog page on Enfold > Theme Options > Where do you want to display blog? option. Edit the blog page then add the Blog Posts element along with the other contents that you want to add. Reset the settings of Settings > Reading to default.

    Cheers!
    Ismael

    in reply to: Video content area You Tube code question #231634

    Hey!

    You’re using a very old version of the theme. Please download the latest version on your themeforest account then update it via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    Hi wrxer123!

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

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 1200px;
    }

    Best regards,
    Ismael

    Hi cyrusis!

    Unfortunately, that is not possible without major modification within the theme. Please hire a freelance developer. For further modifications, please visit Werkpress. On the other hand, you can setup a separate Enfold installation for the portfolio page only. Set it as responsive.

    Regards,
    Ismael

    in reply to: How to center video in a layersider slide? #231616

    Hi fgrippe!

    Can you please give us a link to the website? Go to the video layer then open the Style panel. On “Custom style settings”, add this code:

    margin: 0 auto; width: 20%; position: relative;
    

    You can change the width value if you want.

    Cheers!
    Ismael

Viewing 30 posts - 60,241 through 60,270 (of 67,155 total)