Viewing 30 results - 239,911 through 239,940 (of 243,989 total)
  • Author
    Search Results
  • #137226

    Hi,

    You can add video beside the main featured image. Edit the portfolio item, scroll below then look for “Add Preview Text”, switch to Text mode. Add something like this:

    <a href="http://youtu.be/kYtGl1dX5qI" rel="lightbox"><img alt="" src="IMAGE URL HERE" /></a>

    Don’t forget to add rel=”lightbox” to the anchor tag. This will open the video on a lightbox.

    Anyway, you can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    #136361

    No, imo WPXML is useless in this case. I’d recommend to use a plugin like: WP MIGRATE DB to generate the database backup file, then import the sql file on the other server/host and use ftp to upload the theme/wordpress, etc. files.

    #28158
    GordonMeiner
    Participant

    Hello.

    I’ve installed yesterday the Enfold theme (which is awesome!) and also switched from qTranslate to WPML. Everything works fine, as far as I recognized. Just one thing I just saw. I have Javascript in my RSS Feed. And no RSS reader likes it… how do I get it out there? And why is it there?

    Cheers

    Gordon

    Here the feed:

    _______________________________________________________________________

    <script type=’text/javascript’>

    /* <![CDATA[ */

    var avia_framework_globals = avia_framework_globals || {};

    avia_framework_globals.frameworkUrl = ‘http://www.***.com/wp-content/themes/enfold/framework/&#8217;;

    avia_framework_globals.installedAt = ‘http://www.***.com/wp-content/themes/enfold/&#8217;;

    avia_framework_globals.ajaxurl = ‘http://www.***.com/wp-admin/admin-ajax.php?lang=de&#8217;;

    /* ]]> */

    </script>

    <?xml version=”1.0″ encoding=”UTF-8″?> <rss

    version=”2.0″

    xmlns:content=”http://purl.org/rss/1.0/modules/content/&#8221;

    xmlns:wfw=”http://wellformedweb.org/CommentAPI/&#8221;

    xmlns:dc=”http://purl.org/dc/elements/1.1/&#8221;

    xmlns:atom=”http://www.w3.org/2005/Atom&#8221;

    xmlns:sy=”http://purl.org/rss/1.0/modules/syndication/&#8221;

    xmlns:slash=”http://purl.org/rss/1.0/modules/slash/&#8221;

    #125406

    Hey,

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

    'show_home' => __( 'Home', 'avia_framework' ),

    Replace it with:

    'show_home' => __( 'Atelier', 'avia_framework' ),

    Regards,

    Ismael

    #136242

    In reply to: Header question

    Hey,

    Edit functions-enfold.php, find this code:

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    Replace it with:

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '>', 'richsnippet' => true));

    Regards,

    Ismael

    #136282

    Hi,

    1) Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace

    if($show_meta && !empty($excerpt))
    {
    $output .= "<div class='slide-meta'>";
    if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    {
    $link_add = $commentCount === "0" ? "#respond" : "#comments";
    $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );

    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    }
    $output .= "<div class='slide-meta-time'>" .get_the_time(get_option('date_format'), $the_id)."</div>";
    $output .= "</div>";
    }

    with

    if($show_meta && !empty($excerpt))
    {
    $output .= "<div class='slide-meta'>";
    if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    {
    $link_add = $commentCount === "0" ? "#respond" : "#comments";
    if($commentCount == "0")
    {
    $text_add = __('Contribute', 'avia_framework' );
    }
    else
    {
    $text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    }

    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'> | </div>";
    }
    $output .= "<div class='slide-meta-time'>" .get_the_time(get_option('date_format'), $the_id)."</div>";
    $author_id = $entry->post_author;
    $author_url = get_the_author_meta( 'url' , $author_id );
    $author_name = get_the_author_meta( 'display_name' , $author_id );

    $output .= 'by <a href="'.$author_url.'">'.$author_name.'</a>';
    $output .= "</div>";
    }

    If you want to change the date replace get_option(‘date_format’) with a custom date format – see: http://codex.wordpress.org/Formatting_Date_and_Time

    2) In includes/loop-index.php replace

    comments_popup_link(  "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));

    with

    comments_popup_link(  __('Contribute','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));

    3) No, the portfolio grid uses a different css & html code and this would require some customization.

    #116510

    In reply to: Enfold Showcase

    Hey!

    Nice work :)

    Best regards,

    Peter

    #137264

    Hey,

    You can add this on your custom.css or Quick CSS:

    .blog #header {
    display: none;
    }

    Regards,

    Ismael

    #136870

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    #134630

    Hi,

    I tested the site. Upload the theme myself on the WordPress installation, no problem so far. As soon as you activate the theme and access the page, you’ll get an error or a blank page. I don’t know why this is happening for the Enfold theme only. I already tagged this thread to Kriesi.

    Regards,

    Ismael

    #28368

    Topic: Header font

    in forum Enfold
    sappermarine
    Participant

    Hi there, I am new to Enfold. How do I change the header font/size?

    Thanks!

    Taylor

    Hey,

    Yep, the post meta info is fixed on Enfold 2.0.1.

    Don’t forget to remove browser cache then reload the page after the update.

    Cheers,

    Ismael

    #136857

    Hey,

    I really don’t see it. What browser are you using?

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

    .entry-content ul li.avia_start_animation {
    list-style: none;
    }

    .entry-content ul li.avia_start_animation {
    list-style: disc inside;
    }

    Regards,

    Ismael

    #137237

    Hey,

    Please try to manually upload the plugin on wp-content/plugins folder.

    If you have access to the .htaccess file, add this code:

    ########
    php_value upload_max_filesize 50M
    php_value post_max_size 50M
    php_value max_execution_time 500
    php_value max_input_time 500
    #########

    Regards,

    Ismael

    Hey,

    Please use the <!–more–> tag to specify the excerpt. You can also enable the Excerpt box by clicking Screen Options while editing a post. You can them manually add an excerpt. If you’re using the Blog Post element, make sure that you select “Excerpt” on Blog Content length.

    Regards,

    Ismael

    #137289

    Hey,

    Create a page with the Color Section element. Disable the header, footer and socket. Inside the Color Section insert two columns. One for the image and the other for the Sidebar element. Go to Appearance > Widget then create a custom widget area. Insert the widgets that you want to show on the Maintenance Mode page. Edit the page again then edit the Sidebar element, select the custom widget that you just created.

    Yes, you can work on the rest of the site while the site on “Maintenance Mode”. Just assign the Maintenance Mode page on Enfold > Theme Options > Frontpage display option for the meantime.

    To learn more about the theme, please watch this videos: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    #136269

    In reply to: Icons in Enfold

    Hey,

    Let us know if it works.

    Cheers,

    Ismael

    #28365
    SoulPower
    Participant

    Hi Ismael,

    You were helpful earlier this week providing me with the following css to change the font of the LayerSlider:

    .layerslider-open-sans {

    font-family: ‘Open Sans’, ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif !important;

    }

    All was well and it was displaying Open Sans Bold 700 via WP Google fonts. I had entered the css in the Quick CSS section within Enfold Theme Options>Styling.

    Just tonight I changed the predefined color scheme and for whatever reason Open Fonts is no longer displayed in the LayerSlider anymore, it’s a generic sans-serif.

    Any ideas? I can send you the page via email if that is useful.

    Thanks,

    Jonathan

    #114969

    I am starting to translate to DANISH. I opened the de.DE files and used it…

    I have one question. Why is there 1334 strings in that file and in the enfold.pot there is only 1302?

    I hope its ok i used the de.DE and renamed it da.DA – because i already did about 35%

    ?

    #28358
    mmsdev
    Participant

    Hi.

    I have bought the theme enfold and its great.

    However i have no idea what is going on with the bbpress set up.

    1:How do you style it as its just a really basic shade of blue and white cant really see it.

    2: How do you add any of the widgets to to it that came with it?

    3: I see that it is not a page but its own special page, so how can i change the side bar for it?

    I cant see anything to do with it apart from the basic settings, is it not like setting up a page?

    Help!

    #136694

    Hi Dude,

    This has resolved the issue beautifully. Thanks so much for your support!

    #28354
    arthurvancadsand
    Participant

    Hi,

    How do I add ‘login’ in the main menu which redirects to a login page (contains sidebar login plugin). Once logged in, the login menu items should toggle to logout, which obviously logs out :-)

    tnx!

    Arthur

    #136885

    Hello Ismael,

    Thanks for the response, that fixed the issue. These are the other woocommerce plugins that could be the culprits.

    WooCommerce Catalog Visibility Options 2.3.0

    WooCommerce Variation Swatches and Photos 1.3.0

    Secondly when I try and enlarge the single product image from default (450×999) to (600×999) the resulting product page does not update the image size. Is there a limiting size within template CSS that prevents the image size from being updated within the woocommerce image options?

    Thanks,

    dnikitiuk

    #135403

    Thanks Ismael and Devin for your help.

    It’s strange this is happening only in Firefox 23.0.1 (Mac) but since it’s not happening on other browsers, I’m satisfied it’s an issue with Firefox on my system and not a bigger problem. We can considered it resolved.

    Thanks again for the great theme and support.

    I’ll let you know if I need any more help.

    Take care,

    Dave

    #135665

    Internet explorer version 10.0.9200.166OIS

    Firefox version 23.0.1

    Whatever is out of the box for both of them – no special extensions.

    #135664

    What versions of IE then? Are there any browser extensions common between them or a specific IE versions number (not just 8 or 9).

    #28346

    Topic: Menu problem

    in forum Enfold
    chemonaut
    Participant

    Dear support

    why does the pages are shown as menue in enfold? (see upper menue, left and in footer all pages are shown)

    http://176.32.230.29/beta.ch/

    I delete all the regular menues but the pages are still shown.

    Any ideas?

    jbiasucci
    Participant

    I’m using Enfold with the Splash Blue styling, but want to change the title_container background color to splash blue and the font color for page titles to white.

    I’ve tried the suggested techniques on various threads, including https://kriesi.at/support/topic/change-color-of-font-in-title-container and https://kriesi.at/support/topic/change-colour-of-page-titles#post-65051.

    Following the advice from the threads I’ve been successful in changing the title_container background color to blue for the pages on which I want it displayed. But I’ve been only partially successful in changing the font color to white. That is, for several of the pages the font is white, but for my main blog page the font color has not changed and remains black or very dark gray.

    Here is the code I’m using, which I’ve inserted in my Enfold child theme.

    /*changes to the title container */

    .title_container {

    background-color:#2d5c88;

    }

    .title_container h1 a {

    color: #ffffff !important;

    }

    I get the same result if I insert the code in the custom.css.

    Here is a link to my under construction site, which I’ve temporarily activated so you can see it:

    http://uufreethinker.com/blog/

    If you navigate to the About page the title container is blue and the page title is white. But if you navigate to the main Blog page the page title is still black.

    Very puzzling. Thanks for any help you can give me.

    John

    #28342
    pmb1007
    Participant

    Hello there,

    Enfold is awesome, however:

    How do I remove the fade in (delay) for the first image of layerslider and easy slider? I want to remove the fade in animation and have the image show as quickly as possible.

    Even the background loads in after the page has been visibile: http://kriesi.at/themedemo/?theme=enfold

Viewing 30 results - 239,911 through 239,940 (of 243,989 total)