Viewing 30 results - 241,891 through 241,920 (of 243,766 total)
  • Author
    Search Results
  • #114951

    Hi!

    @fotomaster – glad it works now :)

    Best regards,

    Peter

    #123187

    1) open up functions-enfold.php and replace:

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    with

    $defaults 	 = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    and replace “You are here” with your custom text.

    2) Maybe you selected the “Don’t display the header” in the sidebar on the page editor screen:

    Please open up wp-contentthemesenfoldframeworkphpfunction-set-avia-frontend.php and replace:

    if ($i != 1) {
    //we will have two since we are not using 'other' argument yet
    //see if version is before or after the name
    if (strripos($u_agent,"Version") < strripos($u_agent,$ub)){
    $version= $matches['version'][0];
    }
    else {
    $version= $matches['version'][1];
    }
    }
    else {
    $version= $matches['version'][0];
    }

    with

    if ($i != 1)
    {
    //we will have two since we are not using 'other' argument yet
    //see if version is before or after the name
    if (strripos($u_agent,"Version") < strripos($u_agent,$ub))
    {
    $version = !empty($matches['version'][0]) ? $matches['version'][0] : '';
    }
    else
    {
    $version = !empty($matches['version'][1]) ? $matches['version'][1] : '';
    }
    }
    else
    {
    $version = !empty($matches['version'][0]) ? $matches['version'][0] : '';
    }

    #126555

    No, unfortunately not without major modifications/customization. By default the isotope script supports one filter/sort level and we just use the default script functionality. If you want to implement several filter levels you need to rewrite the portfolio function in enfold/js/avia.js – search for

    $.fn.avia_iso_sort = function(options)

    and add your advanced filter logic/code to this function.

    #116477

    In reply to: Enfold Showcase

    Hey!

    Please don’t use this thread for questions. It’s a showcase thread and not intended for support requests, etc…

    Best regards,

    Peter

    #126436

    We will close this request since otherwise it will demand our attention and if you have further questions, just open a new one and reference it please.

    Thanks,

    Nick

    #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

    #114688

    PORTFOLIO GRID OPTIONS

    I wish it were possible to choose 1 column and 5 columns for the portfolio grid..

    isengard
    Participant

    I had a page I wanted to use as a template for a similar page and tried to use the template feature. Named the template and then when I opened a new page tried to use that. Only a revision list showed up and now open any page and when I click on advanced editor then it just shows a default editor button and a comments box.

    How do I get it to work right again, love the theme, very easy to use until this.

    lorra

    #126285

    Hey Andy!

    You would need to adjust that manually by opening the avia.js file in folder enfold/js/ and then scroll down to line 354 which should read:


    duration= data.duration || 800,

    change the default scrollspeed number to a higher number which will result in slower scrolling. eg:


    duration= data.duration || 2000,

    #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’);

    }

    }

    }

    #125758

    Hi,

    Please add this css to your /css/custom.css file OR to Quick CSS located in Enfold > Layout Styling… the text area at the bottom of the page

    .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row {
    height: 125px !important;
    }
    @media only screen and (max-width: 980px) {
    .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row {
    height: 175px !important;
    }}
    @media only screen and (max-width: 767px) {
    .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row {
    height: 375px !important;
    }}

    Your testimonials are causing the lower part of the page to jiggle and jump.. This stabilizes it.

    —-

    That table has got to go. Tables are for data like if you were to show how many people in each city of the world own this product, then you would use a table. Can’t use tables to prop up the page’s layout or the div design police will come.

    Instead use an image gallery with small images option. Stick all 6 images in it, and add your text as a tooltip, be nice and animated and responsive as well.

    View post on imgur.com

    looks good on small phones and rearranges itself properly

    http://www.clipular.com/c?8224023=DSxT87g0svAM0J2q6Wht60Q9MVc&f=.png

    this is how I added the gallery with these settings

    http://www.clipular.com/c?8229018=MbJFLRKUz3IiwDSwA9oAq-z4iWI&f=.png

    and here is where you set the tool tips that pop out

    http://www.clipular.com/c?8233017=nsSMeYJCS6s_QuxnjVZsM-XlgDY&f=.png

    Here is the css you will need to add to make the gallery look good on iphone and ipad.

    @media only screen and (max-width: 980px) {
    #top #wrap_all .avia-gallery-thumb a {
    width: 25%;
    }
    }
    @media only screen and (max-width: 767px) {
    #top #wrap_all .avia-gallery-thumb a {
    width: 31% !important;
    }}

    Good luck,

    Nick

    #126435

    Hi Nick,

    Thank you. In case I have any questions I’ll let you know.

    Best

    #126284

    Go here:

    This is the average slow paced link, find this link on the page and click on it.

    http://i.imgur.com/FmiPVU3.png

    The link url: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/#portfolio

    This is the slow transition speed link

    http://i.imgur.com/WZF8jMW.png

    The link url: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/#team

    You can tell the difference between the two. Go on the one page site and find the buttons and click on them.

    Thanks Nick

    Andy

    #126127

    Hi,

    Please add this css to your /css/custom.css file OR to quick css located in Enfold > Layout Styling… the text area at the bottom of that page.

    @media only screen and (max-width: 767px){
    .responsive #top .slide-entry {
    width: 100%;
    margin-left: 0%;
    }
    .avia-content-slider .slide-entry-wrap {
    margin-bottom: 0px;
    }}

    Thanks,

    Nick

    #126274

    Hi Nick, sure i uploaded the file at Double Resolution. But instead of displaying at 100x200px. It displays at 200x400px. No URL at the Moment as its only in my mamp Server. Any hints? Greatly appreciated.

    #126283

    Hi,

    Can you please point us on your site or the demo site to the specific page urls which contain an example of both fast and slow transition please.

    Thanks,

    Nick

    #126273

    Hi,

    What solution? Those lines of code you pasted are lines 425-429 of functions-set-avia-frontend.php

    I am guessing you are following this post? https://kriesi.at/support/topic/retina-logo-on-homepage#post-115183 , Do you have a url where you placed this code because you should have uploaded the logo at size 400x200px if you are now displaying at 200x100px, which sounds too even numbered so something isn’t right. Please show the code so we can look at the sizes and get to bottom of this.

    Thanks,

    Nick

    #25225
    gerry3211
    Participant

    Hi there,

    I am just starting to work with enfold and woocommerce together.

    In the layered navigation filters, I am selecting a filter which shows that there are 58 products within it, but it only displays 10 products when the filter is selected.

    I was using superstore-woocommerce before, and when I switch back to that theme all of the filters work perfectly fine.

    Any idea what may be causing this? Any of the filters, when selected, do not bring back the total number of products available within them.

    I will send you a link to the site via email so that you can see as well.

    Regards,

    Gerry

    #125845

    I don’t know of any specific reason why it wouldn’t but hopefully that gets you close enough. In the end you may want to look into digging into the woocommerce hooks/filters which is the proper way to do something like this.

    Neither of us just happen to know the proper syntax off hand unfortunately .

    Regards,

    Devin

    #126272

    Thanks for the hint with the Plugin. But i only want to have a Crisp Logo. As i expect GEW Retina visitors. So a Solution like the One Pointer Out above but Working would be Great.

    Frank

    #114687

    Can you please add support for the Nextgen plugin? Organizing the web site images using the default WP date is horrible. Being able to use custom folders would be great and even better if Enfold provided some integration points with NextGen. Thanks.

    #125531

    Hey!

    Yes, sorry currently there is no way around that behavior. Sections are intended to be fullwidth, so sidebars will always be placed below the section, along with other elements that are located bellow the section.

    If you need to display some widgets on a page with a section I would recomment to create a 3/4 – 1/4 column layout within the section and add a widget area element to the smaller column ;)

    #126271

    Hi,

    Logo can go bigger.but try to keep it to those proportions. 2×1

    For retina, I prefer to use this plugin http://wordpress.org/plugins/wp-retina-2x/ Since its well supported and has tons of updates all the time. Its much easier to do it that way.

    Thanks,

    Nick

    #25343

    Topic: Front page slider size

    in forum Enfold
    coachbruce
    Participant

    Quick question. Reading through the threads, it looks like 930×340 is the right size for the front page slider. But, if we want the image to extend beyond the page, is there a size that works better (I’ve seen numbers in here up to 1500 or so)? In other words, should I use a larger image, realizing that the visible part will be commensurate with 930×340, but will still extend the image beyond the edge?

    Or maybe the better question is, what size image did you upload the front page on your site (for the Enfold demo)?

    Note: I’m not a techie :-)

    Thanks!

    Bruce

    ukcommsdigital
    Participant

    I am working in the Enfold theme and I have two questions:

    (a) For some reason, I cannot seam to get rid of the two vertical scroll bars when viewing any page (http://farm4.staticflickr.com/3795/9137162284_4511f8a668_b.jpg). How do I get rid of the inner scroll bar?

    (b) Also, could you aid in how to create a home/landing page like the one featured in the Enfold demo page (http://kriesi.at/themes/enfold/)? We would like to have a landing page that does not have the Title Bar at top as well as the three section columns below the slider.

    Please advise as soon as possible.

    Sincere Thanks!

    #125877

    GOT IT!!! Thank you.

    You guys are great. Let me just say, you have a quick support group. Thank you very much.

    George Younan

    #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

    #125876

    Hi George,

    After opening that slideshow go to the Global Settings tab and then scroll down to Slideshow. The first option needs to be set to be on (the green should show). It has the description “If enabled, slideshow will automatically start after loading the page.”.

    Regards,

    Devin

    #125916

    Hey!

    I am sorry, the ajax portfolio does not yet support videos. It works in a much different way than the other themes we used til now, so it will take some time to add this functionality ;)

    Feel free to add any suggestions and wishes to our feature request thread: https://kriesi.at/support/topic/enfold-feature-requests

Viewing 30 results - 241,891 through 241,920 (of 243,766 total)