Forum Replies Created

Viewing 30 posts - 3,271 through 3,300 (of 9,352 total)
  • Author
    Posts
  • Hey!

    I think this post: http://stackoverflow.com/a/12932722 will give you a starting point. Probably you also need to load the froogaloop2.min.js file which contains the api code.

    Best regards,
    Peter

    Hey!

    After some research I think I found a solution. Try to insert this code into the quick css field:

    
    #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before {
    font-family: 'entypo-fontello' !important;
    }
    

    Cheers!
    Peter

    in reply to: Change text 'Share this entry' in Sharebox? #274425

    Hey!

    Please click the “Rescan” button to update the language files – maybe they’re outdated. Then type in “Share” into the search box an tick the “non case-sensitive” checkbox.

    Cheers!
    Peter

    in reply to: removing all ENFOLD and KRIESI #274423

    Hi spheor!

    If you want to rename the theme you just need to change the theme name in enfold/style.css. Please note that you will loose the existing theme settings though because we use the theme name to save the options.

    …that will remain with any future updates also

    Unfortunately that’s not possible. You must modify the parent theme style.css otherwise WP will display “Enfold” as theme name. Creating a child theme doesn’t solve the problem because WP will display it as a separate, second theme.

    Best regards,
    Peter

    Hi VictoriousC!

    I’m not sure if I understand the question but yes, you can add a datepicker to your contact forms (i.e. like here: http://kriesi.at/themes/enfold/shortcodes/contact-forms/ ). The client can select a date and the email will then tell you which date the client selected. If you can’t find the datepicker on the contact form option screen ( http://www.clipular.com/c/4570642112315392.png?k=QEke8_nt78GcPawRgQjLLXn4pHE ) please update the theme to v2.8.1.

    Cheers!
    Peter

    in reply to: Archive pages #274401

    Hey!

    Try to revert the code changes we suggested in our last posts and add this code to the functions.php file:

    
    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); 
    function avia_change_archive_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }
    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    If the code still doesn’t change the archive page layout please create me an admin account and post the login credentials as private reply.

    Regards,
    Peter

    in reply to: Translated Secondary Menu Not Displaying #274400

    Hi!

    Glad it works now ;)

    Cheers!
    Peter

    in reply to: Enfold mobile display logo and secondary menu issues #274399

    Hey!

    Please try to insert this code into the quick css field:

    
    @media only screen (min-width: 768px) and (max-width: 1024px){
    div.phone-info.with_nav {
    width: 100%;
    text-align: right;
    margin: -28px 0 30px 0;
    }
    
    .av_secondary_right .sub_menu {
    float: right;
    width: auto;
    margin-top: 25px;
    text-align: center;
    }
    
    .bg_container{ display: none; }
    }
    

    Regards,
    Peter

    in reply to: BreadCrumbs show tertiary pages? #274392

    Hey!

    I’ll close this thread now because of inactivity. If you still need help please create a new thread and add a link to this thread for reference.

    Regards,
    Peter

    in reply to: Main menu not displaying correctly #274391

    Hi!

    Please update the theme to version 2.8.1. The theme stylesheet and debugging information still shows 2.7.1 as the theme version number. Afterwards go to Enfold > Theme Options and try to re-save the theme settings. If this doesn’t fix the issue please create us an admin account and post the login credentials as private reply.

    Cheers!
    Peter

    in reply to: Einige Fragen zur Konfiguration, Style usw #274389

    Hey!

    Verwendet bitte ein Bild, welches mindestens 1130px breit ist. Ihr könnt auch das derzeitige Bild mit:

    
    #top #vollebreite{
    background-size: cover;
    }
    

    an die Container-Breite anpassen – uU ist es jedoch anschließend etwas unscharf.

    Cheers!
    Peter

    in reply to: Plugin Search WP don´t work fine #274384

    Hey!

    Probably you just need to increase the number of posts per page. Go to Settings > Reading and increase the “Blog pages show at most” value.

    Best regards,
    Peter

    in reply to: Plugin Search WP don´t work fine #274102

    Hey!

    Yes, another popular plugin is Relevanssi: http://wordpress.org/plugins/relevanssi/ – I’m using the premium version for my websites at the moment. The integration guide can be found here: http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Cheers!
    Peter

    in reply to: Plugin Search WP don´t work fine #274089

    Hi!

    I think it’s a general issue with the search plugin. I can’t even get it to work on the standard search page (with no ajax) – i.e. if I search for the word “einfache”: http://www.wp12032345.server-he.de/webop/?s=einfache&lang=de which is part of the first headline “einfache Freischaltung” I do not get any results. If I deactivate the plugin wordpress returns 30 search results. It seems like there’s something wrong with the setup – maybe a conflict with another plugin like WPML.

    Cheers!
    Peter

    in reply to: Plugin Search WP don´t work fine #274058

    Hi webop_germany!

    Please create me an admin account and post the login credentials as private reply – I’ll check the code.

    Best regards,
    Peter

    Hi!

    Can you activate the admin account please – maybe the permalink issue is connected to the page/post type slugs but I need to check the configuration first.

    Regards,
    Peter

    in reply to: Sales products in AVIA #273825

    Hi!

    You can try to insert this code into the functions.php file

    
    add_action('wp_head','avia_change_column_count');
    function avia_change_column_count(){
    global $avia_config, $woocommerce_loop;
    if(is_shop() || is_product_category()){
    $woocommerce_loop['columns'] = $avia_config['shop_overview_column'];
    }else{
    $avia_config['shop_overview_column'] = $woocommerce_loop['columns'];
    }
    remove_filter( 'loop_shop_columns', 'avia_woocommerce_loop_columns');
    add_filter( 'loop_shop_columns', 'avia_woocommerce_loop_columns_custom');
    }
    
    function avia_woocommerce_loop_columns_custom($count)
    {
    	global $avia_config;
    	if(is_shop() || is_product_category()) return $avia_config['shop_overview_column'];
    	return $count;
    }
    
    

    It will modify the standard function a bit and return the theme columns value (WooCommerce > Einstellungen > Produkte > “Column Count”) only on the shop and archive pages. The shortcodes should use the columns value you specified.

    Best regards,
    Peter

    in reply to: Translation #273793

    Hi Happytie!

    You need to install the Chinese wordpress version: http://cn.wordpress.org/ and make sure that the wp-config.php contains this code:

    
    define ('WPLANG', 'zh_CN');
    

    The theme will then load/use the zh_CN.mo file located in the wp-content/themes/enfold/lang/ folder to translate the theme to Chinese. If you want to update/modify the translation files install this plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Please note that we did not create the Chinese translation (all language files except the German translation were submitted by users) and we don’t know if there’re any spelling errors or if the quality of the translation is acceptable.

    Cheers!
    Peter

    in reply to: Label pages with the same format #273791

    Hey!

    It depends on the post types of the first post. If the first post (post on the top of the archive page) is a portfolio item the portfolio grid will be displayed at the top and the blog posts at the bottom. If the first post is a standard post Enfold will display the the blog posts first and below the portfolio grid. If you want to make sure that the blog posts are always at the top replace this line in tag.php:

    
    $sorted = array();
    

    with

    
    $sorted = array("post" => array());
    

    Regards,
    Peter

    in reply to: Chrome shows pieces of top navigation on scroll #273786

    Hi!

    I wonder if this issue is caused by a plugin because afaik no other user reported this issue. Maybe the cache plugin or wordfence breaks the layout for Chrome users? Try to deactivate all plugins please and check if this fixes the issue. If not please try to remove your custom css code (quick css field, child theme css, etc.) – maybe this code breaks your website somehow.

    Regards,
    Peter

    Hey Raymmar!

    No, unfortunately there’s no easy way to change the slider height on mobile devices. I tried to change it with css code but my code just distorts the images and breaks the slider. I’ll mark this thread for Kriesi in case he can provide some useful hints. You can also submit a feature request here: https://kriesi.at/support/enfold-feature-requests/ – if more users vote for the height option we might add it with one of the next updates.

    Best regards,
    Peter

    in reply to: Enfold can't save theme options in WordPress 3.9.1 #273782

    Hi!

    Tbh I’m not sure why Enfold can’t save the theme options but one reason could be that something is blocking the access to the wp-admin folder. If Enfold can’t access the this folder it also can’t send the options to the wp-admin/admin-ajax.php file and then the saving process will fail. Try to replace the new Enfold files with the older Enfold files (2-3 months ago) and check if you can save the option with this older theme version on your WP3.9.1 installation. If not it’s probably a permission problem of the wp-admin folder.

    Cheers!
    Peter

    in reply to: Javascript Void – Button NOT working #273780

    Hi!

    Glad you found the culprit ;)

    Cheers!
    Peter

    in reply to: Page Template #273779

    Hey!

    I can’t log in with the login credentials you posted but you can fix the menu easily – just switch to the child theme, then go to Appearance > menus > “Manage Locations” and select which menu should be used for the main menu, etc.. Afterwards hit the “Save Changes” button and go to Enfold > Theme Options > Import/Export and click the blue “Import Parent Theme Settings” button to import the theme settings of the parent theme.

    Best regards,
    Peter

    Hi!

    Ok, I’ll close this thread now. Please create a new one if you run into troubles.

    Regards,
    Peter

    in reply to: How to hide Related Post #273774

    Hey!

    Please post a link when your website is online and we’ll then investigate the css code. It makes no sense to “guess” why it’s not working.

    Cheers!
    Peter

    Hey!

    Download this zip file: http://www.mediafire.com/download/8wvcbh24bcfpl5a/gfur-activate-template.zip and unzip it. Then upload the resulting folder into your theme directory (wp-content/themes/enfold/ or into your child theme directory). Then open up the functions.php file and insert this code:

    
    /**
    * Gravity Forms Custom Activation Template
    * http://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page
    */
    add_action('wp', 'custom_maybe_activate_user', 9);
    function custom_maybe_activate_user() {
    
        $template_path = STYLESHEETPATH . '/gfur-activate-template/activate.php';
        $is_activate_page = isset( $_GET['page'] ) && $_GET['page'] == 'gf_activation';
    
        if( ! file_exists( $template_path ) || ! $is_activate_page  )
            return;
    
        require_once( $template_path );
    
        exit();
    }
    

    Cheers!
    Peter

    in reply to: Google Analytics script to be in HEAD #273764

    Hey fortuneRice!

    Insert this code into the child theme functions.php file:

    
    add_action('after_setup_theme','avia_move_google_analytics');
    function avia_move_google_analytics(){
    remove_action('wp_footer', 'avia_print_tracking_code');
    add_action('wp_head', 'avia_print_tracking_code');
    }
    

    Regards,
    Peter

    in reply to: can I make 'sign up for our newsletter' box?? #273759

    Hi!

    Please elaborate – i.e. post a link to the page with the newsletter box.

    Cheers!
    Peter

    Hi!

    Please try this code instead:

    
    if($context == "page" || $context == "single-portfolio" || $context == "post" )
    

    Best regards,
    Peter

Viewing 30 posts - 3,271 through 3,300 (of 9,352 total)