Forum Replies Created

Viewing 30 posts - 64,711 through 64,740 (of 67,134 total)
  • Author
    Posts
  • Hey,

    You can add the code do_shortcode if the plugin has the code for it or you can edit framework > php > class-framework-widget.php. Find this code:

    $output .= "<a href='$link'>".apply_filters('avf_social_widget',"", 'rss')."<strong class='asc_count'>".$follower['rss']."<span>".$feed_text."</span></a>"; }

    Below you can a facebook social icon that will link to your facebook page.

    $output .= "<a href='http://www.facebook.com/kriesi'>".apply_filters('avf_social_widget',"", 'facebook')."<span>Like us</span></a>";

    Regards,

    Ismael

    in reply to: Mega Menu Categories are disappearing #136743

    Hey,

    Please asked your host to set these settings on PHP.

    suhosin.post.max_vars = 5000
    suhosin.request.max_vars = 5000

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

    php_value suhosin.post.max_vars 2048
    php_value suhosin.request.max_vars 2048

    Regards,

    Ismael

    in reply to: Deactivate table functions and borders around images #136300

    Hey,

    The css for the table element is located on css > base.css > #Table. You can edit those or remove them completely if you want your own modifications for the table element. You can also override them using the custom.css or Quick CSS. I notice that you have an inline css code for the table element, it will automatically override the table properties located on base.css.

    Regards,

    Ismael

    in reply to: WooCommerce and Sidebars #136740

    Hi,

    There is no option to select a right sidebar for single product page. You can hide the sidebar entirely using this:

    .single-product .sidebar.sidebar_sidebar_right.three.alpha.units {
    display: none !important;
    }

    Regards,

    Ismael

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

    Hi,

    Sometimes you need to reset the sidebars or widget areas. Please use this plugin: http://wordpress.org/plugins/widgets-reset/

    Note: This will remove all of your widgets taking it back to factory settings.

    Regards,

    Ismael

    in reply to: Remove the bloc Title + breadcrumb #136725

    Hey,

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

    .stretch_full.container_wrap.title_container {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Woocommerce one of the product image blurry #136757

    Hi,

    I don’t see any featured images on your shop page. Please add them.

    Regards,

    Ismael

    in reply to: URGENT – coloumn spacing #136531

    Hey,

    Edit it a bit

    .page-id-2397 .flex_column.av_one_third.first.avia-builder-el-6.el_after_av_hr {
    width: 32.333%;
    }

    Regards,

    Ismael

    in reply to: Fullscreen Slider Tweaks #136466

    Hey,

    Please send the login details to ///.

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: Help with custom header colors #136622

    Hey,

    You can do this:

    .current-menu-ancestor {
    background: red;
    }

    #top .main_menu .menu li:hover {
    background: orange;
    }

    Regards,

    Ismael

    in reply to: Enfold is the only theme that doesn't work ! #134617

    Hi,

    Is it ok if you create a fresh installation of WordPress 3.6 without any themes? I would like to upload the theme myself if it’s ok with you.

    Regards,

    Ismael

    in reply to: Mobile menu tablet breakpoint #136706

    Hey,

    Please add this on your custom.css or Quick CSS to avoid the menu overlapping the logo:

    @media only screen and (max-width: 767px) {
    .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 12px;
    }
    }

    Edit js > avia.js, find this code:

    switchWidth 	  = 768;

    if(first_level_items > 7 && !bottom_menu)
    {
    switchWidth = 989;
    header.addClass('mobile_menu_tablet');
    }

    Replace the first switchWidth value to 990.

    Regards,

    Ismael

    in reply to: post info is twisted… #136704

    Hey,

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

    #top .fullsize .template-blog a {
    float: none;
    display: inline-block;
    width: auto;
    }

    Regards,

    Ismael

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Icons in Enfold #136263

    Hi,

    No, the Enfold is using the Entypo Fontello font for the icons. http://www.entypo.com/

    Regards,

    Ismael

    in reply to: Change Language #136139

    Hey,

    Can you post a link to the page with the “Read More” text ?

    Regards,

    Ismael

    in reply to: Please contribute and translate Enfold #114967

    Hey,

    @Björn Sennbrink: Thank you for this. Please let us know if you’re finish. :)

    Regards,

    Ismael

    in reply to: Blog Entry Content Not Displaying Correctly #136624

    Hey,

    Did you change anything on the css files?

    Please add this on your custom.css or Quick CSS

    .content .entry-content .entry-content {
    padding-left: 100px;
    }

    Regards,

    Ismael

    in reply to: Help with custom header colors #136620

    Hey,

    What type of header do you have? The css selectors are different for header with bottom navigation.

    Regards,

    Ismael

    in reply to: Links Not working #136619

    Hey,

    They are the “blue” text, right? They are working fine on my end.

    Regards,

    Ismael

    in reply to: Header/Nav/footer #135875

    Hey,

    Thanks for the screenshot. Please remove all of the code I gave you then use this instead:

    #top .main_menu .menu li {
    display: none;
    }

    #menu-item-search {
    display: block !important;
    }

    #header_main .social_bookmarks {
    left: 0;
    top: 120%;
    }

    Regards,

    Ismael

    in reply to: Multicolumn NavMenu #136618

    Hi,

    Can you post a screenshot of what you’re trying to do? There is the mega menu but since you specify “main”, I don’t think you’re going for it.

    Regards,

    Ismael

    in reply to: Positioning shortcodes in Header.php #136474

    Hi,

    Edit header.php, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    Below, add this code:

    echo '<div class="mc4wp-form">'.do_shortcode('[mc4wp-form]').'</div>';

    Edit Quick CSS or your custom.css, add this code:

    .mc4wp-form {
    position: absolute;
    left: 300px;
    top: 60px;
    }

    Adjust the left and top position.

    Regards,

    Ismael

    in reply to: Center Menu & Logo on iPad Portrait #134173

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Ajax Gallery #136422

    Hey,

    Let’s wait for Dude or Kriesi to answer this question. I want to use Google Translate but I’m not sure if the translation is correct.

    Please hold on for their answer.

    Please watch this video to learn more about the theme: https://vimeo.com/channels/aviathemes/64927359

    Regards,

    Ismael

    in reply to: Updating Archive title(s) #136295

    Hey,

    You can copy the avia_which_archive function on the child theme’s function.php:

    if(!function_exists('avia_which_archive'))
    {
    /**
    * checks which archive we are viewing and returns the archive string
    */

    function avia_which_archive()
    {
    $output = "";

    if ( is_category() )
    {
    $output = __('ERERERERERER 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');
    }
    elseif (is_search())
    {
    global $wp_query;
    if(!empty($wp_query->found_posts))
    {
    if($wp_query->found_posts > 1)
    {
    $output = $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    else
    {
    $output = $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    }
    else
    {
    if(!empty($_GET['s']))
    {
    $output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
    }
    else
    {
    $output = __('To search the site please enter a valid term','avia_framework');
    }
    }

    }
    elseif (is_author())
    {
    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
    $output = __('Author Archive','avia_framework')." ";

    if(isset($curauth->nickname)) $output .= __('for:','avia_framework')." ".$curauth->nickname;

    }
    elseif (is_tag())
    {
    $output = __('Tag Archive for:','avia_framework')." ".single_tag_title('',false);
    }
    elseif(is_tax())
    {
    $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    $output = __('Archive for:','avia_framework')." ".$term->name;
    }
    else
    {
    $output = __('Archives','avia_framework')." ";
    }

    if (isset($_GET['paged']) && !empty($_GET['paged']))
    {
    $output .= " (".__('Page','avia_framework')." ".$_GET['paged'].")";
    }

    return $output;
    }
    }

    Regards,

    Ismael

    in reply to: Deactivate table functions and borders around images #136298

    Hey,

    1.) What do you mean remove the functions? Or do you mean remove the style of the Enfold table? Please give us a link to your website.

    2.) No, there is no option to add border or frames to the images. You need to manually edit them using CSS.

    Regards,

    Ismael

    in reply to: Turn off Author & Category under posts #136111

    Hey,

    This is what you said “Also, how can I NOT display the header and breadcrumbs on an installed plug in post?”.

    If you only want to remove the breadcrumb, just add this on your custom.css or Quick CSS:

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

    Regards,

    Ismael

    in reply to: Google "Montserrat" – how can I add it? #136104

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: sidebar #136312

    Hey,

    You can go to Enfold > Styling > scroll a bit below for the Quick CSS field. You can also use the custom.css located on the css folder via FTP or your cpanel.

    Please refer to this link: https://kriesi.at/support/topic/increasing-width-of-sidebar-images-to-300-px

    Regards,

    Ismael

Viewing 30 posts - 64,711 through 64,740 (of 67,134 total)