Viewing 30 results - 16,741 through 16,770 (of 16,887 total)
  • Author
    Search Results
  • #127323

    Hi,

    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 it with

    /* 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' => __( 'Hello', 'avia_framework' ),
    'echo' => false,
    'show_posts_page' => true,
    'truncate' => 70,
    'richsnippet' => false
    );

    Regards,

    Ismael

    #127535

    In reply to: I can't install it

    1) Please try to re-upload all wordpress core files. You can download the latest stable version here: http://wordpress.org/latest.zip

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

    3) Make sure that the folder permissions of /wp-includes/ and /wp-content/ are set to a reasonable value (eg 0755).

    #25652
    fmiron
    Participant

    Hello Kriesi. First of all awesome theme you’ve made here! Hat off!

    And now my problem:

    On a local install (MAMP test server) I’ve got a problem with LayerSlider. It doesn’t work because it says this: ” LayerSlider: old jQuery issue – It looks like you are using an old version (1.10.1) of the jQuery library. LayerSlider requires at least version 1.7.0 or newer … etc. etc.”

    I know jQuery 1.10.1 it’s the latest available with support for IE 6+. Haven’t touched the inner workings of the theme. The WP install is fresh – WP 3.6-beta4-24534.

    WordPress 3.5.2 comes bundled with jQuery 1.10.1

    Any ideea how to fix it?

    I’ve already tried to deregister the default jQuery and load it from the Google CDN (an older jQuery version) and it didn’t work.

    Later edit:

    Apparently another sip of coffee and added ” ; ” in the right place and I’ve fixed.

    What I did:

    added this snippet:

    Code:
    wp_deregister_script( ‘jquery’ );
    wp_register_script( ‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&#8217;, array(), null, in_footer );

    inside functions.php – in the ” avia_register_frontend_scripts() ” function.

    #25641
    giantastic
    Participant

    Hi,

    I bought the Enfold Theme, but I can’t get it working. I tried as uploading the .zip file, as unzipping and uploading via FTP. I have WordPress 3.3.1. Please, help me, I can’t work it out.

    This is the WARNING and FATAL ERROR Message I get.

    Warning: Missing argument 1 for get_post(), called in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /web/htdocs/www.delphiconsulting.it/home/wp-includes/post.php on line 371 Warning: Missing argument 1 for get_post(), called in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /web/htdocs/www.delphiconsulting.it/home/wp-includes/post.php on line 371 Fatal error: Call to undefined function wp_get_theme() in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1166

    #25596

    Topic: I can't install it

    in forum Enfold
    giantastic
    Participant

    Hello,

    I bought the Enfold Theme yesterday and I installed it, as uploading the ZIP file, as unzipping the file and uploading the folder via FTP. In both cases I received this message. I also tried to reset folder permission, but nothing changed.

    Any idea what’s wrong with it? Thank you.

    Warning: Missing argument 1 for get_post(), called in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /web/htdocs/www.delphiconsulting.it/home/wp-includes/post.php on line 371 Warning: Missing argument 1 for get_post(), called in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /web/htdocs/www.delphiconsulting.it/home/wp-includes/post.php on line 371 Fatal error: Call to undefined function wp_get_theme() in /web/htdocs/www.delphiconsulting.it/home/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1166

    #127254

    Found it, but it doesn’t work properly

    I did (according to support before) this on 137 in header.php (i commented out the logo line)

    echo "<div class='wp_title'>". bloginfo('name') ."</div>";
    echo "<div class='wp_description'>". bloginfo('description') ."</div>";

    Strangely, this appears in my source (the title is placed outside the div tags, so my styling has no success!)

    <div class="container">The Title<div class="wp_title"></div>The description<div class="wp_description"></div></div>

    #127163

    Hi,

    You can find the thumbnail sizes code on functions.php.

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $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
    $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)

    The small differences is due to the fact that the images is being constrained by their containers.

    Regards,

    Ismael

    #126067

    Hi,

    Download this file:

    http://www.mediafire.com/download/0795z38e9e933wc/wp_layerslider.xml

    Go to your phpmyadmin via cpanel. Import the wp_layerslider xml file to your database.

    Regards,

    Ismael

    #25387

    Topic: Error log

    in forum Enfold
    jawes
    Participant

    Hi,

    I get the following error log message:

    [27-Jun-2013 13:53:28 UTC] PHP Warning: preg_replace() [function.preg-replace]: Compilation failed: regular expression is too large at offset 35192 in /home/…/domains/…/public_html/…/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/template-builder.class.php on line 586

    #127093

    In reply to: How to use other fonts

    Hi,

    Edit admin > includes > register-admin-options.php, find this code on line 277.

    'Yellowtail'=>'Yellowtail',

    Below, add this code.

    'Ropa Sans'=>'Ropa Sans',

    Go to Theme Options > Styling > Heading Font, select Ropa Sans.

    You can apply the font on your custom.css.

    h1, h2, h3, h4, h5, h6, p {
    font-family: "Ropa Sans", Times New Roman, Helvetica, Arial, sans-serif;
    }

    Regards,

    Ismael

    #127031

    Hi,

    Access your cpanel go to your database through phpmyadmin. Import this xml file.

    http://www.mediafire.com/download/0795z38e9e933wc/wp_layerslider.xml

    Regards,

    Ismael

    #126733

    Hi,

    Increase the php memory limit again. Upgrade to Enfold 1.7.

    Switch the Avia Builder to debug mode 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 be able to see the actual shortcode below the Advance Layout Editor.

    Regards,

    Ismael

    #126717

    In reply to: Quform Inside the Tabs

    Hi,

    Didn’t I fix this for you? There is one javascript block in a php file that needs to have empty lines taken out. Every other javascript block has them taken out in his code, except this one:

    In file wp-content/plugins/iphorm-form-builder/admin/admin.php between lines 1177-1235 there is javascript between <script> </script> tags. Please replace it all with the code below; i took out the empty lines.

    <script type="text/javascript">
    //<![CDATA[
    jQuery(document).ready(function ($) {
    function iphorm_generate_shortcode() {
    var formId = $('#iphorm-insert-form').val(),
    formName = $('#iphorm-insert-form > option:selected').text(),
    shortcode = '';
    if (formId) {
    if ($('#iphorm-insert-popup').is(':checked')) {
    shortcode = '[iphorm_popup id="' + formId + '" name="' + formName + '"]';
    $.ajax({
    url: '<?php echo admin_url('admin-ajax.php'); ?>',
    type: 'POST',
    dataType: 'json',
    data: {
    action: 'iphorm_set_fancybox_requested'
    }
    });
    shortcode += '<?php echo esc_js(__('Change this to the text or HTML that will trigger the popup ', 'iphorm ')); ?>[/iphorm_popup]';
    } else {
    shortcode = '[iphorm id="' + formId + '" name="' + formName + '"]';
    }
    }
    return shortcode;
    }
    function iphorm_update_shortcode_preview() {
    var shortcode = iphorm_generate_shortcode(),
    $previewArea = $('#iphorm-shortcode-preview > div');
    if (shortcode) {
    $previewArea.text(shortcode).parent().show();
    } else {
    $previewArea.text('').parent().hide();
    }
    }
    $('#iphorm-insert-form').change(iphorm_update_shortcode_preview);
    $('#iphorm-insert-popup').click(iphorm_update_shortcode_preview);
    $('#iphorm-insert-go').click(function () {
    var shortcode = iphorm_generate_shortcode();
    if (shortcode) {
    window.send_to_editor(shortcode);
    } else {
    alert('<?php echo esc_js(__('Please select a form first ', 'iphorm ')); ?>');
    }
    return false;
    });
    });
    //]]>
    </script>

    Thanks,

    Nick

    #25431
    davro08
    Participant

    Hi

    I’ve been building a new site using Enfold which has been brilliant. All of a sudden the Advanced Layout Builder no longer work. The Default Editor still works but I can’t edit pages where I used the Advanced Builder.

    I have checked for plugin conflict and even reinstalled Enfold all without success. I know have the following error message

    Fatal error: Call to undefined function post_has_layerslider() in /homepages/13/d471485871/htdocs/wp-content/themes/enfold/config-layerslider/config.php on line 119

    davrophotofx.co.uk

    Thanks in advance for any advice – I was hoping to launch the site today!:(

    #126864

    UPDATE:

    Got mine to work using #post-55837 by DUDE.

    in functions-enfold.php

    if(previous_post_link_plus( array('in_same_cat' => true)))	//**AYUSH**
    {
    $entries['prev'] = get_previous_post($same_category);
    }
    if(next_post_link_plus( array('in_same_cat' => true))) //**AYUSH**
    {
    $entries['next'] = get_next_post($same_category);
    }
    $output = "";

    and using plugin

    Ambrosite Next/Previous Post Link Plus

    Hope it may help some other fellow like me.

    I’ll prob add another filter to fall back on the original wordpress function as used by kriesi so that the error doesnt show up on site if wordpress decides to change the structure.(The categories filter will prob fail then…lol)

    #126885

    Hi,

    Edit framework > php > function-set-avia-frontend.php, find the code online 817.

    if(!function_exists('avia_which_archive'))

    You can change the text below:

    if ( is_category() )
    {
    $output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
    }
    elseif (is_day())
    {
    $output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
    }
    elseif (is_month())
    {
    $output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
    }
    elseif (is_year())
    {
    $output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
    }

    Regards,

    Ismael

    #25410
    JKFC
    Participant

    Hi

    I need to create a 5 column portfolio grid, maybe even 6 columns. Read your solution below, but can’t find code via Appearance/Editor. Which heading is it under please?

    Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 70:

    /* __(‘5 Columns’, ‘avia_framework’ )=>’5′, */

    Replace it with

    __(‘5 Columns’, ‘avia_framework’ )=>’5′,

    Regards,

    Ismael

    #126729

    My local install reports the following:

    Memory limit : 40 MByte,

    Memory usage : 15.71 MByte

    What memory limit would I need to get this to work? And how do I up the memory in PHP?

    #126275

    Hi,

    You mean it displays at that size on a non-retina browser? at 200 height and 400 width? Are you sure about that , because the theme will resize anything over 120 height or so and maybe 230 width. That’s why I wanted to take a look at it..

    Alright, since you don’t want to go the easy with the plugin, we will go the hard way by installing the retina.js manually. You will need to download it from the src folder here https://github.com/imulus/retinajs … also as you can see there are some useful tests you can run calibrating it. . Just add the retina.js file to the /js/ theme folder and now in your functions.php file, add the following code to line 200 (which is empty)

    wp_register_script( 'jquery-retina', $template_url.'/js/retina.js', array('jquery'), 1, true );

    and add this code to line 207 of the same file

    wp_enqueue_script( 'jquery-retina' );

    Alright now just resize the image exactly twice bigger but save it under the same name as original but with @2x at the end, so that if you had logo.png , you will now have (Email address hidden if logged out) and put it right next to where your logo is stored in same folder.

    Now for your logo, you will need to change the above line you pasted to look like this

    $logo = "<img src=".$logo." alt='' width='200' height='100'/>";

    to look like this

    <img src="http://full-url-to-image/logo.png" data-at2x="http: (Email address hidden if logged out) " />

    And last but not least, here is the css you must use, just add it to /css/custom.css , Just please replace with name of your file, url to file and url to retina image and sizes.

    .logo {
    background-image: url('/images/my_image.png');
    }

    @media all and (-webkit-min-device-pixel-ratio: 1.5) {
    .logo {
    background-image: url(' (Email address hidden if logged out) ');
    background-size: 200px 100px;
    }
    }

    Thanks,

    Nick

    #126190

    I downloaded enfold 1.7, and I think that the child style.css is still added before ‘avia-dynamic’ and ‘avia-custom’.

    It no big deal, now that I know how to fix it, but you might want to look into it again.

    This is how I adjusted functions.php:

    /*

    * Use custom “register frontend javascripts” to set correct include order on child_theme style.css:

    */

    if(!function_exists(‘avia_register_frontend_scripts’))

    {

    if(!is_admin()){

    add_action(‘wp_enqueue_scripts’, ‘avia_register_frontend_scripts’);

    }

    function avia_register_frontend_scripts()

    {

    $template_url = get_template_directory_uri();

    $child_theme_url = get_stylesheet_directory_uri();

    //register js

    wp_register_script( ‘avia-compat’, $template_url.’/js/avia-compat.js’, array(‘jquery’), 1, false ); //needs to be loaded at the top to prevent bugs

    wp_register_script( ‘avia-default’, $template_url.’/js/avia.js’, array(‘jquery’), 1, true );

    wp_register_script( ‘avia-shortcodes’, $template_url.’/js/shortcodes.js’, array(‘jquery’), 1, true );

    wp_register_script( ‘avia-prettyPhoto’, $template_url.’/js/prettyPhoto/js/jquery.prettyPhoto.js’, ‘jquery’, “3.1.5”, true);

    wp_register_script( ‘avia-html5-video’, $template_url.’/js/mediaelement/mediaelement-and-player.min.js’, ‘jquery’, “1”, true);

    wp_enqueue_script( ‘jquery’ );

    wp_enqueue_script( ‘avia-compat’ );

    wp_enqueue_script( ‘avia-default’ );

    wp_enqueue_script( ‘avia-shortcodes’ );

    wp_enqueue_script( ‘avia-prettyPhoto’ );

    wp_enqueue_script( ‘avia-html5-video’ );

    if ( is_singular() && get_option( ‘thread_comments’ ) ) { wp_enqueue_script( ‘comment-reply’ ); }

    //register styles

    wp_register_style( ‘avia-style’ , $child_theme_url.”/style.css”, array(), ‘1’, ‘screen’ ); //register default style.css file. only include in childthemes. has no purpose in main theme

    wp_register_style( ‘avia-grid’ , $template_url.”/css/grid.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-base’ , $template_url.”/css/base.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-layout’, $template_url.”/css/layout.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-scs’, $template_url.”/css/shortcodes.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-custom’, $template_url.”/css/custom.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-prettyP’, $template_url.”/js/prettyPhoto/css/prettyPhoto.css”, array(), ‘1’, ‘screen’ );

    wp_register_style( ‘avia-media’ , $template_url.”/js/mediaelement/skin-1/mediaelementplayer.css”, array(), ‘1’, ‘screen’ );

    //register styles

    wp_enqueue_style( ‘avia-grid’);

    wp_enqueue_style( ‘avia-base’);

    wp_enqueue_style( ‘avia-layout’);

    wp_enqueue_style( ‘avia-scs’);

    wp_enqueue_style( ‘avia-prettyP’);

    wp_enqueue_style( ‘avia-media’);

    global $avia;

    $safe_name = avia_backend_safe_string($avia->base_data);

    if( get_option(‘avia_stylesheet_exists’.$safe_name) == ‘true’ )

    {

    $avia_upload_dir = wp_upload_dir();

    $avia_dyn_stylesheet_url = $avia_upload_dir . ‘/dynamic_avia/’.$safe_name.’.css’;

    wp_register_style( ‘avia-dynamic’, $avia_dyn_stylesheet_url, array(), ‘1’, ‘screen’ );

    wp_enqueue_style( ‘avia-dynamic’);

    }

    wp_enqueue_style( ‘avia-custom’);

    if($child_theme_url != $template_url)

    {

    wp_enqueue_style( ‘avia-style’);

    }

    }

    }

    #126434

    Hi,

    2). Your developer is correct. https://kriesi.at/support/topic/i-have-some-issues-with-translation-issues-and-with-the-contact-form#post-114535 This post has instructions on what to do.

    3) Its possible but its also experimental. You can turn on the advanced layout builder for posts. That will allow you to add a featured image which will be seen on the main blog page (or wherever you add the blog element to a page) , but on the individual blog posts the feature image will not show, and you will be able to either add it as an image element, or add a slider or have no image, since you will be able to use all the elements available , same as on pages.

    To add the layout elements to posts open config-templatebuilder/avia-template-builder/config/meta.php and change line 5 to look like

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page,'post''), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),

    You will also need to replace template-builder.php in the main folder with https://gist.github.com/meishern/bfbf909055e7b967dd5b this file. Without it, posts with layout elements will not have meta data or comments. This form will also add comments functionality to portfolio items.

    Thanks,

    Nick

    #125627

    Hey!

    Hey! Next theme update will use wordpress mail function as default, since it seems to work much better on some server settings than the default php mail function :)

    Best regards,

    Kriesi

    #126179

    Hi!

    The autorotation not playing is actually a bug, thanks for noticing and reporting it. It will be fixed with the next version :)

    If you want to disable the slideshow links you would need to do that manually be editing the file config-temlatebuilder/avia-shortcodes/slideshow.php

    scroll down to line 382 and edit the following:

    http://pastie.org/8078318

    Best regards,

    Kriesi

    #125626

    Try to add following code to the bottom of functions.php – it will replace the standard php mail() function with wp_mail() – wp_mail() is required for the smtp plugin:

    add_filter('avf_form_use_wpmail', 'avia_change_php_mail', 10, 3);
    function avia_change_php_mail($active, $new_post, $form_params){
    return true;
    }

    #25322
    peymangg
    Participant

    I am using the latest version of WordPress and the latest version of Enfold theme. I have deleted and reinstalled from scratch several times and continue to get the same error.

    Warning: session_start() [function.session-start]: open(/var/chroot/home/content/61/8377861/tmp/sess_pr028k1fv4ug118u4hullql9p5, O_RDWR) failed: No such file or directory (2) in /home/content/61/8377861/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/content/61/8377861/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/content/61/8377861/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

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

    There were closed topics with similar issues and it was advised to contact my hoster to check the server configuration (session data folder is writable & exists, etc.). I contacted my domain host which is godaddy and they ran some tests and said its something on my end with compatibility issues…

    What should I do??

    #125625

    I have not modified anything in any of the Enfold theme files at all… Like I said I use the plugin Configure SMTP on all of my WordPress sites and it has worked perfectly so far… as I said before… all mail sends perfectly from WordPress… ie, Password retrieval, new user, Wordfence, Contact form 7, UpdraftPlus too… basically everything but the Enfold built in forms… they just go to lala land… no errors or anything… I never tested the Enfold forms sending mail until 1.7… I started with 1.5 but had not ever tried to send a form mail out… so I am guessing it was probably still an issue…

    I have disabled all plugins except the Configure SMTP on and also tried other similar plugins but everything works mail or formwise execpt the enfold forms… there has to be related to enfold… I really like your form builder and would like to be able to use it…

    Also… I have all of my WordPress sites running on Windows Servers… with the latest PHP, MYSQL, and wordpress… I have full control of everything so if you have any ideas or some code to change in the theme let me know please…

    Regards,

    Mark L. Lee

    #25314

    Topic: Warning Trim

    in forum Enfold
    wayneftruax
    Participant

    Warning: trim() expects parameter 1 to be string, array given in /nfs/c03/h06/mnt/168099/domains/kokko-design.com/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow.php on line 427

    I have been receiving this warning on one page and one Portfolio Item. ????? help please.

    Thx Wayne

    Hi essentialmessagemarketing1,

    It sounds like most of the issues are related to the server not having enough memory allocated for wordpress to use. Increase your php memory to at least 128mb via one or all of these: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    You’ll also need to update the theme files since you’re still on 1.3.1. See: https://vimeo.com/channels/aviathemes/67209750

    Just as an aside, our Queue system goes oldest post to newest so each self post in the same topic actually pushes it further back instead of bringing it to our attention.

    Regards,

    Devin

    web_line
    Participant

    Hi,

    I have two problems – close connected to each other:

    – I would like to use the advanced layout editor for posts

    – it is essential to have the meta data an the comment box below the posts that use elements of the advanced layout editor

    Problem one could be solved with a modification of the wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php (add ‘post’ to the page variable).

    (see https://kriesi.at/support/topic/how-to-add-advanced-layout-manager-to-blog-posts and http://vimeo.com/channels/aviathemes/64996057)

    But this will produce the second problem – the comments box disappears from the posts. Even if I remove the advanced editor (untouched meta.php) and copy the code into my post manually – as soon as there are Avia Layout Builder elements in a post, the comment box and the meta infos are gone.

    That is a major problem for me. Without the Avia Layout Builder elements in my posts, the Enfold theme is much reduced in it’s quality/options. With the patch, I got the Avia Layout Builder elements but no comments and that’s a no-go for a blog.

    This fix from Nick (https://gist.github.com/meishern/bfbf909055e7b967dd5b) kills the layout for me – so this is no option.

    Also this fix won’t help – still no comments for me:

    https://kriesi.at/support/topic/comments-dont-show-up-on-portfolio-pages

    Any idea how to solve this?

    Best regards,

    Detlef

    #123901

    Hi,

    If you are interested I wrote yesterday some deep stuff about css media queries and the cascade .. counterfeiting and the cascade. https://kriesi.at/support/topic/responsive-problem#post-120098

    You can have, and if gallery has a unique id assigned to it as some advanced elements do, then its a piece of cake, if it doesn’t than it takes a bit more trickery to target them. Basically you will need to look at each one in relation to the html tags in front of each of them, and see if there is any differentiation you grasp and use. You can always go into the code and manually add an extra css tag via php. However if in some situations its almost impossible to do, there are really complex css selector targeting like .. target 3rd paragraph after 2nd div that comes after an image class for which you have a class name. stuff like…ul li:nth-child(3) { }

    You can examine some low level advances targeting here http://devsnippets.com/article/5-advanced-css-pseudo-class.html

    The page is called like that because you took too long to give it a title, so since wordpress auto-saves revisions, it saved itself under that name so when you added a title the slug itself remained the page ID. To change it , you need to change the slug since there is no law that your page slugs must match page titles. To turn on slugs, http://www.clipular.com/c?8102009=detVhaytfA8MCcl1vMBSHRGYFek&f=.png just open the top panel in pages and posts and portfolio items and click the slug check box. Just remember rules of slugs: no spaces, only small letters, and can use minus sign – and underscore _ (minus sign is standard in place of spaces). And slug should not be more than 60 characters long. 0-9 a-z _ + only.

    —-

    Damnn. I think u can win best enfold site , i know best one i seen, and I look at em all day and twice on Sunday (thats today). I should have copied your css from your previous attempts, what a waste.

    —-

    any reason you got a white vertical line separating the sidebar i guess on the page you linked from last post?

    I don’t think the calendar works. Somethings wrong with it.

    I just looked and you are in luck. avia-gallery-1 and avia-gallery-2 are in play. Here is css for avia gallery 1 already changed and an identical set would be needed for gallery to so just change 1 to 2 in each selector. You may have some selectors from avia-gallery though that you wont be able to kill since their specificity may be higher, so those will require aditional css, though try this.

    #top div .avia-gallery-1 {
    overflow: hidden;
    padding-bottom: 2px;
    clear: both;
    }
    #top .avia-gallery-1 .avia-gallery-thumb a {
    float: left;
    width: 20%;
    opacity: 1;
    display: block;
    }
    .main_color .avia-gallery-1 img {
    background-color: #24444E;
    color: #E6D9CF;
    }
    #top div .avia-gallery-1 img {
    float: left;
    border-style: solid;
    border-width: 1px;
    padding: 7px;
    width: 100%;
    border-radius: 0;
    }
    #top .avia-gallery-1 .avia-gallery-thumb a:hover {
    opacity: 0.5;
    }
    .avia_transform .avia-gallery-1 img.avia_start_animation {
    -webkit-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -moz-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    -o-animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    animation: avia_appear 0.9s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275);
    opacity: 1;
    }
    .alternate_color .avia-gallery-1 img{
    background-color: #305F72;
    color: #E6D9CF;
    }

    don’t forget, make 2nd copy with -2 instead of -1 if you want the 2 gallerys different.

    i thought before u wrote u are in late 60s , u 3 years older than me and not 70.

    Nick

Viewing 30 results - 16,741 through 16,770 (of 16,887 total)