Viewing 30 results - 15,661 through 15,690 (of 16,891 total)
  • Author
    Search Results
  • #275449

    Hey Tetratus4!

    Thank you for visiting the support forum!

    Looks like the first two issues has to do with the theme not being the latest version. If you don’t mind, please post the website url here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 on WordPress 3.9 or higher. Regarding the contact form, yes, that is possible. Please create a page then insert the contact form element under the content element panel. If you want a more extensive forms, you can try the contact form 7 and Gravity Forms plugins.

    4.) You can’t switch between the Default Editor and the Advance Layout Builder. If you want to see the actual shortcode below the advance layout builder, edit functions.php and find this code on line 16:

    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. In case you have any questions, please 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. :)

    Best regards,
    Ismael

    #275444

    Hi Eve!

    Thank you for using the theme!

    Before doing this, please test it on a dummy site. First, edit functions.php, find this code on line 98:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    

    Replace it with:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>9999, 'height'=>9999, 'crop'=>false );						// images for portfolio entries (2,3 column)
    

    This will make sure that the theme will not crop the images and accept all proportions. After that, add this on Quick CSS or custom.css:

    #top .portfolio-preview-image .avia-gallery img {
    float: none;
    padding: 7px !important;
    width: auto;
    display: inline-block;
    }
    
    #top .portfolio-preview-image .avia-gallery .avia-gallery-big-inner {
    text-align: center;
    }

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #275004

    Hi Gabster!

    Please try to re-install all themes files via ftp: https://vimeo.com/channels/aviathemes/67209750 – maybe one or more files are corrupt and break the template builder. You can also try to increase the allocated php memory to 128M: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ and to deactivate all third party plugins/extensions – maybe a plugin triggers a js error which breaks the template builder.

    Cheers!
    Peter

    #274756

    Hey Stuart!

    This is not a theme issue, it’s related to the APC module for Apache:
    http://stackoverflow.com/questions/21897786/what-does-the-error-php-fatal-error-cannot-call-overloaded-function-for-non-ob

    It’s best to contact your hosting provider.

    Regards,
    Josue

    #274698

    Hola,

    Ese tamaño esta definido en functions.php, linea 99:

    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    

    Luego de hacer el cambio tienes que regenerar las imagenes.

    Saludos,
    Josue

    #274627

    I’m not seeing an issue in any of those layouts. The color section works exactly as intended and the layout is rendering exactly as intended on each.

    Are we looking at the same thing? The two screenshots in this .zip show what I have: http://www.sendspace.com/filegroup/zOjPKYss4c6J%2F2Dq25CzfA.

    The intended behavior you are describing makes sense if the color section is inside the column. Then the color section should only be as wide as the column is.

    However, here, the column is inside the color section. If we have column 1, column 2, and column 3, and these are within a color section, I haven’t given any specific instructions regarding the width of the color section. I have not told the layout builder to change this. I would expect the color section to act the way the documentation describes: “Color Sections, LayerSliders, and Masonry elements will always be full width and can not be placed next to a sidebar or inside column elements.” Saying that cutting off the color sections’ widths is “exactly as intended” contradicts the documentation.

    This is fundamentally an interaction design problem with implications in the software tool, not a purely software/web development problem (speaking as someone who has worked in both IxD and dev). In other words, if I want to make a color section that is only as wide as my columns (or 3 columns wide), I need to tell the layout builder that I want that.

    But this is only a possible desired outcome, not a probable one. The probable outcome (as Heathcliffe and Flikk have asked for on this forum) is a full edge-to-edge color section. The tool should always be doing that consistently. I can’t really see anyone creating a color section that isn’t truly full-width, but in case anyone wants to, the color sections should have a preference that lets users make them as wide as possible or constrained to the columns. (Feature request for the ALB.)

    What exactly are you expecting to happen, that you’ve seen in the theme demo or on another installation of the theme, that is not happening there?

    I am expecting the color sections in the All test page to be as wide as my browser window. They are this wide in the Nested test page and your original test page.

    The theme demo’s Landing Page has full-width color sections with columns inside them: http://kriesi.at/themes/enfold/pages/landing-page/.

    Drivott (in the Enfold Theme Showcase) has the kind of layout I am trying to achieve: http://drivott.com/. Their homepage consists of full-width color sections with columns inside them. And it works as I expect.

    • This reply was modified 11 years, 10 months ago by DalandanUX.
    #274532
    This reply has been marked as private.
    #274515

    Ouch !

    Everything crashed, i don’t have access to my admin anymore….

    Edit : works again, but i deleted the piece of code. Where exactly should i copy paste this code ?

    Edit again : OK i did it, the exact file to modify is called functions-enfold.php , it works perfectly now, thanks :-)

    • This reply was modified 11 years, 10 months ago by jyp42.
    #274498

    So based on your suggestion, Yigit, this is what I’ve added to functions.php:

    	add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    	function avia_add_heading_font($fonts)
    	{
    	$fonts['Open Sans'] = 'Open Sans:300,400,700,800';
    	return $fonts;
    	}
    	
    	add_filter( 'avf_google_content_font',  'avia_add_content_font');
    	function avia_add_content_font($fonts)
    	{
    	$fonts['Open Sans'] = 'Open Sans:300,400,700,800';
    	return $fonts;
    	}

    Unfortunately it’s still not working. Still just standard font-weights. I tried clearing my caches and gave it some time, but maybe you could double-check the page in my previous post to see if it’s working or not?

    #274439
    gastus
    Participant

    Hi, guys!
    It’s my first post here, so first of all, I would like to thank You all for a great theme!!!

    How can i make the height of the color section be equal to the height of the image, selected as scrollable background?

    Example:

    For color section background (that will be scrolled with the page) i use an image of 1000x400px.
    The browser window is now 1000×900, so the image is stretched to its full width and its height is 400.
    The height of the color section in this case should be also 400px.

    Then I make the browser window narrower – 700px, leaving its height as it was – 900px.
    The background image is proportionally resized to 700×280.
    The size of the color section should also proportionally change to 700×280!

    This is of course usable when there is no content in color section.

    How can it be done?
    I’m ok changing php or css, so just tell me what to do, if its possible! )

    Thanks in advance!
    Andy

    #274366

    Hey!

    There is no reason why you couldn’t put a class in a ALB element within a portfolio item, look:
    http://www.therecoveryforum.org/wp-admin/post.php?post=3271&action=edit&message=6

    Best regards,
    Josue

    #274258

    Not necessarily, you can have this mod in a child theme. A duplicate of includes/loop-index.php in the child folder will do the trick.

    Regards,
    Josue

    #274191

    In reply to: Animated Numbers

    This reply has been marked as private.
    #273835

    Hey!

    You should import sql file to phpMyadmin. Please see this video tutorial – http://www.youtube.com/watch?v=CrpOAtDlQxk#t=372

    Regards,
    Yigit

    #273733

    Hey!

    Thank you for the update.

    Please go to wp-content/plugins folder then remove or rename the plugin folders. Test the advance layout builder again. If possible, please post the ftp login credentials here. We would like to check the wordpress files. There is an error in the console which says that the http://www.dresdner-konzept.de/web/wp-includes/js/tinymce/wp-tinymce.php file fails to load. Please make sure that the file permission for all wordpress folder are set to 755 and all files within wp-includes and wp-admin should be readable.

    Regards,
    Ismael

    #273650

    It’s a button found here:

    This video, although it’s outdated could help too. Don’t forget to pass the Angies icon code (parent functions.php to child functions.php).

    Best regards,
    Josue

    Hey Pedro!

    Add this to the theme functions.php:

    function custom_func() {
    	?>
    	<div id="mobilelogo">
    		<?php echo avia_logo('_MOBILE_LOGO_URL_HERE_', $addition, 'strong', true); ?>
    	</div>
    	<?php
    }
    add_filter('ava_after_main_menu', 'custom_func');
    

    And this to the Quick CSS:

    #mobilelogo .logo{
    	display: none;
    }
    @media only screen and (max-width: 767px) {
    	#mobilelogo .logo{
    		display: block;
    	}
    	.logo{
    		display: none;
    	}
    }

    Change as needed.

    Regards,
    Josue

    #273281

    Hi Josue,

    thank you! I changed the image size in functions.php – yet the displayed size is still 270px ;-)

    greetings, Ritchie

    Hi hadas!

    Thank you for visiting the support forum.

    I checked the old thread where Josue helped you and copied this code on functions.php:

    add_action('wp_enqueue_scripts', 'custom_rtl_include');
    function custom_rtl_include() {
    	$template_url = get_template_directory_uri();
    
    	if(is_page(2718)){
    		wp_enqueue_style(  'avia-rtl',  $template_url."/css/rtl.css", array(), '1', 'screen' );
    	}
    }

    Let us know if it works. This is the page: http://ithaca-psychotherapiepraktijk.nl/%D7%A2%D7%91%D7%A8%D7%99%D7%AA/

    Cheers!
    Ismael

    #272997

    Hi,

    Open functions.php and look for line 101:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it by this:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>360);		                 // big images for blog and page entries
    

    Regards,
    Josue

    • This reply was modified 11 years, 10 months ago by Josue.

    Hey!

    This is unfortunately not possible without changing the publishing date. We use two standard wordpress functions http://codex.wordpress.org/Function_Reference/get_next_post and http://codex.wordpress.org/Function_Reference/get_previous_post functions to query the next/previous post. Unfortunately these functions will ignore your custom order. If you want to change the order you can change the “Publish” date on the portfolio entry editor screen: http://www.clipular.com/c/6512378338344960.png?k=ePmDZIgkUwalUmwsnswk1m_t0Qw

    Alternatively you can use some php code to hide the buttons:

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

    Regards,
    Peter

    #272961

    Hi!

    Please contact the host provider/administrator. The session folder needs to be configured on the server and we can’t change or fix this with our theme files. Also see https://kriesi.at/support/topic/error-issues-with-masonry_entries-php-on-line-33/#post-271660 for more details.

    Best regards,
    Peter

    #272916
    This reply has been marked as private.
    #272885

    That should be put inside the <head> tag, try adding this to your theme functions.php:

    function zanox_meta_tag() {
    	echo "<meta name='verification' content='1e7eb744d2c73df06f2b4' />";
    }
    
    add_action('wp_head', 'zanox_meta_tag', 10, 0);
    

    Regards,
    Josue

    #272768

    Topic: Fatal Error

    in forum Enfold
    depthofeel
    Participant

    Hi,

    I don’t know what went wrong but out of nowhere i got a fatal error message on my main page.
    Previously was working fine but only today i realize its down. Sorry i am not a web designer so i really could use some professional help here.

    Warning: require_once(D:\Hosting\6407969\html\wp-content\plugins\jetpack/require-lib.php) [function.require-once]: failed to open stream: No such file or directory in D:\Hosting\6407969\html\wp-content\plugins\jetpack\jetpack.php on line 53

    Fatal error: require_once() [function.require]: Failed opening required ‘D:\Hosting\6407969\html\wp-content\plugins\jetpack/require-lib.php’ (include_path=’.;C:\php5\pear’) in D:\Hosting\6407969\html\wp-content\plugins\jetpack\jetpack.php on line 53

    If anyone could kindly help me out will be great!

    #272626

    Could you make functions.php writable (777)? so i can edit it directly from here:

    #272341

    Hi,
    I already updated WordPress to 3.9.1, all the plugins and the enfold theme, but I’ve got this error:

    Warning: session_start(): open(D:\Temp\php\session\\sess_jvhkbq1h9mv227ggf57icnemp0, O_RDWR) failed: No such file or directory (2) in D:\Hosting\10716695\html\berenice\wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\masonry_entries.php on line 33

    I didn’t modify theme files. It seems to me that is adding a double \\. How can I fix it?

    Thanks
    LC

    #272278

    Hey!

    Yes exactly – you need to add the code ( https://kriesi.at/support/topic/fullscreen-slider-pause-issue/#post-272276 ) to your child theme functions.php – otherwise the child theme won’t load the modified shortcodes.js file.

    Cheers!
    Peter

    #272266

    Hey!

    Yes, I forgot to set the “autoplay” variable to true. I corrected the code here: https://kriesi.at/support/topic/fullscreen-slider-pause-issue/#post-271664

    If you want to overwrite the default (parent theme) shortcode.js file with your child theme copy the shortcode.js file from the parent theme folder into the js folder of your child theme (i.e. the path looks like wp-content/themes/enfold-child/js/shortcodes.js) and add this code to the child theme functions.php file:

    
    if(!is_admin()) add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 1);
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
    	wp_dequeue_script('avia-shortcodes');
    	wp_enqueue_script( 'avia-shortcodes', $child_theme_url .'/js/shortcodes.js', array('jquery'), 1, true );
    }
    

    Cheers!
    Peter

    #272148
    nerkasa
    Participant

    Hello guys,

    1. I’d like to use the Advanced Layout editor when creating new posts.
    2. If that’s not possible, I’d like to create some sort of a custom layout or a custom template for all the new future posts that I will create – just like I build, save, and later load my own, custom built page templates.

    I have searched the forum and the Google, and found some relevant old topics here:
    https://kriesi.at/support/topic/how-to-add-advanced-layout-manager-to-blog-posts/ (edit meta.php)
    https://kriesi.at/support/topic/avia-layout-builder-elements-in-posts-comments-are-missing/ (edit meta.php)

    My questions are (short answers will do just fine):
    a) Are the above mentioned methods OK to use with the newest enfold version?
    b) Which one of the two methods is more safe/stable/recommendable – only including “post” in meta.php, or both including “post” in meta.php and also in addition replacing the whole template-builder.php file – the recipe provided by Nick the Spectator (I don’t use the comment boxes, so that particular issue mentioned in that topic is irrelevant to me). I am already aware that any issues rising from such changes get no support.
    c) Should the edited copy of meta.php file have the same folder hierarchy in the child theme as it has in the parent theme?
    d) How big (in percents) are the chances that careful usage of Advanced Layout builder in posts would at least once a year corrupt the whole database?
    e) Any other ways to achieve the same goals – No. 1. or 2. ?
    f) Does Kriesi have setup any date for making this feature default?

    Thanks a lot for putting up with us ignorant civilians..

    Best regards,
    nerkasa

Viewing 30 results - 15,661 through 15,690 (of 16,891 total)