Viewing 30 results - 16,591 through 16,620 (of 16,888 total)
  • Author
    Search Results
  • #139977

    Hi,

    Please edit that line on functions.php, replace it with:

    $avia_config['imgSize']['portfolio_small'] = array('width'=>514, 'height'=>370 ); // images for portfolio 4 columns

    It will double the size of the cropped portfolio thumbnail. Regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,

    Ismael

    #29179
    yutakaemura
    Participant

    Thank you for adjusting date format on v2.1!

    I still found a missing place at:

    line 72 of enfold/includes/loop-author.php

    the_time(‘d M Y’)

    should be

    the_time(get_option(‘date_format’))

    Thank you!

    #139910

    Hi ahauber,

    I can assure that by itself the contact form does work :) With 9,000 copies sold of the theme we would have a few more reports if it flat out didn’t work.

    Typically there are a few things that can cause it to not work on an individual server. The first is to make sure the email address used is one based at your domain. Eg (Email address hidden if logged out) . Many servers have spam protection that will not allow mail to be sent out if it is being sent from an outside domain like @gmail.com or something like that.

    Your host may also not allow you to use the php mail function in which case you would need to try using smtp instead: http://wordpress.org/plugins/wp-mail-smtp/

    So first thing to try is change the email address the form gets sent to/originates to a domain hosted one. Next, try using an outside plugin like Contact Form 7 to test your servers mail function (or just talk to your server). If need be, use the smtp mail plugin.

    Regards,

    Devin

    #139768

    It has 777 and has both the enfold.css and index.php.

    #139572

    Something on your server (probably a plugin, maybe your hoster) adds php vars to the image links. Normally the image link should look like: http://i1.wp.com/www.volantexrc.com/volantex/wp-content/uploads/2013/09/757-FPVraptor-01.jpg and the jpg extension helps the lightbox script to determine if the link points to an image or just another website. In your case the link looks like: http://i1.wp.com/www.volantexrc.com/volantex/wp-content/uploads/2013/09/757-FPVraptor-01.jpg?resize=260%2C185 and the ?resize=260%2C185 extension breaks the file type detection. Please try to deactivate all plugins to get rid of the php vars (?resize=260%2C185, etc.). Then activate them one by one to find the culprit.

    #29137

    Topic: Fullscreen Slider

    in forum Enfold
    salai_com
    Participant

    Hi there!

    Using the Fullscreen Slider I got this error message

    « Warning: trim() expects parameter 1 to be string, array given in /srv/www/vhosts/heartworking.ch/subdomains/pci/httpdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow.php on line 447 »

    Can you help me?

    Thanks

    #139714

    Hey,

    Yes, it is possible. Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 476:

    $output .= "<div class='av_table_col portfolio-entry portfolio-preview-content'>";

    $output .= "<h2 class='portfolio-preview-title'><a href='{$link}'>".$entry->post_title."</a></h2>";

    $output .= "<div class='entry-content'>";
    $output .= $content;
    $output .= "</div>";
    $output .= "<span class='avia-arrow'></span>";
    $output .= "</div>";

    Remove it.

    Regards,

    Ismael

    #139116

    In reply to: Specific IDX problem

    Here’s the page template:

    http://pastebin.com/rQ7MELC8

    And here are the pages that I have in my child theme:

    Footer

    (footer.php)

    Theme Functions

    (functions.php)

    Header

    (header.php)

    IDX Pages Page Template

    (idx.php)

    loop-page.php

    Sidebar

    (sidebar.php)

    Styles

    Stylesheet

    (style.css)

    #139495

    Hi dkhollen,

    No you will not lose anything by updating the theme files. All data in WordPress is stored in the database and not in the theme files. So unless you modified the php, js or css files then you can just update.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: htps://vimeo.com/chanels/aviathemes/67209750

    Regards,

    Devin

    Oi Fabiana,

    The file you need to edit is header.php, you could add the HTML before the header_meta closes, somewhere in line 117:

    <div class="login_buttons">
    <a href="http://paisagismoonline-com-br.web22.redehost.com.br/nsite1/portal/login-page/">LOGIN</a>
    <a href="http://paisagismoonline-com-br.web22.redehost.com.br/nsite1/portal/client-registration/">REGISTRAR</a>
    </div>

    And then, you can style it using CSS:

    .login_buttons{
    position: absolute;
    top: 5px;
    left: 140px;
    }

    Regards,

    Josue

    #28926
    CooperDevon
    Participant

    Since a few days, i getting this error constantly showing up in my error log:

    [Wed Sep 04 00:46:25 2013] [warn] [client 47.64.203.36] mod_fcgid: stderr: PHP Warning: simplexml_load_string(): Entity: line 948: parser error : Premature end of data in tag meta line 16 in /var/www/vhosts/xxxxxxx/httpdocs/wp-content/themes/enfold/framework/php/class-framework-widgets.php on line 651, referer: http://www.xxxxxx.de/

    Has this something to do with, that my COMBO Widget isnt working anymore?

    how can i fix this?

    #139019

    Hi Yigit,

    thanks for coming back.

    Here are lines 296 to 300:

    ‘ // Allow the uploads to be attached to a post/page

    $post_id = apply_filters( ‘vfb_upload_attach_post’, 0, $form_id );

    // Insert attachment into Media Library and get attachment ID

    $attach_id = wp_insert_attachment( $media_upload, $uploaded_file, $post_id ); ‘

    Since line 298 ist empty, i paste the whole “Handle Attachment” Section, maybe this is of some help to figure out the cause:

    ‘ // Handle attachments

    if ( $field->field_type == ‘file-upload’ ) :

    $value = ( isset( $_FILES[ ‘vfb-‘ . $field->field_id ] ) ) ? $_FILES[ ‘vfb-‘ . $field->field_id ] : ”;

    if ( $value > 0 ) :

    // 25MB is the max size allowed

    $size = apply_filters( ‘vfb_max_file_size’, 25 );

    $max_attach_size = $size * 1048576;

    // Display error if file size has been exceeded

    if ( $value > $max_attach_size )

    wp_die( sprintf( apply_filters( ‘vfb_str_max_file_size’, __( “File size exceeds %dMB. Please decrease the file size and try again.”, ‘visual-form-builder-pro’ ) ), $size ), ”, array( ‘back_link’ => true ) );

    // Options array for the wp_handle_upload function. ‘test_form’ => false

    $upload_overrides = array( ‘test_form’ => false );

    // We need to include the file that runs the wp_handle_upload function

    require_once( ABSPATH . ‘wp-admin/includes/file.php’ );

    // Handle the upload using WP’s wp_handle_upload function. Takes the posted file and an options array

    $uploaded_file = wp_handle_upload( $value, $upload_overrides );

    // If the wp_handle_upload call returned a local path for the image

    if ( isset( $uploaded_file ) ) :

    // Retrieve the file type from the file name. Returns an array with extension and mime type

    $wp_filetype = wp_check_filetype( basename( $uploaded_file ), null );

    // Return the current upload directory location

    $wp_upload_dir = wp_upload_dir();

    $media_upload = array(

    ‘guid’ => $wp_upload_dir . _wp_relative_upload_path( $uploaded_file ),

    ‘post_mime_type’ => $wp_filetype,

    ‘post_title’ => preg_replace( ‘/.[^.]+$/’, ”, basename( $uploaded_file ) ),

    ‘post_content’ => ”,

    ‘post_status’ => ‘inherit’

    );

    // Allow the uploads to be attached to a post/page

    $post_id = apply_filters( ‘vfb_upload_attach_post’, 0, $form_id );

    // Insert attachment into Media Library and get attachment ID

    $attach_id = wp_insert_attachment( $media_upload, $uploaded_file, $post_id );

    // Include the file that runs wp_generate_attachment_metadata()

    require_once( ABSPATH . ‘wp-admin/includes/image.php’ ); ‘

    Thanks for your advice.

    Cheers, Sebastian

    Hi,

    In your WordPress installaion please go to Enfold > Framework > Php and open Class-framework-widgets.php file and find following code in line 397

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format')." - ".get_option('time_format'), 'avia_newsbox' );

    and change it to

    $time_format = apply_filters( 'avia_widget_time', get_option('date_format'), 'avia_newsbox' );

    Regards,

    Yigit

    #28880
    kriru
    Participant

    My website is http://web.guru99.com/

    1. Open the website web.guru99.com

    2. Click on PHP tutorial link in the top left of the web page

    3. Click on the tutorial 1 link “What is PHP, First PHP program”

    4. Check for the link “You are here: Home / PHP / WHAT IS PHP, FIRST PHP Program” in the top left of the tutorial 1 page

    5. Click on the PHP hyperlink (Middle)

    6. Now webpage http://web.guru99.com/category/php/ is opened

    7. Click on the recent tab in the right side of the page

    8. Click on the first link in the recent tab

    9. Click on the back button in the browser

    10.Click on Answers link in the recent tab

    Actual Result:

    Links are broken . Error 404: Page not found error is displayed

    Expected Result:

    There should not be any broken links

    For more information please see this picture – http://imgur.com/ijXby7s

    So how can i fixed it

    Please help

    #28885
    mirzepapa
    Participant

    Hi,

    on http://energiefrey.de/kontakt/angebotscheck/ i am using the visual form builder pro.

    On my test server everything went fine, but after the site has gone live on another server, either uploading via the form does not work or i do receive this error message. VFB asked me to post in the theme forum as well to see if one can offer a solution. So, your help is appreciated:

    Warning: Illegal string offset ‘size’ in /www/htdocs/w0104318/wp-content/plugins/visual-form-builder-pro/includes/email.php on line 298

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /www/htdocs/w0104318/wp-content/plugins/visual-form-builder-pro/includes/email.php:298) in /www/htdocs/w0104318/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line27

    Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w0104318/wp-content/plugins/visual-form-builder-pro/includes/email.php:298) in /www/htdocs/w0104318/wp-includes/pluggable.php on line 875

    Thanks for your help & have a nice day,

    Sebastian.

    Hi,

    Try this: add this code at the end of the functions.php file, it will create a [shortcode] which you can call in any page/post you want it, also, you can set the Analytics account id so you can track with different GA codes each page.

    The code: https://gist.github.com/josueochoa/6420413 (copy and paste it)

    The shortcode:

    [customga id="UA-20657494"]

    Regards,

    Josue

    Hi Josue,

    I added it to the Quick CSS field of ENFOLD settings section but it probably took out all the portfolios from the widget area so the outcome was none of the portfolios showed up. While I was trying to update and save the page, I got this error message,

    Fatal error: Call to undefined function layerslider_init() in /home/content/30/11045530/html/template/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 121

    Do you have any idea what might have caused this? The page I got this from is http://acutta.com/template/?page_id=2.

    Then I tried a different page and now you can see the portfolio list at http://acutta.com/template/?page_id=2307.

    However, as you can see from the 2307 page, I got these messages,

    Nothing Found

    Sorry, the post you are looking for is not available. Maybe you want to perform a search?

    For best search results, mind the following suggestions:

    Always double check your spelling.

    Try similar keywords, for example: tablet instead of laptop.

    Try using more than one keyword.

    Feel like browsing some posts instead?

    On the page, I only have the ENFOLD Latest Portfolio widget there. Not sure where these messages came from.

    And BTW, the page directly changed to “http://acutta.com/template/?post_type=product&#8221; from “http://acutta.com/template/?page_id=2307&#8221; and don’t know why is that.

    Sorry Josue, I asked a lot of questions here. Thanks again for your assistance.

    Thanks,

    #138964

    In reply to: Featured Image Options

    Hi,

    Yes, it is possible.

    To hide the featured image in the single post open the /enfold/includes/loop-index.php file:

    Replace the line 77:

    if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';

    With this:

    if(!is_singular()) if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';

    That should do it, just tested locally.

    Regarding the second question, thats a little more tricky because there are a ton of places where the blog loop can occur, where exactly do you want to disable the link?

    Regards


    Josue

    #138868

    In reply to: Featured Image Size

    Hi Evan,

    Be sure you are using the latest version of Enfold, then open this file: /wp-content/themes/enfold/functions.php

    The settings you want to change starts in line 78:

    $avia_config = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news

    $avia_config = array('width'=>180, 'height'=>180); // small image for blogs

    $avia_config = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider

    $avia_config = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider

    $avia_config = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)

    $avia_config = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns

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

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

    $avia_config= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    Regards,

    Josue

    #138705

    Hi,

    Yes, just edit functions.php and find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    add_theme_support('avia_conditionals_for_mega_menu');

    Condition logic option will be enabled on the Appearance > Menus panel.

    Regards,

    Ismael

    #136220

    In reply to: Layer Slider problem

    Hey,

    1) Please try to re-upload the wp-contentthemesenfoldconfig-layersliderLayerSlider folder and make sure that the folder permission is set to a reasonable value like 755. Make sure that the wp-contentthemesenfoldconfig-layersliderLayerSliderlayerslider.php file exists on your server.

    2) Try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Regards,

    Ismael

    #136219

    In reply to: Layer Slider problem

    I’m also having a problem with line 121, when someone does a search through the search box they receive:

    Fatal error: Call to undefined function layerslider_init() in /homepages/19/d178762827/htdocs/wordpress-Backup/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 121

    Any word on what causes this? I’d like my viewers to be able to use this search box.

    You can test it out here: http://onesourcegraphics.org/creative-differences/

    left sidebar

    #137892

    Hi Guys,

    I was having the same problem until I changed the PHP version from 5.3.27 FastCGI to 5.3.27 CGI (Stable).

    Hope this helps,

    Jonathan

    Hi,

    I’m actually not sure if there is better way to do it but this is how i would do;

    First in Single.php file change the code in line 28 from

    <div class='content units <?php avia_layout_class( 'content' ); ?>'>

    to

    <div class='content units twelve'>

    Then delete these lines between 51-57

    <?php

    $avia_config = "blog";

    //get the sidebar

    get_sidebar();

    ?>

    Then add this code to Quick CSS

    .content { border-right-style: none; }

    I hope that works for you

    Regards,

    Yigit

    #138071

    Hi, Martina

    The problem is that Entypo (the icon font) doesn’t include a YouTube icon. However i found a temporary workaround (using a video icon with the default red background):

    Be sure that you are using the latest version of Enfold, then you need to add these lines of code at the end of these files respectively:

    /enfold/includes/admin/register-admin-options.php:

    $avia_elements[106][0] = array_merge($avia_elements[106][0], array('Youtube' => 'youtube'));

    /enfold/functions.php

    $avia_config = array_merge($avia_config, array('youtube' => '&#127916;'));

    Then if you go to the Theme options you will see that there’s is a Youtube option:

    Regards,

    Josue

    #28632
    itchybrain
    Participant

    Gday Kriesi

    Is there a way to get php to work in the Theme Options fields?

    eg. in the footer field, I tried without success:

    © 2007 - <?php echo date("Y"); ?>Copyright Client Name here [nolink]

    Thanks for any help you can provide for this

    #137920

    I’ve done what you told me and i get this error when loading the page

    Parse error: syntax error, unexpected ‘<‘ in /home/content/16/9955616/html/wp/wp-content/themes/enfold/header.php on line 171

    Here is how i placed the code:

    /*
    * display the main navigation menu
    * modify the output in your wordpress admin backend at appearance->menus
    */
    $extraOpen = $extraClose = "";
    if(strpos($headerS,'bottom_nav_header') !== false){ $extraClose = "</div></div><div id='header_main_alternate' class='container_wrap'><div class='container'>"; }

    echo $extraClose;
    echo "<div class='main_menu' data-selectname='".__('Select a page','avia_framework')."'>";
    $args = array('theme_location'=>'avia', 'fallback_cb' => 'avia_fallback_menu', 'walker' => new avia_responsive_mega_menu());
    wp_nav_menu($args);

    echo " </div>"
    ;

    <div id=content>

    <!-- EXCHANGERATES.ORG.UK LIVE FOREX RATES TICKER START -->
    <script type="text/javascript">
    var w = '1200';
    var s = '1';
    var mbg = 'FFFFFF';
    var bs = 'no';
    var bc = '000044';
    var f = 'verdana';
    var fs = '10px';
    var fc = '000044';
    var lc = '210000';
    var lhc = 'FE9A00';
    var vc = '000044';

    </script>
    <script type="text/javascript" src="http://www.currency.me.uk/remote/CUK-LFOREXRTICKER-1.php"></script>
    <!-- EXCHANGERATES.ORG.UK LIVE FOREX RATES TICKER END -->

    </div>;
    ?>

    <!-- end container-->"

    #136702

    I understand completely, Devin. Unfortunately, for several reasons, one being this forum is indexed, I simply can’t make this site live to the public as of now. I will, however, post what I’ve done so far to help anyone whom might be looking to add this, what I consider to be common, feature when working with woocommerce.

    Here’s a screenshot of what I’ve managed to do so far:

    https://dl.dropboxusercontent.com/u/17031532/expo_navigation_menu_updated_2.png

    EDIT HEADER.PHP AND ADD:

    (Refer to Ismael’s post above.)

    (I’ve moved this above, below, and in between <div id=’header_main’ class=’container_wrap container_wrap_logo’> with no success, as it’s still covered by the main container, but maybe one of you can get it working.)

    ADD THIS TO YOUR QUICK.CSS OR CUSTOM.CSS:

    #right-header {

    position: absolute;

    height: 80px;

    line-height: 80px;

    right: 151px;

    }

    #right-header a {

    display: inline-block;

    height: 80px;

    }

    #right-header a.login {

    padding-bottom: 40px !important;

    height: 80px;

    width: 70px;

    font-family: “proxima-nova-alt”,sans-serif;

    font-style: normal;

    font-weight: 700;

    font-size: 13px !important;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: #919191;

    }

    (Obviously, you’ll have to adjust this css to fit your needs. For example, I’m using a custom font from Typekit, which most of you won’t need.)

    Thanks to you both, Devin & Ismael, for your support,

    Benjamin

    #137875

    Thanks Devin, but memory is not the issue, see link (http://bit.ly/17iuv88). I have purchased this theme for my personal site (paulsutton.us), I had a new client purchase the theme also so that I could build them a site with it, I have it installed on a subdomain on my server, and this is where I am having the issue.

    I have reinstalled in case the download was bad, upped my php memory, and disabled all plugins…out of ideas.

    #28500
    Khun_Leigh
    Participant

    Hello,

    Thanks for the great theme.

    I am having problems trying to install in a sub directory and sub domain. When I install the Enfold theme in a sub directory or sub domain I receive the following error:

    Warning: Missing argument 1 for get_post(), called in /home/leighmol/public_html/leemarine/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/leighmol/public_html/leemarine/wp-includes/post.php on line 371

    Warning: Missing argument 1 for get_post(), called in /home/leighmol/public_html/leemarine/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/leighmol/public_html/leemarine/wp-includes/post.php on line 371

    Fatal error: Call to undefined function wp_get_theme() in /home/leighmol/public_html/leemarine/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168

    Other themes I install work fine however.

    Could you please advise how to install into a sub directory or sub domain?

    Thank you for your assistance.

    Leigh

Viewing 30 results - 16,591 through 16,620 (of 16,888 total)