Viewing 30 results - 15,541 through 15,570 (of 16,892 total)
  • Author
    Search Results
  • #288915

    Hey Snerp!

    Thank you for using the theme.

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

    function avia_change_image_size_array() {
    global $avia_config;
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>420);		                 // big images for blog and page entries
    avia_backend_add_thumbnail_size($avia_config);
    }
    add_action( 'init', 'avia_change_image_size_array', 1);

    Upload the image again or regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #288878
    pako69
    Participant

    Hello

    Before using Enfold I was using forms form Contact Form 7 with an additional plugin “Contact Form DB”.
    Contact Form DB is able to save all informations that have been submitted, this way we can easily export very useful data that are used by marketing managers.

    Now I use Enfold forms, so I asked to the author of Contact Form DB if it is possible to get those data, and yes it is possible and it works.
    The problem is that when Enfold POST a form, the data fields are not properly encoded (I’m not talking the sent email, this one is ok)
    some special characters are not displayed nicely, eg:
    An email adresse look like this: name%40mydomain.com
    Spaces are: %20
    A [ is: %5B
    A ] is: %5B
    and so on…

    Please, kook at those two screenshots, they show you how data are posted and you will see that Contact Form 7 specials characters are urldecoded but not with Enfold…
    Some changes should be done into the class-form-generator.php file, but I don’t know how to do it… :(

    1/ Enfold
    Enfold Post

    2/ Contact Form 7
    CF7 Post

    Thank you

    #288838
    Snerp
    Participant

    Hi,

    I looked over the support forum and found few different ways to re-size the featured in a blog post, yet none are working for me.

    I have a child theme set up with a custom functions.php

    I’d like to resize the featured image to appear 710×420 with no lightbox…is this do-able?

    My posts are setup as “standard post”, Layout = Right Sidebar, Sidebar Setting = Custom Sidebar

    Thanks

    #288785

    Hi!

    Thank you for using the theme!

    First, using the plugin create a custom field called portfolio-test for example. Edit admin > register-portfolio.php, find this code on line 38:

    'supports' => array('title','thumbnail','excerpt','editor','comments')
    

    Replace it with:

    'supports' => array('title','thumbnail','excerpt','editor','comments','custom-fields')
    

    This will enable the custom fields or portfolio items. Next edit the portfolio item then add the portfolio-test custom field. Edit config-templatebuilder > avia-shortcodes > portfolio.php find this code on line 471:

    $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    

    Replace it with this:

    $custom_field1 = get_post_meta( $the_id, 'portfolio-test', true );
    					 
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
    					$output .= $custom_field1;

    We create a variable called $custom_field1 and applied the portfolio-test key. We then output the $custom_field1 below the excerpt.

    Best regards,
    Ismael

    #288772

    In reply to: custom 404 page?

    No. I only have one computer. I have tried it in several browsers though and IE is the only one with an issue. I don’t think it is a computer problem.
    I locked my site down – it is in development.
    I tried it on your demo site and got the same result.
    This is the url I typed in:
    http://kriesi.at/themes/enfold/shortcodes/gallery/adfs .

    This is what showed up on the page (except in text – I put it in a code block here):
    (Email address hidden if logged out) ","i18n_select_state_text":"Select an option\u2026","i18n_required_rating_text":"Please select a rating","i18n_no_matching_variations_text":"Sorry, no products matched your selection. Please choose a different combination.","i18n_required_text":"required","i18n_view_cart":"View Cart \u2192","review_rating_required":"yes","update_order_review_nonce":"d247e46e52","apply_coupon_nonce":"54912cbae2","option_guest_checkout":"yes","checkout_url":"\/themes\/enfold\/wp-admin\/admin-ajax.php?action=woocommerce-checkout","is_checkout":"0","update_shipping_method_nonce":"1eda5d223a","cart_url":"http:\/\/kriesi.at\/themes\/enfold\/cart\/","cart_redirect_after_add":"no"}; /* ]]> */ Scroll to top

    #288666
    This reply has been marked as private.
    #288602

    Of course, here a little example: https://imageshack.com/i/nll7y6p

    ..and this is the part of code inside portfolio.php, how i can add some custom fields from plugin “Advanced Custom Fields”?

    if(!empty($title))
    {
    $markup = avia_markup_helper(array(‘context’ => ‘entry_title’,’echo’=>false, ‘id’=>$the_id, ‘custom_markup’=>$custom_markup));
    $output .= ‘<header class=”entry-content-header”>’;
    $output .= “<h3 class=’grid-entry-title entry-title’ $markup>“.$title.”</h3>”;
    $output .= ‘</header>’;
    }
    $output .= !empty($excerpt) ? “<div class=’grid-entry-excerpt entry-content’ “.avia_markup_helper(array(‘context’=>’entry_content’,’echo’=>false, ‘id’=>$the_id, ‘custom_markup’=>$custom_markup)).”>”.$excerpt.”</div>” : ”;
    $output .= !empty($title) || !empty($excerpt) ? “</div>” : ”;
    $output .= ‘<footer class=”entry-footer”></footer>’;
    $output .= “</article>”;
    $output .= “</div>”;

    Thanks for the suggestion Josue, but still no luck. We tried adding define( ‘CONCATENATE_SCRIPTS’, false ); to the wp-config.php file.
    I agree the lack of Ajax functionality is most likely due to the server 500 error when accessing ajax (only on the production server though).

    Request URL:http://itestsystem.com/wp-admin/admin-ajax.php
    Request Method:POST
    Status Code:500 Internal Server Error

    They checked the production server logs and the only error they are seeing is pasted below but i don’t know if this is related to the Ajax error or not.
    [Tue Jul 08 13:48:23 2014] [error] [client 74.218.137.202] PHP Fatal error: Call to undefined function mb_strimwidth() in /var/www/html/wp-content/themes/itm/framework/php/function-set-avia-backend.php on line 561, referer: http://itestsystem.com/

    Do you have any suggestions on if it is an error with the production server configuration that would cause this issue? Thanks!

    #288546

    Hey Roy!

    Thank you for using the theme.

    This is possible but you’ll need to modify the theme files. Edit config-templatebuilder > avia-shortcodes > magazine.php, find this code on line 571:

    $output .= 		"<div class='av-magazine-content-wrap'>";
    			$output .=		"<header class='entry-content-header'>";
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";
    			$output .=			$separator.$author;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    			$output .= 		"</header>";
    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    			$output .= 		"</div>";
    			$output .= 		"<footer class='entry-footer'></footer>";
    			$output .= "</article>";

    Replace it with:

    global $product;
    			$product = new WC_Product( $entry->ID );
    			$price = $product->price;
    		
    			$output .= 		"<div class='av-magazine-content-wrap'>";
    			$output .=		"<header class='entry-content-header'>";
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>$ ".$price."</time>";
    			$output .=			$separator.$author;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    			$output .= 		"</header>";
    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    			$output .= 		"</div>";
    			$output .= 		"<footer class='entry-footer'></footer>";
    			$output .= "</article>";

    Cheers!
    Ismael

    #288446

    Hi djshortkut!

    Thank you for using our theme.

    If you want to change the sizes you have to modify a core file.

    Open functions.php in the root folder in a plain text editor and goto line 101 and line 108 (for extra large layouts).

    Replace the values of width and height:

    
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);
    

    For already uploaded images you either need to re-upload the image or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Keep in mind, that you have to do these changes after every update because this file is overwritten.

    Regards,
    Günter

    • This reply was modified 11 years, 9 months ago by Günter.
    #288437
    This reply has been marked as private.
    This reply has been marked as private.
    #287606

    I just checking using phpinfo and it’s already enabled:

    SimpleXML

    Simplexml support enabled
    Revision $Id: 16070fc92ad6f69cebb2d52ad3f02794f833ce39 $
    Schema support enabled

    Hey killyman!

    Thank you for using the theme.

    Please refer to Dude’s response here: https://kriesi.at/support/topic/enfold-and-the-event-calendar-plugin/#post-174332

    Add this code on functions.php:

    
    add_filter('avf_title_args', 'fix_events_page_title', 10, 2);
    function fix_events_page_title($args,$id)
    {
        if (get_query_var('post_type') == 'tribe_events' && !is_single())
        {
            if((tribe_is_upcoming() || tribe_is_past()))
            {
                $args['title'] = 'Events List';
            }
            else if(tribe_is_showing_all())
            {
                $args['title'] = 'List all events';
            }
            else
            {
                $args['title'] = 'Screenings';
            }
        } 
        return $args;
    }

    Best regards,
    Ismael

    #286956

    In reply to: Foursquare Icon

    Hi!

    Check it now:
    http://101.0.67.90/~pqfashio/

    Changes are applied to the child theme functions.php.

    Regards,
    Josue

    #286875
    This reply has been marked as private.
    #286579

    this is from the error_log on the server:

    [Thu Jun 26 11:27:59 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:27:59 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:27:58 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:27:57 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:26:10 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:26:10 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:53 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:53 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:45 2014] [error] [client 77.66.44.177] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:45 2014] [error] [client 77.66.44.177] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/wp-cron.php
    [Thu Jun 26 11:25:44 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:44 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:26 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 26 11:25:26 2014] [error] [client 199.187.122.91] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 19 23:44:15 2014] [error] [client 66.249.78.206] client denied by server configuration: /home/cphfilm/public_html/update/wp-content/themes/enfold/framework/php/wordpress-importer/error_log
    [Thu Jun 19 02:21:09 2014] [error] [client 31.210.70.130] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/index.php
    [Thu Jun 19 02:21:09 2014] [error] [client 31.210.70.130] (12)Cannot allocate memory: couldn’t create child process: /opt/suphp/sbin/suphp for /home/cphfilm/public_html/wp-login.php

    I don’t really have so much in the child theme – should I disable that?
    thanks so much…

    #286450

    In reply to: Foursquare Icon

    This reply has been marked as private.
    #286447
    jhsm
    Participant

    I’ve found a small issue in file config-bbpress/config.php at line 71:

    if(!function_exists(‘avia_bbpress_breadcrumb’)) refers to wrong function, thus causing a php runtime error if function ‘avia_fetch_bb_trail’ is overridden in child theme.

    This should be changed to: if(!function_exists(‘avia_fetch_bb_trail’)).

    Regards,

    Jan

    #286420

    I have an error_log? but it’s from june 26, mostly about this:
    [26-Jun-2014 09:25:26 UTC] PHP Fatal error: Out of memory (allocated 13631488) (tried to allocate 49152 bytes) in /home/cphfilm/public_html/wp-content/plugins/installer/classes/wprc-installer.php on line 962
    [26-Jun-2014 09:25:26 UTC] PHP Fatal error: Out of memory (allocated 21757952) (tried to allocate 19200 bytes) in /home/cphfilm/public_html/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 7416
    [26-Jun-2014 09:25:26 UTC] PHP Fatal error: Out of memory (allocated 12582912) (tried to allocate 49152 bytes) in /home/cphfilm/public_html/wp-content/plugins/akismet/class.akismet.php on line 156
    [26-Jun-2014 09:25:45 UTC] PHP Fatal error: Out of memory (allocated 2097152) (tried to allocate 32 bytes) in /home/cphfilm/public_html/wp-includes/plugin.php on line 401
    [26-Jun-2014 09:25:45 UTC] PHP Fatal error: Out of memory (allocated 30408704) (tried to allocate 12288 bytes) in /home/cphfilm/public_html/wp-content/plugins/wordpress-seo/inc/wpseo-non-ajax-functions.php on line 101
    [26-Jun-2014 09:25:45 UTC] PHP Fatal error: Out of memory (allocated 19922944) (tried to allocate 12288 bytes) in /home/cphfilm/public_html/wp-content/plugins/simple-image-sizes/classes/admin/media.php on line 431
    [26-Jun-2014 09:25:53 UTC] PHP Fatal error: Out of memory (allocated 1572864) (tried to allocate 8 bytes) in /home/cphfilm/public_html/wp-includes/wp-db.php on line 588
    [26-Jun-2014 09:25:53 UTC] PHP Fatal error: Out of memory (allocated 786432) (tried to allocate 12288 bytes) in /home/cphfilm/public_html/wp-includes/functions.php on line 2180
    [26-Jun-2014 09:26:10 UTC] PHP Fatal error: Out of memory (allocated 17563648) (tried to allocate 12160 bytes) in /home/cphfilm/public_html/wp-content/plugins/media-library-assistant/includes/class-mla-settings.php on line 1068
    [26-Jun-2014 09:26:10 UTC] PHP Fatal error: Out of memory (allocated 21757952) (tried to allocate 18560 bytes) in /home/cphfilm/public_html/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 7401
    [26-Jun-2014 09:26:10 UTC] PHP Fatal error: Out of memory (allocated 19922944) (tried to allocate 12288 bytes) in /home/cphfilm/public_html/wp-content/plugins/sitepress-multilingual-cms/inc/template-functions.php on line 527
    [26-Jun-2014 09:27:57 UTC] PHP Fatal error: Out of memory (allocated 13631488) (tried to allocate 49152 bytes) in /home/cphfilm/public_html/wp-content/plugins/installer/classes/wprc-installer.php on line 962
    [26-Jun-2014 09:27:59 UTC] PHP Fatal error: Out of memory (allocated 21757952) (tried to allocate 18560 bytes) in /home/cphfilm/public_html/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 7401
    [26-Jun-2014 09:28:34 UTC] PHP Fatal error: Out of memory (allocated 15990784) (tried to allocate 196608 bytes) in /home/cphfilm/public_html/wp-content/plugins/media-library-assistant/includes/class-mla-shortcodes.php on line 1606
    [26-Jun-2014 09:28:34 UTC] PHP Fatal error: Out of memory (allocated 22282240) (tried to allocate 49152 bytes) in /home/cphfilm/public_html/wp-content/plugins/sitepress-multilingual-cms/sitepress.class.php on line 9607
    [26-Jun-2014 09:28:34 UTC] PHP Fatal error: Out of memory (allocated 23855104) (tried to allocate 10240 bytes) in /home/cphfilm/public_html/wp-content/plugins/ultimate-tinymce/main.php on line 995
    [26-Jun-2014 09:28:34 UTC] PHP Fatal error: Out of memory (allocated 26738688) (tried to allocate 797608 bytes) in /home/cphfilm/public_html/wp-includes/functions.php on line 275
    [26-Jun-2014 09:28:34 UTC] PHP Fatal error: Out of memory (allocated 5767168) (tried to allocate 49152 bytes) in /home/cphfilm/public_html/wp-includes/user.php on line 601

    and then nothing after that date. Is there a different file I should be looking for? I did not see this loading problem on the site until today. How do I fix that memory problem?
    thanks so much!
    this is out of my league.
    nancy

    #286320

    In reply to: Query : Video Size

    Hey curmi01!

    Please add following to .htaccess file

    php_value upload_max_filesize 70M
    php_value post_max_size 70M

    or try contacting your service provider

    Cheers!
    Yigit

    Hi!

    You can change that in /includes/helper-social-media.php, line 147. Replace [shortlink] for [permalink].

    Regards,
    Josue

    Itai
    Participant

    Hello,

    I just changed my WordPress default web address from a subdir to the root folder

    My website works but when I try to enter my admin area I get this error:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 257991 bytes) in ****/wp-content/themes/enfold/css/dynamic-css.php on line 750

    Please let me know what I need to do.

    Best,

    i

    #286043

    Hi ppcinc!

    Thank you for using the theme!

    Please create a custom sidebar on Appearance > Widgets. Name it “Archive Sidebar” for example. Edit archives.php, find this code on line 78:

    //get the sidebar
    				$avia_config['currently_viewing'] = 'blog';
    				get_sidebar();

    Replace it with:

    //get the sidebar
    				echo '<aside class="sidebar sidebar_right  three alpha units" role="complementary" itemscope="itemscope" itemtype="https://schema.org/WPSideBar"><div class="inner_sidebar extralight-border">';
    				dynamic_sidebar('Archive Sidebar');
    				echo '</div></aside>';

    Make sure that the name of the custom widget area is Archive Sidebar.

    Regards,
    Ismael

    #285997
    This reply has been marked as private.
    #285881
    This reply has been marked as private.
    #285803

    In reply to: Loop Problem

    This reply has been marked as private.

    Partial fix

    Out of the 6 images that wouldn’t upload, 5 of them were over 1,500px in width.
    When making the images smaller, it would seem they would insert into the gallery with no problem

    another image was 900×1300 (670kb file size) and still wouldn’t upload, so I have no idea why that one wouldn’t upload

    I also tried inserting
    define('WP_MEMORY_LIMIT', '128M');
    Into the wp-config.php file, but this didn’t seem to do anything

    #284878

    Ok, already tried to replace the .php file, withou any lock.

    Its 2.7.1 I use.

    #284640
    This reply has been marked as private.
Viewing 30 results - 15,541 through 15,570 (of 16,892 total)