Forum Replies Created

Viewing 30 posts - 63,961 through 63,990 (of 66,623 total)
  • Author
    Posts
  • in reply to: Change meta on grid & blog posts #136284

    Hey,

    1.) Please use this instead:

    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_site_url()."/author/".get_the_author_link();
    $author_name = get_the_author_meta( 'display_name' , $author_id );

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

    2.) Edit this line of code on loop-index.php:

    comments_popup_link( "0 ".__('Comments','avia_framework'),

    Replace it with:

    comments_popup_link( "".__('Comments','avia_framework'),

    Regards,

    Ismael

    in reply to: center logo on mobile #137699

    Hey,

    Can you give us a screenshot of what you’re try to do?

    Cheers,

    Ismael

    in reply to: Adding buttons to nav bar after search bar #137592

    Hi,

    You can use this plugin: http://wordpress.org/plugins/baw-login-logout-menu/

    Regards,

    Ismael

    in reply to: Javascript Query #137668

    Hey,

    Like Dude said, please try deactivate all plugins or better yet remove all of them on wp-content/plugins folder.

    Regards,

    Ismael

    in reply to: Portfolio #137801

    Hey,

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

    .grid-entry.flex_column.isotope-item.all_sort.no_margin.post-entry.av_one_third {
    min-height: 243px !important;
    height: 243px !important;
    }

    Regards,

    Ismael

    in reply to: Enfold: Font & Bullet Issues in Icon List Text #136863

    Hey,

    Have your tried using another font on Enfold > Styling > Defines the Font for your body text?

    Regards,

    Ismael

    in reply to: Blog css 3 Feature Image Box Shadow #137789

    Hey,

    Are you talking about the Blog Posts featured image? You can’t achieve the shadow effect that you want via CSS. You need an actual image to be set as background. Please hire a freelance developer to modify the theme for you. I think it will take them less than 15 minutes to apply the background.

    Regards,

    Ismael

    in reply to: Forms too small #137546

    Hey,

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

    #top input[type="text"] {
    min-height: 40px;
    }

    Cheers,

    Ismael

    Hey,

    Can you give us a screenshot on the elements that you want to change? I visited the link and I don’t see any comments. Please leave a sample comment.

    Regards,

    Ismael

    in reply to: Search results and Advanced Editor #137777

    Hey,

    If you want the excerpt to show on the search results page. Edit the page, click Screen Options then enable the Excerpt metabox. You can specify the excerpt manually. It will show on the search results page.

    Regards,

    Ismael

    in reply to: Fixed header at tablet portrait #137774

    Hey,

    No, it is not a bug. You can add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #top #header {
    position: fixed;
    }
    }

    Cheers,

    Ismael

    in reply to: frontpage sidebar setting ignored after 1.9 update #133433

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: Last row of Blog Grid layout #137768

    Hey,

    Please configure the Blog Posts element. How many posts did you set on “Post Number”?

    Regards,

    Ismael

    in reply to: Icon List Malfunction #136793

    Hey,

    Please download the latest version of the theme, Enfold 2.0.1. Upgrade to WP 3.6.

    Regards,

    Ismael

    in reply to: Revolution Slider – Fullscreen possible in Enfold? #137758

    Hey,

    We don’t have access to the slider plugin. Please hire a freelance developer to modify and make the slider compatible with the theme. I’ll tag Kriesi.

    Regards,

    Ismael

    in reply to: Remove You may use these HTML #137757

    Hey,

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

    .form-allowed-tags {
    display: none;
    }

    Regards,

    Ismael

    Hi,

    I think you can follow Nick’s instruction here. It is the most detailed step by step instruction so far: https://kriesi.at/support/topic/youtube-icon

    List of fontello icons can be found here: http://www.entypo.com/characters/

    There is still no easy way of adding your own icons. You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    Hey,

    Please edit js > avia.js, find this code:

    if(st < el_height/2)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height/2;
    header.addClass('header-scrolled');
    }

    Replace it with:

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    header.removeClass('header-scrolled');
    }
    else
    {
    newH = el_height/1.5;
    header.addClass('header-scrolled');
    }

    This will decrease the header into a much bigger size than before eliminating the grainy logo appearance. Please remove browser cache then reload the page.

    Cheers,

    Ismael

    in reply to: Can't add "Advanced Layer Slider" to shopping cart page #137957

    Hey,

    I have no problem adding the Layer Slider on the Cart page. What I did is edit the Cart page, I added a 1/1 column then insert a Text Block element with the woocommerce cart shortcode “[woocommerce_cart]”. I added the Advance Layer Slider element at the top of the 1/1 column.

    Please update to Enfold 2.0.1 and upgrade to WordPress to 3.6.

    Regards,

    Ismael

    in reply to: Avia Layout Builder Not Loading #137880

    Hey,

    Make sure that your subdomain is allowed to exceed the php memory limit of 64M. Contact your host. You need at least 128M. Install WordPress from scratch if the issue persist.

    Regards,

    Ismael

    in reply to: Staggered View cart and Checkout buttons #137947

    Hey,

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

    .woocommerce-page .button {
    min-width: 105px;
    padding: 15px;
    font-size: 12px;
    width: auto;
    font-weight: bold;
    color: black !important;
    }

    Regards,

    Ismael

    Hey,

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

    .widget_nav_menu ul:first-child>.current_page_item>a {
    pointer-events: none;
    }

    Regards,

    Ismael

    in reply to: Posts and page template #137936

    Hey,

    You can save the templates on the Advanced Layout Editor. Look for the “Templates” button at the right side of the Avia Builder.

    We can’t assure you that it will work on post because post doesn’t support the Advance Layout Editor by default.

    Regards,

    Ismael

    in reply to: Sidebar and Header #137800

    Hey,

    @bernie: Thanks for the tips.

    1.) You can create sidebars on Appearance > Widgets.

    2.) Go to Appearance > Widgets, place some widgets on the widget areas specially the “Displayed Everywhere” widget area.

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

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Disable logo resize when scrolling #137897

    Hey,

    Edit js > avia.js, find this code:

    // decreases header size when user scrolls down
    avia_header_size();

    Replace it with:

    // decreases header size when user scrolls down
    //avia_header_size();

    Remove browser cache then reload the page a few times.

    Cheers,

    Ismael

    in reply to: Date Picker format #137896

    Hey,

    Add this in the functions.php file:

    add_filter('avf_datepicker_dateformat', 'avia_change_dateformat_cf');
    add_filter('avf_datepicker_date_placeholder', 'avia_change_placeholder_cf');
    
    function avia_change_dateformat_cf() { return  'dd / mm / yy'; }
    function  avia_change_placeholder_cf() { return  'DD / MM / YY'; }

    Replace the format.

    Cheers,
    Ismael

    in reply to: Megamenu with images #137895

    Hey,

    Please watch this video: https://vimeo.com/channels/aviathemes/67651241

    Regards,

    Ismael

    in reply to: Header Logo squished in Internet Explorer 8 #121179

    Hey,

    Thank you for this. I’ll make a request to Kriesi to add this on the next update. :)

    Cheers,

    Ismael

    in reply to: Change Header Features #137858

    Hey,

    You can select this options on Enfold > Styling. You can also use this on your custom.css or Quick CSS:

    1.) Make the header background black:

    .header_color .header_bg {
    background: black;
    color: white;
    }

    2.) Make menu font white:

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Hover State:

    .header_color .main_menu ul:first-child > li a:hover {
    color: black;
    }

    3.) You can use this on your custom.css or Quick CSS:

    /*default header: main logo and main menu height. increase max value if you want to use a bigger logo*/
    #header_main .container, .main_menu ul:first-child > li a{ height:88px; line-height: 88px; }

    Change the height and the line-height.

    Regards,

    Ismael

    in reply to: sidebar text alignment #137847

    Hey,

    Do you have the left sidebar? You can use this on your custom.css or Quick CSS:

    .sidebar_left.sidebar {
    text-align: left;
    }

    Regards,

    Ismael

Viewing 30 posts - 63,961 through 63,990 (of 66,623 total)