Viewing 30 results - 14,941 through 14,970 (of 16,896 total)
  • Author
    Search Results
  • Hey!

    Glad you fixed it. You can also add this filter on functions.php right below line 16:

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

    Select Open Sans 2 on Enfold > General Styling > Fonts panel.

    Regards,
    Ismael

    #358010

    Hi Marcus M.!

    Try changing line 772 in /enfold/config-templatebuilder/avia-shortcodes/slideshow.php from this.

    if(trim($title) != "")   $title 	= "<h2 {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";
    

    To this.

    if(trim($title) != "")   $title 	= "<span {$title_styling} class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</span>";
    

    And then add this to your custom CSS.

    .avia-caption-title { font-size: 20px; }
    

    Regards,
    Elliott

    #357913

    Hey IconicD!

    Try opening up /enfold/functions-enfold.php and change line 97 from this.

    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    

    To this.

    $defaults = array( 'post__not_in' => array( 1, 2, 3 ), 'numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    

    And change 1, 2, 3 to the IDs of the pages you want to exclude.

    EDIT: Oops, looks like we replied at the same time.

    Regards,
    Elliott

    • This reply was modified 11 years, 5 months ago by Elliott.
    #357513

    In reply to: Upload new Social Icon

    Update: Please note that my “how-to” below, will force Enfold to replace the actual Skype icon itself with your custom Github icon. In case you’re looking to add Github to Enfold’s “Social Profiles” settings, then you might need a completely different and more complex approach / function.

    In case you’re actually looking to add Github to Enfold’s “Social Profiles” settings, then please see the link in Yigit’s reply.

    Hi Slade,

    I’m using that function to replace the pencil icon in post archives. If the complete function is in your functions.php already, all you have to do is this:

    Replace:

    $icons['standard'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915');

    With this:

    $icons['skype'] = array( 'font' =>'fontello', 'icon' => 'ue999');

    As you can see, standard needs to be replaced with skype. That will tell Enfold that the default Skype icon should be replaced with icon ue999.

    Optional: you might notice that entypo-fontello is changed into fontello, as this is the name of my custom icon collection. Since it’s unclear to me how you named your custom icon collection, you might need to use another value than fontello. To find out the correct value/font name to use:

    – Simply edit a page using the Advanced Layout Builder.
    – Open a Content Element that will show you the list of icons you can use (e.g. the Icon content element has this list).
    – You’ll notice that each font collection, in the icon list, has a short line of text above it, stating the collection’s name in a Font: entypo-fontello format.
    – Find the ue999 icon in the icon list and see under which font name it is placed. If it’s Font: fontello, then no further action is needed. If it’s Font: anothername then ensure your line looks like this:

    $icons['skype'] = array( 'font' =>'anothername', 'icon' => 'ue999');

    That should do the trick!

    Best,

    Ralph

    #357449
    #357374

    Hi!

    We provide basic css, php, html customization for users who ask for it. Yes, you need to learn css if you’re trying to achieve something that is out of the box. Premium themes, at least not that I know of, can’t possibly add all features on the theme options. It’s not required but a little knowledge on css, html or php won’t hurt. Please replace the code above:

    @media only screen and (max-width: 767px) {
    .header_color .header_bg {
    background: #ffffff url(//toddbrownmagic.com/wp-content/uploads/2014/11/TBMC-Header1.png) top right repeat fixed;
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    }
    
    .responsive #header_main .container {
    height: 60px !important;
    }
    }

    Cheers!
    Ismael

    #357231

    Hi!

    It’s not a bug. All we do is grab the fonts from google and display them. If you want to use the italic version then change my previous code to this.

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

    Or if you just want to use your code and don’t want to edit the header.php file then you can try adding this to the bottom of your functions.php file.

    add_action( 'wp_head', 'enfold_customization_addheaderscript' );
    function enfold_customization_addheaderscript() {
    echo "<link href=’http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext’ rel=’stylesheet’ type=’text/css’>";
    }

    Best regards,
    Elliott

    #357183

    Hey damursch!

    Open up /enfold/functions-enfold.php and find line 278 which should look like this.

    'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>",
    

    And change it to this.

    'html'			=> "<div class='{class} title_container'><div class='container'>{additions}</div></div>",
    

    Cheers!
    Elliott

    #357179

    I did a quick-fix in this file:
    themes\enfold\config-templatebuilder\avia-template-builder\php\shortcode-helper.class.php

    Old:

    /**
     * Converts a shortcode into an array
     **/
    	static function shortcode2array($content, $depth = 1000) {	
    		$pattern = empty(ShortcodeHelper::$pattern) ? ShortcodeHelper::build_pattern() : ShortcodeHelper::$pattern;
    		$depth --;
    
    		preg_match_all( "/$pattern/s", $content , $matches);
    		...
    

    NEW:

    /**
     * Converts a shortcode into an array
     **/
    	static function shortcode2array($content, $depth = 1000) {	
    		$pattern = empty(ShortcodeHelper::$pattern) ? ShortcodeHelper::build_pattern() : ShortcodeHelper::$pattern;
    		$depth --;
    
    		// fixing shortcode-bug with wordpress 4.0.1
    			// $content = html_entity_decode($content); // does not seem to work.
    			$content = str_replace("’", "'", $content);
    			$content = str_replace("”", '"', $content);
    			$content = str_replace("”", "''", $content);
    			$content = str_replace(array("’", "′"), "'", $content);
    			
    		preg_match_all( "/$pattern/s", $content , $matches);
    		...
    

    Perhaps this helps someone.

    • This reply was modified 11 years, 5 months ago by frame_michael.
    #357103

    Elliot,

    Yes. I copied the source code from the browser and pasted it into a specific location using a code block. The button styles are in place. The mouse overs are spotty. When clicked the functions works but the page content does not populate the share posting.

    The code I pasted looks like this:

    <div class=”av-share-box”><ul class=”av-share-box-list noLightbox”><li class=”av-share-link av-social-link-facebook”><span class=”avia_hidden_link_text”>Share on Facebook</span><div class=”avia-related-tooltip avia-tt” style=”top: 94px; left: 200.409072875977px; display: none; opacity: 0;”><div class=”inner_tooltip”>Share on Facebook</div><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></div><li class=”av-share-link av-social-link-twitter”><span class=”avia_hidden_link_text”>Share on Twitter</span><div class=”avia-related-tooltip avia-tt” style=”top: 84px; left: 319.909072875977px; display: none; opacity: 0;”><div class=”inner_tooltip”>Share on Twitter</div><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></div><li class=”av-share-link av-social-link-gplus”><span class=”avia_hidden_link_text”>Share on Google+</span><div class=”avia-related-tooltip avia-tt” style=”top: 91px; left: 439.499984741211px; display: none; opacity: 0;”><div class=”inner_tooltip”>Share on Google+</div><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></div><li class=”av-share-link av-social-link-linkedin”><span class=”avia_hidden_link_text”>Share on Linkedin</span><div class=”avia-related-tooltip avia-tt” style=”top: 93px; left: 559.499984741211px; display: none; opacity: 0;”><div class=”inner_tooltip”>Share on Linkedin</div><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></div><li class=”av-share-link av-social-link-mail”><span class=”avia_hidden_link_text”>Share by Mail</span><div class=”avia-related-tooltip avia-tt” style=”top: 94px; left: 679.499984741211px; display: none; opacity: 0;”><div class=”inner_tooltip”>Share by Mail</div><span class=”avia-arrow-wrap”><span class=”avia-arrow”></span></span></div></div>

    Let me also offer some clarification. My name is Kris. I am working on a clients site using the enfold theme and mainly working in the staging area. I can provide you my staging login if needed in a private message.

    Best Regards
    Kris

    #357010

    Hey!

    I see what you mean. Let’s try adding this to the bottom of your functions.php file instead.

    add_action( 'wp_footer', 'enfold_customization_mobile_phone' );
    function enfold_customization_mobile_phone() {
    	echo '<div class="mobile_click_to_call container_wrap container_wrap_meta  av_icon_active_main av_phone_active_right av_extra_header_active av_entry_id_2" id="header_meta"><div class="container"><div class="phone-info "><span><a style="color: #fff;" href="tel:678-424-8030">CLICK TO CALL - 678.424.8030</a></span></div></div></div>';
    }

    And then add this to your custom CSS.

    .mobile_click_to_call { display: none; }
    @media only screen and (max-width: 767px) {
    .mobile_click_to_call { display: block; position: fixed; bottom: 0px; }
    }

    It should pick up the CSS your currently using.

    Cheers!
    Elliott

    #356951

    Hi Andy,

    Thanks for reply!

    1-2. I don’t want to remove gravatars and entry-image previews, just want to remove rounding, so the images could be square or rectangular but not round.
    3. I mean to do this.
    My original image:
    original
    Image overlay after I move mouse cursor at the image in blog (there is overlay with arrow icon):
    default overlay
    My target is gentle overlay without icon:
    target overlay
    4. I use Share42 script for the share buttons at the left side of the page. I prefer to minimize plugins usage to increase page loading speed. I tried to put the code into many places, but nothing helped me to display the buttons as close to the post as possible. It works good for small screens but on large devices like 30″ monitors there is a huge gap between the post and buttons.
    This is the code that I use now:

    <div class="share42init" data-url="<?php the_permalink() ?>" data-title="<?php the_title() ?>" data-top1="180" data-top2="40" data-margin="0"></div>
    <script type="text/javascript" src="http://dubinchuk.com/share42/share42.js"></script>

    5. I already have social buttons at the bottom of the post, and they are custom buttons I made myself. I just want them to display on the entries previews. I mean when I go from home page to the blog page, I can see 10 post previews on each page. The target is that social buttons could also be displayed in each post preview at the bottom, not only after I open the full post. 10 post previews on the blog page should be accompanied with 10 social buttons sets, so the user could share the post before he opens the full entry.
    6. Got it!

    Best regards,
    Evgeny

    • This reply was modified 11 years, 5 months ago by Speedskater.
    #356937
    This reply has been marked as private.
    #356871

    Thanks a lot for your help, Ismael, it worked!

    I’d like to add some more information for those who want to remove unnecessary thumbnails. There are also thumbnails in config.php file in config-woocommerce folder:

    $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);
    

    And just one more question for undestanding. Most of my image sizes in my blog (with sidebar) are 1100x773px (3:2 ratio). If I want to make page loading faster for tablets and other small devices is it possible to use thumbnails instead of original images?
    For example, I set thumbnail sizes to 845×563, 630×420, 345×230 etc, ratio is kept at 3:2. When I load a page on a device with possibility to see images in the blog with a maximum width 845px, a browser will load thumbnails with size 845px. And when the device can show images with a maximum width between 630 and 845 px, the browser will load and scale 845px. Is it possible or not?

    #356577

    Hey wilbro173!

    Thank you for using Enfold.

    Did you add any modifications on functions.php file? I’m sorry but you’re using an old version of the theme, 2.8. Please upgrade WordPress to 4.0.1 then download the latest version, Enfold 3.0.4, 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

    #356470

    Hi!

    Try using this on functions.php:

    function avia_change_image_size_array() {
    global $avia_config;
    $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
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    Set the width and height of the thumbnail size that you want to remove to zero (0). If it doesn’t work, please use the plugin.

    Regards,
    Ismael

    #356424
    This reply has been marked as private.
    #356403
    wilbro173
    Participant

    Hi, my site is down and presenting the following error:

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘wp_maybe_load_embeds’ was given in /home/jse25331/public_html/wp-includes/plugin.php on line 470

    Fatal error: Call to undefined function add_image_size() in /home/jse25331/public_html/wp-content/themes/enfold/framework/php/function-set-avia-backend.php on line 472

    Any help would be greatly appreciated.

    #356197
    frame_michael
    Participant

    Hi.

    I use Enfold 3.0.1 on WordPress 4.0.1
    On this page http://frame3d.de/team/ the social-icons used to work in WordPress 4.0.
    Since a few days the icons won’t appear anymore.

    This is the DEBUG-Code of one of the elements:

    [av_team_member name='Markus Schwab' job='CEO / Marketing' src='http://www.frame3d.de/wp-content/uploads/2013/04/markus-485x430.jpg' attachment='3070' attachment_size='' description='Er ist unser kaufmännischer Geschäftsführer. Kundenkontakt, Marketing und Projektleitung liegen in seinem Verantwortungsbereich. Wenn er nicht gerade für frame mit irgendjemandem kommuniziert, reist er gerne durch die Welt und schaut sich fremde Kulturen an.' font_color='' custom_title='' custom_content='' custom_class='']
    [av_team_icon title='E-Mail an Markus' link='mailto: (Email address hidden if logged out) ' link_target='' icon='ue805' font='entypo-fontello']
    [av_team_icon title='Markus auf Xing' link='https://www.xing.com/profile/Markus_Schwab?sc_o=mxb_p' link_target='_blank' icon='ue923' font='entypo-fontello']
    [/av_team_member]

    If you take a look at our DEV-Page (see private-content below) you will see, that the single- or double-quotes are replaced by these other ones: ” or ’
    I guess that the wordpress-function shortcode_parse_atts() cannot handle these. so i tries to str_replace them in the file enfold\config-templatebuilder\avia-template-builder\php\shortcode-helper.class.php like this:

    $content = str_replace("’", "'", $content);
    $content = str_replace("”", '"', $content);
    preg_match_all( "/$pattern/s", $content , $matches);

    But this didn’t seem to work.

    Do you have any idea, what could be the problem?

    • This topic was modified 11 years, 5 months ago by frame_michael.
    #356138

    Hey!

    Thank you for the update.

    I think you misunderstand the purpose of debug mode of the advance layout builder. When you set the ALB to debug mode, you’ll be able to see the actual shortcodes of pages made with the advance layout builder. I created a test page and the shortcode wand is working fine:

    http://magazinschmiede.de/wp-admin/post.php?post=3627&action=edit&message=6

    Note that some of the shortcodes are disabled when you are on a text block editor or other elements. If you want to generate the shortcodes of the iconbox and promobox, create a temporary page or post then switch to the Default Editor.

    Best regards,
    Ismael

    #355970

    Hi nesaw!

    Open up /enfold/config-templatebuilder/avia-shortcodes/productslider.php and change lines 63 – 67 from this.

    "subtype" => array(	__('2 Columns', 'avia_framework' )=>'2',
    					__('3 Columns', 'avia_framework' )=>'3',
    					__('4 Columns', 'avia_framework' )=>'4',
    					__('5 Columns', 'avia_framework' )=>'5',
    					)),
    

    To this.

    "subtype" => array(	__('1 Columns', 'avia_framework' )=>'1',
    					__('2 Columns', 'avia_framework' )=>'2',
    					__('3 Columns', 'avia_framework' )=>'3',
    					__('4 Columns', 'avia_framework' )=>'4',
    					__('5 Columns', 'avia_framework' )=>'5',
    					)),
    

    And then add this to your custom CSS.

    .av_one_fourth .template-shop div .products .product {
        width: 100%;
    }

    Best regards,
    Elliott

    #355926

    @Ralph12: Thanks for your post. I followed the instructions, installed the recommended plugin, made a test and I got the email. When I tried the forms I added to the site I don’t get the emails.

    Here’s the debug log:

    [22-Nov-2014 15:08:57 UTC] PHPMailer Object
    (
    [Version] => 5.2.7
    [Priority] => 3
    [CharSet] => utf-8
    [ContentType] => text/html
    [Encoding] => 8bit
    [ErrorInfo] =>
    [From] => (Email address hidden if logged out)
    [FromName] => (Email address hidden if logged out)
    [Sender] =>
    [ReturnPath] =>
    [Subject] => Nuevo contacto desde sitio web Puntavista
    [Body] => Nombre Completo: Jorge Sábado <br/>E-Mail: (Email address hidden if logged out) <br/>Teléfono: 999999999 <br/> <br/>¿Cómo se enteró?: Prueba debug <br/> <br/>
    [AltBody] =>
    [Ical] =>
    [MIMEBody:protected] =>
    [MIMEHeader:protected] =>
    [mailHeader:protected] =>
    [WordWrap] => 0
    [Mailer] => mail
    [Sendmail] => /usr/sbin/sendmail
    [UseSendmailOptions] => 1
    [PluginDir] =>
    [ConfirmReadingTo] =>
    [Hostname] =>
    [MessageID] =>
    [MessageDate] =>
    [Host] => localhost
    [Port] => 25
    [Helo] =>
    [SMTPSecure] =>
    [SMTPAuth] =>
    [Username] =>
    [Password] =>
    [AuthType] =>
    [Realm] =>
    [Workstation] =>
    [Timeout] => 10
    [SMTPDebug] => 0
    [Debugoutput] => echo
    [SMTPKeepAlive] =>
    [SingleTo] =>
    [SingleToArray] => Array
    (
    )

    [do_verp] =>
    [AllowEmpty] =>
    [LE] =>

    [DKIM_selector] =>
    [DKIM_identity] =>
    [DKIM_passphrase] =>
    [DKIM_domain] =>
    [DKIM_private] =>
    [action_function] =>
    [XMailer] =>
    [smtp:protected] =>
    [to:protected] => Array
    (
    [0] => Array
    (
    [0] => (Email address hidden if logged out)
    [1] =>
    )

    )

    [cc:protected] => Array
    (
    )

    [bcc:protected] => Array
    (
    )

    [ReplyTo:protected] => Array
    (
    )

    [all_recipients:protected] => Array
    (
    [ (Email address hidden if logged out) ] => 1
    )

    [attachment:protected] => Array
    (
    )

    [CustomHeader:protected] => Array
    (
    )

    [lastMessageID:protected] =>
    [message_type:protected] =>
    [boundary:protected] => Array
    (
    )

    [language:protected] => Array
    (
    )

    [error_count:protected] => 0
    [sign_cert_file:protected] =>
    [sign_key_file:protected] =>
    [sign_key_pass:protected] =>
    [exceptions:protected] => 1
    )

    [22-Nov-2014 15:13:47 UTC] PHPMailer Object
    (
    [Version] => 5.2.7
    [Priority] => 3
    [CharSet] => UTF-8
    [ContentType] => text/plain
    [Encoding] => 8bit
    [ErrorInfo] =>
    [From] => (Email address hidden if logged out)
    [FromName] => My Site
    [Sender] =>
    [ReturnPath] =>
    [Subject] => WP Mail SMTP: Test mail to (Email address hidden if logged out)
    [Body] => This is a test email generated by the WP Mail SMTP WordPress plugin.
    [AltBody] =>
    [Ical] =>
    [MIMEBody:protected] =>
    [MIMEHeader:protected] =>
    [mailHeader:protected] =>
    [WordWrap] => 0
    [Mailer] => smtp
    [Sendmail] => /usr/sbin/sendmail
    [UseSendmailOptions] => 1
    [PluginDir] =>
    [ConfirmReadingTo] =>
    [Hostname] =>
    [MessageID] =>
    [MessageDate] =>
    [Host] => mail.mysite.com
    [Port] => 2525
    [Helo] =>
    [SMTPSecure] =>
    [SMTPAuth] => 1
    [Username] => (Email address hidden if logged out)
    [Password] => *********
    [AuthType] =>
    [Realm] =>
    [Workstation] =>
    [Timeout] => 10
    [SMTPDebug] => 1
    [Debugoutput] => echo
    [SMTPKeepAlive] =>
    [SingleTo] =>
    [SingleToArray] => Array
    (
    )

    [do_verp] =>
    [AllowEmpty] =>
    [LE] =>

    [DKIM_selector] =>
    [DKIM_identity] =>
    [DKIM_passphrase] =>
    [DKIM_domain] =>
    [DKIM_private] =>
    [action_function] =>
    [XMailer] =>
    [smtp:protected] =>
    [to:protected] => Array
    (
    [0] => Array
    (
    [0] => (Email address hidden if logged out)
    [1] =>
    )

    )

    [cc:protected] => Array
    (
    )

    [bcc:protected] => Array
    (
    )

    [ReplyTo:protected] => Array
    (
    )

    [all_recipients:protected] => Array
    (
    [ (Email address hidden if logged out) ] => 1
    )

    [attachment:protected] => Array
    (
    )

    [CustomHeader:protected] => Array
    (
    )

    [lastMessageID:protected] =>
    [message_type:protected] =>
    [boundary:protected] => Array
    (
    )

    [language:protected] => Array
    (
    )

    [error_count:protected] => 0
    [sign_cert_file:protected] =>
    [sign_key_file:protected] =>
    [sign_key_pass:protected] =>
    [exceptions:protected] => 1
    )

    [22-Nov-2014 15:16:29 UTC] PHPMailer Object
    (
    [Version] => 5.2.7
    [Priority] => 3
    [CharSet] => utf-8
    [ContentType] => text/html
    [Encoding] => 8bit
    [ErrorInfo] =>
    [From] => (Email address hidden if logged out)
    [FromName] => (Email address hidden if logged out)
    [Sender] =>
    [ReturnPath] =>
    [Subject] => test
    [Body] => Name: Jorge Test Sábado <br/>E-Mail: (Email address hidden if logged out) <br/>Subject: test <br/> <br/>Message: test <br/> <br/>
    [AltBody] =>
    [Ical] =>
    [MIMEBody:protected] =>
    [MIMEHeader:protected] =>
    [mailHeader:protected] =>
    [WordWrap] => 0
    [Mailer] => smtp
    [Sendmail] => /usr/sbin/sendmail
    [UseSendmailOptions] => 1
    [PluginDir] =>
    [ConfirmReadingTo] =>
    [Hostname] =>
    [MessageID] =>
    [MessageDate] =>
    [Host] => mail.mysite.com
    [Port] => 2525
    [Helo] =>
    [SMTPSecure] =>
    [SMTPAuth] => 1
    [Username] => (Email address hidden if logged out)
    [Password] => **********
    [AuthType] =>
    [Realm] =>
    [Workstation] =>
    [Timeout] => 10
    [SMTPDebug] => 0
    [Debugoutput] => echo
    [SMTPKeepAlive] =>
    [SingleTo] =>
    [SingleToArray] => Array
    (
    )

    [do_verp] =>
    [AllowEmpty] =>
    [LE] =>

    [DKIM_selector] =>
    [DKIM_identity] =>
    [DKIM_passphrase] =>
    [DKIM_domain] =>
    [DKIM_private] =>
    [action_function] =>
    [XMailer] =>
    [smtp:protected] =>
    [to:protected] => Array
    (
    [0] => Array
    (
    [0] => (Email address hidden if logged out)
    [1] =>
    )

    )

    [cc:protected] => Array
    (
    )

    [bcc:protected] => Array
    (
    )

    [ReplyTo:protected] => Array
    (
    )

    [all_recipients:protected] => Array
    (
    [ (Email address hidden if logged out) ] => 1
    )

    [attachment:protected] => Array
    (
    )

    [CustomHeader:protected] => Array
    (
    )

    [lastMessageID:protected] =>
    [message_type:protected] =>
    [boundary:protected] => Array
    (
    )

    [language:protected] => Array
    (
    )

    [error_count:protected] => 0
    [sign_cert_file:protected] =>
    [sign_key_file:protected] =>
    [sign_key_pass:protected] =>
    [exceptions:protected] => 1
    )

    Any other ideas are welcome.
    Thanks

    #355674

    Hey Josue!

    Thanks for reply, however it didn’t work – same issue.
    Why do you think the file might not be on the server? I uploaded .mo and .po files into */enfold-child/lang folder. Style.css, functions.php and other php files included in child theme work correctly, but files like .png, .mo, .po etc don’t work.
    You can see the chaotic symbols on grey background above header. The more information in the file I try to include, the bigger this area.
    screenshot

    Best regards,
    Evgeny

    #355649

    Hey!

    Try deleting lines 166 – 171 in /enfold/includes/loop-index.php.

    if(!empty($cats))
    {
    	echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    	echo $cats;
    	echo '</span><span class="text-sep text-sep-cat">/</span>';
    }
    

    Best regards,
    Elliott

    #355607

    Hey!

    Yes, the best way to prevent this is to use a child theme, you can put those files (header.php, footer.php) in the child theme directory and use Quick CSS or style.css.

    Best regards,
    Josue

    Pixelbits
    Participant

    THIS IS FIXED AFTER LATEST 3.04 UPDATE – CLOSE THREAD ;)

    In the code I see the 2nd column table class is wrong:
    It should say: avia-desc-col

    Inspect -element in Chrome says:
    <td class="’avia-desc-col’">3,50 euro</td>
    NOTE that the classname has extra quotes around it.

    The view-source says:
    <td class='& #8217;avia-desc-col & #8217;'>
    Spaces added for readability of the &-code :)

    I can not find this code it in any PHP file. So i’m not sure about where this error originates from….
    I’m updating again with latest 15:30h CET v3.04 ENFOLD again as we speak.

    • This topic was modified 11 years, 5 months ago by Pixelbits. Reason: THIS IS FIXED AFTER LATEST 3.04 UPDATE - CLOSE THREAD
    #355142
    rpl_admin
    Participant

    Hi there,
    Since your updates for Enfold are coming through quite often we thought we’d take an hour out to set up a child theme! 7 hours later and we have a fatal error.

    1. We followed the video and the WordPress org info

    2. We used cPanel to set up a new enfold-child folder containing 2 new files: styles.css and functions.php

    3. We had made only one change to the functions.php file and having read that we should not paste all the functions.php code into the new file we pasted simply:

    <?php

    global $avia_config;

    add_filter(‘avf_blog_style’,’avia_change_archive_blog_layout’, 10, 2);
    function avia_change_archive_blog_layout($layout, $context){
    if($context == ‘archive’) $layout = ‘blog-grid’;
    return $layout;
    }

    4. Since we’d made no additions to the style.css file, this php code in the php file seemed to be responsible for the fatal error (blank page, no admin access).

    5. We restored the site form a backup from inside cPanel and this time added all the functions.php code to the new functions.php file – same problem, fatal error.

    With respect, the video on child themes spends about 7 of the 9 minutes telling us what most people already know and in the final minute and a half rushes through the most important steps. A little clearer, step by step instruction and pitfalls to avoid would be very useful on what is clearly almost an obligation for all users.

    #355140
    This reply has been marked as private.
    #355014
    ottingius
    Participant

    Hello

    I have made changes in various php files, so I do not want to update all the files if it is not needed. on these files I find yesterday’s date on. Do all these need to be replaced to get up to 4.0.1?

    2014-11-20 21:58 image_hotspots.php
    2014-11-20 21:58 google_maps.php
    2014-11-20 22:00 testimonials.php
    2014-11-20 22:00 toggles.php
    2014-11-20 22:09 functions.php
    2014-11-20 22:12 shortcode-helper.class.php
    2014-11-20 22:12 template-builder.php
    2014-11-20 22:12 slideshow.php
    2014-11-20 22:12 contact.php
    2014-11-20 22:27 avia.js
    2014-11-20 22:33 layout.css
    2014-11-20 22:33 functions-enfold.php
    2014-11-20 22:33 single.php
    2014-11-20 22:33 config.php
    2014-11-20 22:33 slideshow_fullsize.php
    2014-11-20 23:24 buttons.php
    2014-11-20 23:24 template-builder.class.php
    2014-11-20 23:24 shortcode-template.class.php
    2014-11-20 23:25 style.css

    Peter Ottingius

    #354917

    In reply to: How to Update

    Well I did the update and all problems are fixed EXCEPT now when I try and view the dashboard I get this:

    Parse error: syntax error, unexpected $end in /home/content/24/7406224/html/barnumbuildinganddesign/wp-content/themes/enfold/framework/php/function-set-avia-ajax.php on line 362

    Any ideas?

    Thanks

Viewing 30 results - 14,941 through 14,970 (of 16,896 total)