Viewing 30 results - 15,841 through 15,870 (of 16,891 total)
  • Author
    Search Results
  • Hallo Peter, das war ein sehr guter Tipp – danke.

    Ich hätte nicht gedacht, das ein Umstieg auf https so umständlich sein kann. Als ich dann endlich die DB exportiert hatte, konnte ich die natürlich aufgrund ihrer Größe nicht zurück importieren – PHP Zeitlimit wurde überschritten. Und das bei all-inkl.com. Die haben mir dann allerdings sofort geholfen.

    Google Chrome zeigt mir jetzt auch schon ein Schloß vor der URL an, mein Standardbrowser Safari nicht. Ist wohl noch was im Cache drin, oder so.

    Bezüglich der hardcodierten URLs in der Datenbank: es waren tatsächlich 378 Einträge zu ändern. Nicht ermunternd. Die meisten kamen übrigens von einem Plugin.

    #254460
    adrianwackernah
    Participant

    Seit ich das Update 2.7 eingespielt habe – was übrigens tolle neue Features hat –, bekomme ich ein Warning im Frontend angezeigt, das erst verschwindet, wenn ich wpSEO von Sergej Müller deaktiviere:

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘wpseo_frontend_head_init’ not found or invalid function name in /www/htdocs/w00ffce5/bm-de/wp-includes/plugin.php on line 470

    Das liegt an Enfold 2.7 und bitte bitte gebt mir schnell ein Update, denn ich deaktivierte erstmal das wpSEO, was natürlich überhaupt nicht gut ist.

    • This topic was modified 11 years, 11 months ago by adrianwackernah. Reason: Aktualisierter Stand
    #254402

    In reply to: Theme Update to 2.7

    Hi Devin, so other than the footer.php file the

    1. the Styling changes via Quick Css and
    2. the Enfold Theme options I have set in the backend

    will definitely not be effected by the complete theme update via Ftp and the site will look the exact same?

    #254391
    swissfilm
    Participant

    Installed the latest version of WPML and the Enfold 2.7 on WP 3.9.
    I noticed that the advanced layout editor or shortcodes no longer work. same goes for options dropdown,help, widget and so on. There also seems to be a standing issue with the portfolio taxonomy. Switching language inside a portfolio page creates a 404 page.
    when clicking on the design page following error appears on top:
    Warning: uasort() [function.uasort]: Array was modified by the user comparison function in /home/www/xyz/html/wp-includes/class-wp-theme.php on line 1211

    • This topic was modified 11 years, 11 months ago by swissfilm.
    #254387

    Hi!

    As always, thank you for using the theme!

    If you can’t see the update on the theme update panel, please download the 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/


    @elbnetz
    : If you don’t mind, please provide us a link to your website. We would like to check it. 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

    #254376

    In reply to: Theme Update to 2.7

    Hey GOWD!

    You will lose changes you made to the footer.php file since you would be writing over that file. You should be able to download a copy of your footer and then re-up it after updating the whole theme.

    You also may not need to modify the footer.php unless you are adding content to it because the theme has a footer option field in the theme options for replacing the socket text.

    Regards,
    Devin

    #254363

    Hi!

    Designing a responsive website is quite challenging and one of the hardest part of this is correcting the images. All of the properties, from the way they resize, to their dimensions and file size can give even the most experience developers a headache. It is true that not every users know how to use the image editor that’s why we added thumbnail sizes to take care of different orientations and layout sizes. You can find all sorts of thumbnail sizes on functions.php:

    $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'=>710, 'height'=>575 );						// 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'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider
    
    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    	$avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );					// images for portfolio entries (2,3 column)
    	$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 adjust the width and height attribute, you can even tell wp not to crop the images by setting the crop parameter to false. If you could tell us what image size you’re having trouble with, we might find a way to fix it. Note that the thumbnail image sizes for woocommerce can be found on config-woocommerce > config.php. Look for this code on line 13:

    //product thumbnails
    $avia_config['imgSize']['shop_thumbnail'] 	= array('width'=>120, 'height'=>120);
    $avia_config['imgSize']['shop_catalog'] 	= array('width'=>450, 'height'=>450);
    $avia_config['imgSize']['shop_single'] 		= array('width'=>450, 'height'=>999, 'crop' => false);

    You can change the dimension then easily regenerate 2000+ thumbnails or more using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    If you can explain to us your specific problem, we will be happy to assist you.

    Best regards,
    Ismael

    #254328

    Topic: Theme Update to 2.7

    in forum Enfold
    GOWD
    Participant

    Hi, I watched your video re updating the theme via Ftp.

    If I update the whole theme via Ftp will I lose any changes I have made to ;

    1. the Styling via Quick Css
    2. the Enfold Theme options in the backend
    3. the changes I made to the socket in the footer.php file by Ftp to edit the link

    Thanks

    #254293

    Thanks Ismael!

    As you said, I edit my self those lines… I paste here the instruction for other people:

    1- Instal Wp-subtitle plugin : http://wordpress.org/plugins/wp-subtitle/
    2- on config-templatebuilder > avia-shortcodes > postslider.php. on line 372, replace with:

    $subtitle = get_post_meta($the_id,’wps_subtitle’);
    $output .= !empty($subtitle) ? “<h4 class=’event-end-date’ $markup>”.$subtitle[0].”</h4>” : ”;
    $output .= ‘</header>’;

    Cheers!

    #254260
    jdrijver
    Participant

    Hi There,

    We have encountered a serious amount of errors causing a heavy weight on our servers.
    Our tech-guy concludes that Enfold seems to be an easy target for hackers.
    He thinks that the search field and / footer might be vulnerable.

    Hereby I send you the Logfile. (in which we have changed the domein to XdomainXcustomerX.
    Please have a look and let us know how to solve this.

    Jelle

    LOG:

    Thu Apr 17 18:15:33 2014] [error] [client 62.219.8.235] WordPress database error MySQL server has gone away for query , referer: http://www.XdomainXcustomerX.de/lagerung-festem-mist/
    [Thu Apr 17 18:15:34 2014] [error] [client 62.219.8.235] SELECT trid, language_code, source_language_code, referer: http://www.XdomainXcustomerX.de/lagerung-festem-mist/
    [Thu Apr 17 18:15:34 2014] [error] [client 62.219.8.235] FROM wp_icl_translations, referer: http://www.XdomainXcustomerX.de/lagerung-festem-mist/
    [Thu Apr 17 18:15:34 2014] [error] [client 62.219.8.235] WHERE element_id=2648 AND element_type=’post_page’ made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/enfold/search.php’), get_header, locate_template, load_template, require_once(‘/themes/enfold/header.php’), wp_nav_menu, wp_get_nav_menu_items, array_map, wp_setup_nav_menu_item, get_permalink, get_page_link, apply_filters(‘page_link’), call_user_func_array, SitePress->permalink_filter, SitePress->get_element_language_details, referer: http://www.XdomainXcustomerX.de/lagerung-festem-mist/

    #254199

    Hey!

    Please place the content underneath the LayerSlider into a color section. To fix the product slider issue open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider.php and replace

    
    query_posts($query);
    
    

    with

    
    query_posts($query);
    
    	    	remove_filter( 'posts_clauses', array( $woocommerce->query, 'order_by_popularity_post_clauses' ) );
    			remove_filter( 'posts_clauses', array( $woocommerce->query, 'order_by_rating_post_clauses' ) );
    

    We’ll include this fix in Enfold 2.7.

    Regards,
    Peter

    #254186

    I removed <{heading} class='main-title entry-title'>{title}</{heading}> from line 274 of functions-enfold.php.

    So, now I tried putting the following in a functions-enfold.php file and uploaded it to the enfold-child folder, but it didn’t work:

    	<?php
    add_filter('avf_title_args', 'avf_remove_header_title', 10, 1);
    function avf_remove_header_title($args) {
        $args['title'] = '';
        return $args;
    }
    	?>

    Anything else I can try?
    Thanks!

    #254163

    In reply to: How to enable the RTL?

    Hey!

    If you use a child theme you can have this mod and be able to update the theme, this code would need to be added in the child functions.php:

    wp_enqueue_style(  'avia-rtl',  get_template_directory()."/css/rtl.css", array(), '1', 'screen' );
    

    Best regards,
    Josue

    #254044

    Topic: Hello Kriesi !

    in forum Enfold
    georgescumariusss
    Participant

    I put Las Update, and little modificated and appear this please help me ! Best REGARDS and respect !

    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 71 bytes) in /home/office/public_html/wp-includes/wp-db.php on line 1938

    I wait your answer. Have a nice day !

    This reply has been marked as private.
    #253910

    Hi Ismael,

    I still can’t access my menu. This is what I’ve done so far:

    • Cleared my browser cache (Twice)
    • Tried to access menu in FF (V28), IE (V11), Chrome (V34) and Opera (V20) on WIN 7 and 8.1
    • Tried in FF and Safari (Current versions) on MAC

    I keep getting the same error message. See screen capture
    I haven’t added any HTML or anything else to my menu. The strange part is that the menu is visible just fine on the frontend. I can’t recreate my Primary Menu since I can’t access it anymore.
    I could try copying a fresh version of formatting.php and see if that solves my problem. Not sure what that will do though. Any ideas?
    Thanks

    #253835
    This reply has been marked as private.
    #253731

    In reply to: Simple button usage

    Hi!

    Thank you for the update.

    I’m sorry but when I click the button, the url looks like this: http://www.colibris-avignon.org/colibris/mouvement-colibris/%3Ca?PHPSESSID=l65dc072t1t02kdrln7r0bfor7%20href=%22http://www.colibris-lemouvement.org/colibris/lethique-du-colibri%22%3Ehttp://www.colibris-lemouvement.org/colibris/lethique-du-colibri%3C/a%3E

    If you don’t mind, please create the button from scratch. Deactivate all plugins, see if the button works. Download the latest version from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    #253664
    jberickson
    Participant

    Hi,
    I migrated my site from Corona to Enfold and it’s gone pretty well. However I can’t get the theme colors to respond to changes I make from the styling panel. Theme colors are reflected properly in the Theme Preview area but the changes don’t go ‘live’. I’ve read through the Support Forum regarding this problem and tried everything I found. I cleared my cache, cleared my browser and checked/set my permissions to 755. Nothing I’ve tried has worked. The path I followed to change my permissions was;

    WP-Content > Uploads > Enfold.css and Index.php

    Any other ideas?

    Thanks for your time, I appreciate it.

    #253613

    I tried but did not work- I manually deleted from the templete and bought the stand alone plug-in and installed now i have this error.

    Fatal error: Call to undefined function avia_find_layersliders() in /home/larwash7/public_html/studentdoor.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 41

    Please help as my lay sliders are important to my site- help

    #253497

    In reply to: Responsive Logo issues

    Thanks Ismael. I did modify some of the code in my child theme after posting my support request. Still needs some tweaking for how it works on all devices. It’s the responsiveness that causes issues.

    However, I still can’t find where are all this code originates. There are 7(!) CSS files in that folder! And where is the “img height=’100′ width=’300′ ” coded in the HTML? In a PHP function? It’s in container / .logo / a href / img

    #253454

    For detail.

    Al those errors are meaning on the child theme that i have named enfold-child All those errors are in the header.php on line 101, 157, 157 and 164.

    #253401
    davidrk
    Participant

    Hi there.
    I’ve just updated WP and Enfold and have a few issues. The site is http://www.bhutantravelbureau.com

    1) I’ve removed ‘You are here’ from the class-breadcrumb.php file however it is still appearing in the Breadcrumb. Is there somewhere else I now need to change this?
    2) The mega menu now appears aligned to the left of the corresponding menu item which causes it to extend out of the browser window edge. Is there a way to center the mega menu to the left edge of the navigation bar?
    3) When reduced to max-width=767px the logo is distorted extending across contact icons and beneath menu toggle. Is there a fix for this?
    4) In the top menu ‘Testimonials’ has no space between it and the corresponding vertical separator. How can I insert this as per the others.
    5) Custom CSS I was using for the LayerSlider on the homepage no appears to not be working:
    #top .avia-layerslider .ls-wp-container .ls-layer h1{
    font-family: ‘Open Sans’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif!important;
    font-size: 38px !important;
    font-weight: bold !important;
    letter-spacing: -2px;
    line-height:32px;}

    #top .avia-layerslider .ls-wp-container .ls-layer h2{
    font-family: ‘Open Sans’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif!important;
    font-size: 26px !important;
    letter-spacing: -1px;
    font-weight: 400 !important;
    line-height:24px;}

    Any help with resolving these issues would be much appreciated.

    #253113

    Hi Victor!

    Thank you for using the theme!

    I’m sorry but this is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. You can find the blog grid code on config-templatebuilder > avia-shortcodes > postslider.php. Find this code on line 374. This is the post date, comment count container. Maybe you can use custom fields to replace the output.

    if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}

    I hope that helps.

    Regards,
    Ismael

    #253079

    Hey!

    Thanks. I found a logical error in my solution. Please open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider.php and replace

    
    			if($orderBY == 'popularity' || $orderBY == 'rating')
    			{
    		    		remove_filter( 'posts_clauses', array( WC()->query, 'order_by_popularity_post_clauses' ) );
    				remove_filter( 'posts_clauses', array( WC()->query, 'order_by_rating_post_clauses' ) );
    			}
    

    with

    
    
    	    	remove_filter( 'posts_clauses', array( $woocommerce->query, 'order_by_popularity_post_clauses' ) );
    			remove_filter( 'posts_clauses', array( $woocommerce->query, 'order_by_rating_post_clauses' ) );
    

    We’ll include this fix in Enfold 2.7.

    Best regards,
    Peter

    Hi Dude!
    Danke für die Antwort, ja hatte es versäumt zu erwähnen, aber erhöhen des PHP-Speicher hatte ich auch versucht:
    Memory Overview:
    PHP Version : 5.3.1 / 32Bit OS
    Memory limit : 128 MB
    Memory usage : 29.75 MB

    …der Witz ist, daß mit Version 2.5.4 das editieren der Layer einwandfrei funktioniert… weiss nicht was ich tun soll?!
    Hängt es mit XAMPP zusammen, obwohl ich bis jetzt nie Probleme damit hatte – Versuchen online zu installieren?

    Soltner

    Hi soltner!

    Hast du schon probiert den PHP Speicher auf 128M zu erhöhen? Weiße Bildschirme deuten immer auf einen server-seitigen Fehler hin und ich nehme an, dass der Speicher für das Laden der Editorseite nicht ausreicht. Bitte versuche diesen daher auf 128M zu setzen. Mehr Infos gibts hier: http://bueltge.de/mehr-speicher-fuer-wordpress/957/

    Best regards,
    Peter

    #252838

    Hallo Michael!

    Danke für deine Hilfe :)
    Ich hab die Blog-Logik nun ein bissl umgekrempelt. Das neue Konzept ist viel einfacher und sollte weniger fehleranfällig sein.
    Bevor ich das Update release würd ich mich freuen (falls du die Zeit findest) wenn du deine test cases mal kurz daran testest :)

    Das neue helper-template.logic.php file findest du hier: http://pastie.org/9087849
    Das update ist hauptsächlich darauf ausgelegt Probleme mit der Pagination zu lösen die andere user hatten aber ich hab die Hoffnung dass es auch bei dir hilf :)

    Best regards,
    Kriesi

    #252675

    Hi!

    We changed the config-templatebuilder/avia-template-builder/php/font-manager.class.php file.
    Version 2.7 will include the fix as well ;)

    Best regards,
    Kriesi

Viewing 30 results - 15,841 through 15,870 (of 16,891 total)