Viewing 30 results - 214,351 through 214,380 (of 244,474 total)
  • Author
    Search Results
  • #312647

    In reply to: Content Slider Issue

    Hi Andrew!

    Thank you for using Enfold.

    You currently set the content slider to 4. Can you please toggle it back to 3 so that we can see the issue? I tested this on my installation and 3 columns on content slider works fine.

    Regards,
    Ismael

    #312643

    Hi jansthh!

    Thank you for using Enfold.

    You can add this on Quick CSS or custom.css to apply a background on the menu container:

    div#header_main_alternate {
    background: #a4aba0;
    }

    Use this at the very bottom of functions.php to add extra elements on the header container:

    function add_stuff_to_header_func() {
    	?>
    	HTML_CONTENT_HERE OR ANYTHING YOU FANCY HERE
    	<?php
    }
    add_action('ava_main_header', 'add_stuff_to_header_func')

    Cheers!
    Ismael

    #312640

    Hey!

    Thank you for using Enfold.

    IE8 doesn’t recognize media queries that is why you’re seeing spacing issues. Honestly, I will not expect much from an old hag browser like IE8. The only major issue that I noticed on browser is the menu overlapping the logo which can be fixed with this on Quick CSS or custom.css:

    .avia-msie-8 .av-main-nav > li > a {
    padding: 0 6px;
    font-size: 11px;
    }
    
    .avia-msie-8 .logo a img {
    width: 60%;
    top: 5px; 
    }

    Cheers!
    Ismael

    #312637

    In reply to: Header Image Issue

    Hey!

    Perhaps the problem is that your CDN is fetching an old dynamic style without the new code:
    http://drfl887i3kkdr.cloudfront.net/wp-content/uploads/dynamic_avia/enfold.css?ver=1

    Best regards,
    Josue

    #312636

    Hey bemofunny!

    Thank you for using Enfold.

    You can change the background of the icon list icon invidividually with this on Quick CSS or custom.css:

    .main_color .avia-icon-list li:first-child .iconlist_icon {
    	background: red;
    }
    
    .main_color .avia-icon-list li:nth-child(2) .iconlist_icon {
    	background: blue;
    }
    
    .main_color .avia-icon-list li:nth-child(3) .iconlist_icon {
    	background: green;
    }
    

    Cheers!
    Ismael

    #312631

    In reply to: Images doubt

    Hi odmv91!

    Thank you for using Enfold.

    Yes, it is ok to replace the images via FTP but make sure that you retain the image file name. You can change the thumbnail sizes on functions.php, look for this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider

    You can also use this plugin in order to change the thumbnail sizes directly on the wp dashboard: https://wordpress.org/plugins/simple-image-sizes/

    Cheers!
    Ismael

    #312630

    Hi GOWD!

    Thank you for using Enfold.

    You can decrease the font size of the phone info on mobile devices:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .phone-info {
    font-size: 13px;
    }
    }

    Go to Enfold > Header > Mobile Menu panel. Choose the second option on Header Mobile Menu activation to show the mobile menu earlier.

    Cheers!
    Ismael

    #312627

    Hey optimized!

    Thank you for using Enfold.

    Can you please edit the spanish masonry page? Toggle the Masonry Size Settings again. If that doesn’t work, please post the login details here and set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    #312625

    Hi midischool!

    Thank you for using Enfold.

    I tested the youtube url that you provided using the Video element and it works fine. Please try to deactivate all plugins then test it again. Anyway, where are the youtube videos located? I can’t find any on the home page.

    Cheers!
    Ismael

    #312609

    Hey tgdigitalsolutions!

    Probably not :(

    I *love* working with Bootstrap but there are going to be conflicts which you’ll need to resolve one way or another. So it would be less time consuming I would guess to copy over the raw HTML into a code element and then re-style it with css that doesn’t conflict with any theme rules.

    You could *try* adding the code for it into a code element and then enqueing bootstrap but it’ll be a gamble on what/any conflicts might pop up.

    You could also try using the themes pricing table too: http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/

    Regards,
    Devin

    Here is an example: https://github.com/DevinVinson/enfold-child-docs

    That is the same child theme I used on the documentation site and I’ve edited the magazine element to use the last updated date instead of the published date.

    You could also clone or fork this child theme where I have things set up already: https://github.com/DevinVinson/enfold-child-starter

    Sorry to be so dense. Are you saying that I should have a folder structure in my enfold-child theme folder that looks like this?
    enfold-child
    config-templatebuilder
    avia-shortcodes
    postslider.php

    Hi siestajoye!

    Enfold is just like any other WordPress theme and using a child theme. To replace an element from the layout builder in a child theme however you need to use a function to tell the theme you are doing that.

    See: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Cheers!
    Devin

    siestajoye
    Participant

    I am trying to eliminate the reference to post date that shows up when using the multi-author blog page in Enfold. I turned off the date easily for the single post using the theme options – but all of the support information I can find about removing this seems to indicate that I should be changing the postslider.php file in the parent theme directly.
    I am very new to this theme, but have always been told to never, ever make changes like this in the parent theme files or I will lose them every time there is an update. In fact, I have seen others asking the same about using a child theme – but I don’t really understand the answers I am seeing.

    What I am seeing when I do “inspect element” is in the attached image. Could someone please help me with 2 things:
    1. Exactly what needs to be changed to remove any reference to the post date and exactly where to make that change.
    2. What is the standard procedure for using a child theme with Enfold? I get that somehow it is called differently than other themes? My experience to date has been that I only need to add the changed code to my functions.php file; but I think I am understanding that is not always the case with Enfold? Is that correct?

    Thank you for your assistance. I have spent a great deal of time looking at your many videos and reading the forums and have simply not been able to figure this out myself.

    #312580
    glen
    Participant

    I recently noticed that Enfold doesn’t play nice with Firefox, and by viewing my site in Chrome and Safari, it works perfectly. I created a screenshot to show how the background image doesn’t span correctly, and the vertical line that separates the body and sidebar is jacked up, but I can’t upload an image in your forum…

    Any idea why this is happening?

    Thank you,

    #312575

    Hey there!!!

    I’m starting with the enfold theme and I’m using Contact Forms but I didn’t receive the email when I completed the form. I’m using Gmail!. Did you can help me with this problem?

    Many thanks,
    Roger

    #312567

    @Dude,

    Thank Peter. So just to clarify the process I should go through?

    I made the work around as suggested by Time.ly (I presume this will be overwritten if and when they do an update) ?

    I already have an Enfold Child Theme set up (followed the great vid you guys posted)

    So should I create a new file called helper-social-media.php and just put the second line you suggest above?
    and at what level in the child directory should I add it? do i make a new folder too?

    Sorry, just not too technical yet. I need step by step instructions. Hope you can assist.

    Many thanks,
    H

    #312564
    ernst86913
    Participant

    Dear all, unfortunately my webpage is not working properly anymore… several effects are missing (e.g. GoUpButton which automatically appears) or things are not displayed right (e.g. tabs)… when taking a look at the debug console I found the following error logs attached below… any idea what could be wrong here?

    GET http://new.communitycloud.at/wp-content/themes/enfold/js/prettyPhoto/css/prettyPhoto.css?ver=1 404 (Not Found) new.communitycloud.at/:87

    GET http://new.communitycloud.at/wp-content/themes/enfold/js/prettyPhoto/js/jquery.prettyPhoto.js?ver=3.1.5 404 (Not Found) (index):915

    Uncaught TypeError: undefined is not a function avia.js?ver=1:876

    Thanks a lot for your help!

    #312562
    Toppsgear
    Participant

    Hi,
    I just install the Enfold template which was fine but after installing the dummy data, the page now has duplicate menu text on all pages.
    I only press the button once and did not refresh the page either.
    I would appreciate your quick response.
    Thanks

    #312561

    Hi Yigit
    Can’t link – The site is on localhost until ready. Soorry
    Here is screenshot 1: http://www.henningdaverne.dk/wp-content/uploads/2014/09/henningdaverne-icon.png
    Screen shoot #2
    Hope that helps.
    Thx for your help!

    Peter

    #312550

    How would I successfully recreate this using a child theme?

    Would I add magazine.php to ‘enfold-child’, then just add this new code below <?php?

    Or must I use both of the codes you provided above? Or do I copy the entire magazine.php to ‘efnold-child’? I tried this with functions.php using the live preview and received a fatal error message.

    Please excuse me, for I am new to this and just learning how to use the child theme.

    Thanks!

    #312547

    Hey!

    If you use a child theme you can modify the av_image shortcode to your needs, refer to this article:
    http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Cheers!
    Josue

    #312541

    Hi ProAnts!

    Please go to Enfold/framework/php folder and open class-framework-widgets.php file and find

    `
    
    function widget($args, $instance) {
    			// prints the widget
    
    			extract($args, EXTR_SKIP);
    			$twitter = empty($instance['twitter']) ? '' : $instance['twitter'];
    			$rss 	 = empty($instance['rss'])     ? '' : $instance['rss'];
    			$rss = preg_replace('!https?:\/\/feeds.feedburner.com\/!','',$rss);
    
    
    			if(!empty($twitter) || !empty($rss))
    			{
    				$addClass = "asc_multi_count";
    				if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count';
    
    				echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if($rss)
    				{
    					$output .= "<a href='$rss' class='asc_rss $addClass'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".__('Subscribe','avia_framework')."</strong><span>".__('to RSS Feed','avia_framework')."</span></a>";
    				}`

    and change it to

    `
    function widget($args, $instance) {
    			// prints the widget
    
    			extract($args, EXTR_SKIP);
    			$twitter = empty($instance['twitter']) ? '' : $instance['twitter'];
    			$facebook = empty($instance['facebook']) ? '' : $instance['facebook'];
    
    			if(!empty($twitter) || !empty($rss))
    			{
    				$addClass = "asc_multi_count";
    				if(!isset($twitter) || !isset($rss)) $addClass = 'asc_single_count';
    
    				echo $before_widget;
    				$output = "";
    				if(isset($twitter))
    				{
    					$link = 'http://twitter.com/'.$twitter.'/';
    					$before = apply_filters('avf_social_widget', "", 'twitter');
    					$output .= "<a href='$link' class='asc_twitter $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Twitter','avia_framework')."</span></a>";
    					
    				}
    
    				if(isset($facebook))
    				{
    					$link = 'http://facebook.com/kriesi.at/';
    					$before = apply_filters('avf_social_widget', "", 'facebook');
    					$output .= "<a href='$link' $addClass'>{$before}<strong class='asc_count'>".__('Follow','avia_framework')."</strong><span>".__('on Facebook','avia_framework')."</span></a>";
    					
    				}`

    Please do not forget to change Facebook link

    Cheers!
    Yigit

    #312535

    Hey!

    1- Can you firstly uncheck “Let logo and menu position adapt to browser window” in Enfold theme options > Header Layout > Header Behaviour?
    2- Please add following code to Quick CSS

    .avia-button {
    border-radius: 25px!important;
    }

    3- Please post the link to your page where we can see an example
    4- Please refer to my post here – https://kriesi.at/support/topic/how-to-control-the-css-in-widget/#post-310956

    Regards,
    Yigit

    #312531

    Hi NickyCheese!

    Please go to Enfold/framework/php folder and open function-set-avia-frontend.php and find

    $title = get_bloginfo('name').' | ';

    and change it to

    $title = get_bloginfo('name').'';

    Cheers!
    Yigit

    #312517

    Hey rubieandersson!

    Please go to Enfold theme options > General Styling tab and adjust element colors

    Regards,
    Yigit

    #312516

    Hey jeffreyvanoostrom!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .avia-desc-col li.avia-pricing-row {
    font-size: inherit;
    font-weight: inherit;
    }

    Cheers!
    Yigit

    #312515
    tgdigitalsolutions
    Participant

    I’ve got a web page (responsive pricing table and some other info) I put together using Bootstrap framework for what was going to be a separate website. So the whole site was being built with Bootstrap as the core.

    Now the project has changed and instead they want to incorporate the pricing page into our existing website, which was done with Enfold WordPress theme.

    I’d prefer not to have to redo that pricing page as I’m not really a coder per se, so it can take quite a while for me to get things figured out.

    Is there a way that I can just plug in the appropriate references for Bootstrap (and Font Awesome since I used those for icons) and leave the page pretty much intact?

    Thanks in advance!

    Tom

    #312513

    Hey solarmediapro!

    You can enable debugging mode to see shortcodes you have created in pages using Advanced Layout Builder – http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
    You can switch to Default Editor and click on Magic Wand to see full list of shortcodes http://i.imgur.com/n4KXkdm.jpg
    then you can create any of them and copy/paste shortcode into any other content element or into text widget.
    There are so many shortcodes with so many options so we do not have a list of shortcodes. Also all pages on demo site created using Advanced Layout Builder

    Cheers!
    Yigit

    #312511

    In reply to: Display problem

    Hey!

    Glad you figured it out!
    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)

    Regards,
    Yigit

Viewing 30 results - 214,351 through 214,380 (of 244,474 total)