Viewing 30 results - 16,621 through 16,650 (of 16,888 total)
  • Author
    Search Results
  • #137511

    Hey,

    Please add this on your custom.css or Quick CSS:

    #layerslider_17 {
    margin: 0 auto !important;
    }

    Please override the WordPress files except for the wp-content folder and wp-config.php.

    Regards,

    Ismael

    #137689

    You’re right. I switched the PHP version on the server from 5.3.27 FastCGI to regular ol’ 5.3.27, and it works now. Not sure how that setting got changed in the first place. Thanks for your time.

    Hey,

    Edit framework > php > class-breadcrumb.php, find this code:

    /* Set up the default arguments for the breadcrumb. */
    $defaults = array(
    'separator' => '»',
    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
    'after' => false,
    'front_page' => true,
    'show_home' => __( 'Home', 'avia_framework' ),
    'echo' => false,
    'show_posts_page' => true,
    'truncate' => 70,
    'richsnippet' => false
    );

    Replace truncate with ‘140’ or something higher.

    /* Set up the default arguments for the breadcrumb. */
    $defaults = array(
    'separator' => '&raquo;',
    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
    'after' => false,
    'front_page' => true,
    'show_home' => __( 'Home', 'avia_framework' ),
    'echo' => false,
    'show_posts_page' => true,
    'truncate' => 140,
    'richsnippet' => false
    );

    Regards,

    Ismael

    #28413
    chronospd
    Participant

    I found the bug why the arrows are not responsive on my website:

    There is this file which controls the responsive part of those slideshow arrows:

    enfold/config-templatebuilder/avia-shortcodes/slideshow.php

    line 272 to 279 which should add these classes to the slideshow if it’s size is <600px or <305px :

    .avia-small-width-slider

    .avia-super-small-width-slider

    The classes are defined in: css/shortcodes.css line 2095.

    The problem is that the config-templatebuilder/avia-shortcodes/slideshow.php is not adding those classes after inspecting the code preview of the page.

    I tried on two different pages and uploaded many files from the new update just to make sure I have the new version of the theme.

    I see it is working on your demo here:

    http://kriesi.at/themes/enfold/pages/services/

    One thing I will mentioned that I renamed my theme folder from enfold to 2013 before setting everything up. Not sure if this could cause that function to now work.

    Thanks!

    #136643

    In reply to: Archive Excerpts

    You should not be needing to edit anything like that. The loop-archive.php has a single line that reads:

    the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span>'); ?>

    To WordPress, this means spit out the content and if it has a more tag then break it off there. You need to change it to:

    the_excerpt(__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span>'); ?>

    Which instead attempts to grab the excerpt first.

    See: http://codex.wordpress.org/Function_Reference/the_excerpt

    The reason I wanted to re-point out this step: https://kriesi.at/support/topic/enfold-archive-exceprts#post-120517 is because you should be working in the loop-archive.php and not the loop-index.php after you make that change.

    #137350

    Hey,

    First, can you give us a link to website?

    1.) You don’t have to use WP Google Fonts for Open Sans. Edit functions.php, find this code:

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

    Below, add this code:

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

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

    This will enable the Open Sans Bold 700. Go to Enfold > Styling > select a Heading Font and Define the Font for your body text.

    Again, use the code for the LayerSlider layers with the css selector “.layerslider-open-sans”:

    .layerslider-open-sans {
    font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    }

    3.) You can access custom.css via FTP or your cpanel. It is located on wp-content/themes/enfold/css folder.

    Regards,

    Ismael

    #136548

    I found the bug why the arrows are not responsive:

    There is this file which controls the responsive part of those slideshow arrows:

    enfold/config-templatebuilder/avia-shortcodes/slideshow.php

    line 272 to 279 which should add these classes to the slideshow if it’s size is <600px or <305px :

    .avia-small-width-slider

    .avia-super-small-width-slider

    The classes are defined in: css/shortcodes.css line 2095.

    The problem is that the config-templatebuilder/avia-shortcodes/slideshow.php is not adding those classes after inspecting the code preview of the page.

    I tried on two different pages and uploaded many files from the new update just to make sure I have the new version.

    I see it is working on your demo here:

    http://kriesi.at/themes/enfold/pages/services/

    One thing I will mentioned that I renamed my theme folder from enfold to 2013 before setting everything up. Not sure if this could cause that function to now work.

    Thanks!

    #125405

    Hi,

    as you’ve recommended, I have now only changed in functions-enfold.php and added this line there:

    <br />
    'show_home' => __( 'Atelier', 'avia_framework' ),<br />

    but this has no effect:

    #136641

    In reply to: Archive Excerpts

    Hi Darryl,

    Once you’ve followed this step: https://kriesi.at/support/topic/enfold-archive-exceprts#post-120517

    If you are in a child theme need to create the includes folder and put the loop-archive.php in it. Now you can edit the loop-archive.php file and where it has the_content change it to the_excerpt.

    Regards,

    Devin

    #28266

    Topic: Child Theme Error

    in forum Enfold
    thesebogroup
    Participant

    Hi, I created a child theme per the video tutorial and get the error below.

    The chile theme is in a new folder in themes called enfold-child with two files in it, styles.css and functions.php.

    What did I do wrong?

    Thx, Seth

    ?php

    /*

    * Enfold Child theme functions file

    */

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/content/39/11054639/html/wp-content/themes/enfold-child/functions.php:14) in /home/content/39/11054639/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #136876

    Hey,

    1030x360px is enough for blog and portfolio items. If you are planning to use the Fullwidth Slider, you might want to use images with 1600x700px dimension. You can find the custom 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']['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']['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
    }

    Regards,

    Ismael

    #135556

    In reply to: Gallery image re-order

    Hi,

    If you switch the Avia Builder to debug mode, you will see the actual order of the image id on the gallery shortcode. Edit functions.php, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will see the actual shortcode below the builder. If you insert the “Gallery” element then added some images, the shortcode will look like this:

    [av_gallery ids='2617,2618,2616,2619' style='thumbnails' preview_size='portfolio' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload']

    Notice that the ids of the images are listed. You can rearrange them manually. You can also re-order them on the wordpress gallery UI.

    Regards,

    Ismael

    #136637

    Hi axiom555,

    The contact form just uses the built in wp mail/php mail function so it should work as long as the server is letting it get sent out. Two things to check are your spam filters/folders and also make sure the email you are using for them to be sent to is based on your domain (@yoursite.com).

    You can try checking your servers mail functionality by installing something like Contact Form 7 and setting up and using a basic form which will at least check to see if regular mail functions are without issue.

    Regards,

    Devin

    #136843

    In reply to: Default Layout option?

    Hi Jakub,

    You don’t need to change the actual php files for the page. You can use the Advanced Layout Editor for that: https://vimeo.com/channels/aviathemes/64927358

    If you are looking to change it, then its just the default wordpress page template found in the theme files.

    Regards,

    Devin

    #135890

    In reply to: Tag page problem

    I just have this which changes the image sizes in the functions.php

    <?php

    function avia_change_image_size_array()

    {

    global $avia_config;

    $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’=>901 ); // 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’=>297 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>260, ‘height’=>156 ); // images for portfolio 4 columns

    $avia_config = array(‘width’=>710, ‘height’=>426 ); // 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’=>619 ); // images for fullsize pages and fullsize slider

    if(avia_get_option(‘responsive_layout’) == “responsive responsive_large”)

    {

    $avia_config = array(‘width’=>845, ‘height’=>507 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries

    $avia_config= array(‘width’=>1210, ‘height’=>727 ); // images for fullsize pages and fullsize slider

    }

    avia_backend_add_thumbnail_size($avia_config);

    }

    add_action( ‘init’, ‘avia_change_image_size_array’, 1);

    #136516

    The uploads folder has 755 as well – and I did a test backup with a plug-in earlier and it wrote files to the uploads folder without issues, and I’ve had no issues with any plugins at this point as well and I’ve tried many, and other files exist in the uploads folder as well.

    As relied to me:

    The server is a managed “shared” Zeus hosting service, we do not have any advanced backend access, cpanel, etc. It is not a VPS, or dedicated webserver box. We have the following: Zeus Web Server v4.3, PHP v5.3.13, MySQL v5.1.67, perl v5.10.1.

    The server is hosted at: connection.ca

    #135945

    In reply to: youtube & https

    Hi filianluthien,

    Sorry for the delay in responding we have been getting a huge spike in support requests recently.

    It seems that the root of the issue is that the theme uses the built in WordPress embed shortcode and builds on to it. But there is an issue with WordPress core allowing the https vs http. See: http://core.trac.wordpress.org/ticket/18719 .

    That ticket has a suggested ‘fix’ you may want to try adding to your functions.php:

    wp_oembed_add_provider('https://youtu.be/*', 'http://youtube.com/oembed?scheme=https', false );
    wp_oembed_add_provider('#https://(www.)?youtube.com/watch.*#i', 'http://youtube.com/oembed?scheme=https', true);

    Regards,

    Devin

    #28145

    Topic: Archive Excerpts

    in forum Enfold
    itchybrain
    Participant

    Gday Kriesi forum

    I’d like to automate excerpts on the archive page, rather than the default full post content.

    I did read a recent post that was in need of the same but the thread is closed and I didn’t understand the latter steps: https://kriesi.at/support/topic/enfold-archive-exceprts

    I placed the archive.php in my child theme includes folder, and modified line 47 to say get_template_part( ‘includes/loop’, ‘archive’ );

    But then I’m not sure what to do next. It seemed as though I need to also include the loop-index.php in the child includes and modify that. However, I don’t know what to do to modify that file.

    Does anyone know what I need to do here?

    Thanks for any help you can provide me.

    cheers

    Darryl

    #134921

    Hi Ismael,

    After looking into the server configuration we found that the PHP version was set to 5.3.27 FastCGI versus 5.3.27 CGI (stable). The latest version is 5.5.1 CGI. We changed the version to 5.3.27 CGI initially and that apparently fixed things. Interestingly the other theme templates that have layout builders worked fine with the older version of PHP. Would you know if there are issues with Enfold 2.0 and PHP version 5.5.1 CGI? Seems to be working fine. Possibly something with Enfold and the FastCGI configuration. Thanks for your help!

    Yakosuso
    Participant

    Hi there.

    Several days ago, we post this topic….

    We got the same error…

    “Fatal error: Call to undefined function layerslider_init() in /homepages/4/d369761083/htdocs/PEPANET/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider.php on line 121” …

    We got the last versión for ENFOLD, 1.9 and WP versión is 3.5.1

    THATS YOUR ANSWER ….

    Check your pages for Layer Slider elements, remove them update the page then insert them back

    Regards,

    Ismael

    We have 2 questions….

    1º If we remove a slider page…we should creat it from scratch… There is not other way to do it?

    2º We should create all the slides from scartch?? Could we duplicate them, or the problem is the dupication?

    Best,

    jacobo

    Actually after some more research it appears that godaddy had a php5.ini file in to root of my domain. I cleared out the entire folder structure, re-installed wordpress, and let the install create a new php.ini file (not php5). Once that was complete i was able to install the ENFOLD template and all was good.

    Hi stwallis001,

    Thanks for posting your solution but the php.ini is specific to the host. What was it specifically if you don’t mind sharing so I can keep in mind for other GoDaddy users.

    Regards,

    Devin

    #126510

    Solution:

    Remove line 227 from the PHP.ini file.

    Works like a charm.

    Solution:

    Remove line 227 from the PHP.ini file.

    Works like a charm.

    #135671

    Hi,

    You need to register an account here: http://www.addthis.com/

    After you register go to Account Options > Profiles then get the profile id. It will look like this “ra-51de3s5b7e09a8f5”. Go to your WP Dashboard > Settings > Addthis Share then paste the profile id on “AddThis Profile ID” field. Save changes.

    Go back to the addthis account website then click “Get the code” > Share Buttons. Copy the social button codes, it will look like this:

    Edit header.php, find this code:

    <div  id='header_main' class='container_wrap container_wrap_logo'>

    <?php
    /*
    * Hook that can be used for plugins and theme extensions (currently: the woocommerce shopping cart)
    */
    do_action('ava_main_header');

    ?>

    <div class='container'>

    Paste the addthis social button code below:

    <!-- AddThis Button BEGIN -->
    <div class="addthis_toolbox addthis_default_style ">
    <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
    <a class="addthis_button_tweet"></a>
    <a class="addthis_button_pinterest_pinit"></a>
    <a class="addthis_counter addthis_pill_style"></a>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
    <!-- AddThis Button END -->

    Regards,

    Ismael

    #135492

    Hi,

    It is not happening on my end. Did you add the code on Text/HTML mode?

    Please download the latest version of Enfold then update your theme. https://vimeo.com/channels/aviathemes/64927356

    Also, edit wp-config.php then add this code:

    define('WP_MEMORY_LIMIT', '128M');

    Regards,

    Ismael

    I also just noticed two more errors.

    Warning: Unknown: open(D:TEMPPHP/sess_84u71qm6u5tos8at1bmsgsa8h6, O_RDWR) failed: No such file or directory (2) in Unknown on line 0

    Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (D:TEMPPHP) in Unknown on line 0

    Sorry to tag onto this post but I’ve also been getting the same session_start() error in the same file portfolio.php since I installed ENFOLD. No change after upgrading WP to 3.6. I think this may be what causes my site to load slowly?

    I’m not on Go Daddy. I’m on Netfirms.

    stwallis001
    Participant

    I recently purchased the ENFOLD Template and tried installing on go daddy hosting. The following error is what I get:

    Warning: session_start() [function.session-start]: open(D:TEMPPHP/sess_84u71qm6u5tos8at1bmsgsa8h6, O_RDWR) failed: No such file or directory (2) in /home/content/04/2049404/html/ies-computing/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    So far Go Daddy has not been able to provide any solution or suggestion.

    #27890

    Topic: Additional menu

    in forum Enfold
    ttttchess
    Participant

    Hi,

    i have register additional menu and I wish to show it before content and after slider. I have try to edit page.php and index.php page and on index/blog page it shows and on page not. How can i easy make it work? Here is the page where menu work: http://www.tijdelijk-4.nl/?page_id=731

Viewing 30 results - 16,621 through 16,650 (of 16,888 total)