Forum Replies Created

Viewing 30 posts - 7,651 through 7,680 (of 9,352 total)
  • Author
    Posts
  • in reply to: Blog header h1 and default settings for articles #137586

    Open up wp-contentthemesenfoldincludeshelper-post-format.php and search for

    $heading = is_singular() ? "h1" : "h2";

    Replace h1 and h2 with any headline type of your choice. h1 is used on single post pages, h2 on the blog & archive page. If you’re using a child theme you can duplicate the avia_default_title_filter() function and overwrite the parent theme function if you like.

    in reply to: Href Drops Trailing Quotation Mark in Textbox #137535

    Hi!

    No, afaik it does not cause any problems/issues.

    Regards,

    Peter

    in reply to: Ajax Gallery #136429

    Hey!

    Werde den Thread noch offen lassen, falls weitere Fragen dbzgl auftauchen.

    Best regards,

    Peter

    in reply to: Advanced layerslider thumbnail navigation #131595

    Hi!

    I didn’t try the code but it should work. Insert it into the quick css field

    @media only screen and (max-width: 767px){
    .ls-thumbnail-wrapper {
    display: none !important;
    }
    }

    Regards,

    Peter

    in reply to: Error in the option: Transition LayerSlider Builder #135728

    Hey!

    Please update your theme to version 2.0 or use the quick fix I posted here: https://kriesi.at/support/topic/i-can-not-create-any-3d-transitions-enfold-responsive-multi-purpose-theme#post-126442

    Best regards,

    Peter

    in reply to: Missing division 'trash' in Dashboard #137568

    Hi,

    as far as I know the trash link is hidden if the trash is empty. You need to delete an entry and the trash link will show up. This is not a bug but the standard wordpress behavior. If you still think something is fishy I’d recommend to activate the default theme (Twenty Twelve) and to compare the links again – probably the trash link will be missing too.

    Hey!

    Go to http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 and log in. You should be able to download v2.0.1 from themeforest.

    Regards,

    Peter

    in reply to: Broken Google Map Widget #137523

    Try following – open up enfoldframeworkphpclass-framework-widgets.php and replace

    if(empty($avia_config['g_maps_widget_active']))
    {
    $output .= "<script type='text/javascript' src='$prefix://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false'></script>";
    $avia_config['g_maps_widget_active'] = 0;
    }

    with

    if(empty($avia_config['g_maps_widget_active']))
    {
    $avia_config['g_maps_widget_active'] = 0;
    }

    if(apply_filters('avia_google_maps_widget_load_api', true, $avia_config['g_maps_widget_active']))
    {
    wp_register_script( 'avia-google-maps-api', $prefix.'://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false', array('jquery'), '1', false);
    wp_enqueue_script( 'avia-google-maps-api' );
    }

    in reply to: Instant search not matching search results #134320

    You can use Relevanssi for the ajax search query. Open up enfoldfunctions-enfold.php and replace

    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);

    $query = array_merge($defaults, $_REQUEST);
    $query = apply_filters('avf_ajax_search_query', http_build_query($query) );
    $posts = get_posts( $query );

    with

    $defaults = array('numberposts' => 5, 'post_type' => 'any', 'post_status' => 'publish', 'post_password' => '', 'suppress_filters' => false);
    $_REQUEST['s'] = apply_filters( 'get_search_query', $_REQUEST['s']);

    $searchquery = array_merge($defaults, $_REQUEST);

    if(!function_exists('relevanssi_do_query'))
    {
    $searchquery = apply_filters('avf_ajax_search_query', http_build_query($searchquery));
    $posts = get_posts($searchquery);
    }
    else
    {
    global $query;
    $tempquery = $query;
    $searchquery = apply_filters('avf_ajax_search_query', $searchquery);

    $tempquery->query_vars = $searchquery;
    relevanssi_do_query($tempquery);
    $posts = $tempquery->posts;
    }

    in reply to: Single page navigation underline effect issue #135511

    Hi!

    No, this is not possible at the moment. We’ll look into it though and maybe we can use the waypoints script to implement this feature.

    Best regards,

    Peter

    in reply to: Some strings are not localized with .po/.mo #137503

    Hi,

    I uploaded an updated pot file here: http://www.mediafire.com/?3d6hhhxy3dihf1z – it’s compatible with Enfold 2.0. Please use it to update your po file (eg use PoEdit: http://www.poedit.net/ to update the existing po file).

    in reply to: Please contribute and translate Enfold #114972

    Great thanks. I didn’t know the mb_strimwidth function yet. We’ll fix it in the next version. If you need a quick fix open up wp-contentthemesenfoldframeworkphpfunction-set-avia-backend.php and replace

    function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
    {
    if($stripClean)
    {
    $string = strip_shortcodes(strip_tags($string, $excludetags));
    }

    if(strlen($string) <= $limit) return $string;

    if(false !== ($breakpoint = strpos($string, $break, $limit)))
    {
    if($breakpoint < strlen($string) - 1)
    {
    $string = substr($string, 0, $breakpoint) . $pad;
    }
    }

    // if there is no breakpoint an no tags we could accidentaly split split inside a word
    if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
    {
    $string = substr($string, 0, $limit) . $pad;
    }

    return $string;
    }

    with

    function avia_backend_truncate($string, $limit, $break=".", $pad="...", $stripClean = false, $excludetags = '<strong><em><span>')
    {
    if($stripClean)
    {
    $string = strip_shortcodes(strip_tags($string, $excludetags));
    }

    if(strlen($string) <= $limit) return $string;

    if(false !== ($breakpoint = strpos($string, $break, $limit)))
    {
    if($breakpoint < strlen($string) - 1)
    {
    $string = mb_strimwidth($string, 0, $breakpoint) . $pad;
    }
    }

    // if there is no breakpoint an no tags we could accidentaly split split inside a word
    if(!$breakpoint && strlen(strip_tags($string)) == strlen($string))
    {
    $string = mb_strimwidth($string, 0, $limit) . $pad;
    }

    return $string;
    }

    Hi!

    Please insert following css code into the quick css field to fix the issue:

    #socket .copyright {
    float: none;
    }

    Best regards,

    Peter

    in reply to: opacity #137396

    Hi!

    You can try following css code – insert it into the quick css field

    .header_bg {
    opacity: 0.95;
    }

    The value must be between 0 and 1.

    Regards,

    Peter

    in reply to: Editor not Working #137116

    Please deactivate all plugins and try to flush the permalinks (go to Settings > Permalinks and hit the “Save” button). If the permalinks work afterwards its a plugin conflict and you need to activate them one by one to find the culprit. If this doesn’t help try to install: http://wordpress.org/plugins/rewrite-rules-inspector/ – it will help you to find missing rewrite rules and to flush the cache if necessary.

    in reply to: Change Language #136145

    If you want to change the “You are here” text open up wp-contentthemesenfoldfunctions-enfold.php and replace

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

    with

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true, 'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>'));

    and instead of “You are here” insert your custom text.

    in reply to: ajax portfolio preview #137462

    Hi!

    Yes – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesportfolio.php and delete

    $output .= "<div class='av_table_col first portfolio-preview-image'>";
    $output .= $images;
    $output .= "</div>";

    Best regards,

    Peter

    in reply to: Href Drops Trailing Quotation Mark in Textbox #137532

    Please try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock {$custom_class}'>".stripslashes(ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)))."</div>";

    in reply to: Mobile/responsive main menu? #137220

    Unfortunately this is not possible at the moment but you can hide certain menu items by inserting “noMobile” into the css class field of these items (if you can’t find this option field on the menu option page search for the “Screen Options” tab in the right top corner and click on it. Then tick the checkbox next to “CSS Classes” to activate this field).

    If you really need to separate menus you can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests and we’ll look into it if more users request it.

    in reply to: IE9 Column Alignment #135821

    Hey!

    I can’t reproduce the issue with IE10 (Win8). See: http://img853.imageshack.us/img853/5513/grym.png

    Please try to deactivate all browser extensions/plugins and make sure that the compatibility view is not active.

    Best regards,

    Peter

    in reply to: Javascript in the RSS Feed #136691

    Tbh I’m not familar with Wp Minify and it seems to be outdated and broken ( see http://wordpress.org/plugins/wp-minify/ ). You can try w3tc: http://wordpress.org/plugins/w3-total-cache/ or http://wordpress.org/plugins/bwp-minify/ instead.

    in reply to: renaming layer slider #137332

    Hi,

    I can’t reproduce this behavior and it would be very surprising if the theme renames the slider because

    1) The slider title data is just stored in the wp_layerslider table and the theme only stores the slider id. So it’s impossible for the theme to restore the old title simple because it doesn’t save it and there’s no copy of the title string anywhere else in the database.

    2) The theme doesn’t come with any code which would rename the slider.

    However make sure that you rename all occurrences of the slider title: http://www.clipular.com/c?14450004=4J5S_2zO7OeRJjsJ_XRQzvKw75U&f=.png – there’re actually 2 occurrences for each slider.

    Hi,

    Forget 1 and 3.

    Option 2) – Enfold > Theme Options – will set a page as the blog page. A special php template will be used for this page. The advantage is that you don’t need to take care of anything else and this page will just list a blog posts. The disadvantage is that you can’t customize the template (select or deselect certain categories which you want to hide from the blog page, deactivate pagination, etc.).

    If you want to have more control over your blog page use the layout builder “Blog Element” and insert it into a page. The advantage is you can combine it with other elements (maybe a slideshow, textbox element, etc.) and you can configure various options (categories, offset, pagination, etc.).

    in reply to: LayerSlider Not Displaying #137441

    Hi!

    Please try to deactivate all third party plugin (especially NextGen Gallery if you’re using 2.0+) and check if this solve the issue. If yes it’s probably a plugin conflict/bug. Nextgen Gallery 2.0+ is very buggy at the moment (see http://wordpress.org/plugins/nextgen-gallery/ ) and I’d recommend to stay with 1.9.x.

    Something (probably a plugin) enqueues the jquery script at the very bottom of the page which breaks the layerSlider plugin. Make sure that jquery.js is loaded in the head section of the html document.

    Best regards,

    Peter

    in reply to: Bigger logo #137288

    Actually your solution is better because if you use css to stretch the logo it will be displayed blurry (and in the worst case even distorted). Especially users with Retina display will just see a blurry image. It’s better to upload a high resolution image if you want a bigger logo.

    in reply to: Anzahl Beiträge ändern #137384

    Hallo,

    es ist möglich die Beitragsanzahl pro Seite festzulegen. Für die Standard-Blgseite kann man dies unter “Einstellungen > Lesen” – “Blogseiten zeigen maximal” setzen und bei den Blog Elementen (Layout Builder) kann man diese Anzahl direkt im Einstellungsfenster dieses Elements festlegen. Es ist jedoch nicht möglich dire Anzahl der Seiten zu limitieren – daher wenn man 25 Beiträge hat werden dann eben 5 Seiten und nicht 4 angezeigt.

    in reply to: Please contribute and translate Enfold #114970

    Yes – you can just rename de_DE.po to da_DK.po and the generated mo file should work. Maybe you need to replace the meta data at the very top of the po file too (you can use a simple text editor).

    @yutakaemura – which symbols should be visible instead of ��?

    in reply to: menu overlapping logo when resizing browser window #132506

    Actually your menu displays just fine for me in Chrome – even when I re-size the menu. I only noticed a small glitch between 1174px and 1160px – you can fix it easily by reducing the menu item padding. Use following css code

    .main_menu ul:first-child > li > a {
    padding: 0 11px;
    }

    in reply to: Button in header and footer problem #137211

    1) To center the button in the header change the margin-top value from 39px to 25px. You can also use another value if you feel that 25px doesn’t look right.

    2) To center the button in the footer try following css code – insert it into the quick css field

    #footer .av_promobox .avia-button.avia-size-large {
    margin-top: -100px;
    }

    in reply to: Header and Footer! #136204

    Hi!

    I marked this thread for Devin – just in case he’s interested in your offer.

    Best regards,

    Peter

Viewing 30 posts - 7,651 through 7,680 (of 9,352 total)