Forum Replies Created

Viewing 30 posts - 3,481 through 3,510 (of 9,352 total)
  • Author
    Posts
  • in reply to: Links create problems #267394

    Hey!

    Please update the theme to v2.7.1 (you’re using 2.5.3 at the moment). It contains a new version of LayerSlider which might fix the issue. I recommend to update to WP3.9.1 too. I recommend to use ftp: https://vimeo.com/channels/aviathemes/67209750 to update the theme.

    Regards,
    Peter

    in reply to: Custom Post Types in Enfold Combo Widget #267384

    Hey crschulz!

    Search for

    
    avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc');
    

    and replace this line with

    
    $query_args = array('showposts'=>$posts, 'orderby'=>'post_date', 'order'=>'desc', 'post_type'=>array('post', 'portfolio'));
    avia_get_post_list($query_args);
    

    and instead of ‘post’, ‘portfolio’ insert your post types.

    Regards,
    Peter

    in reply to: Problems with colors and Quick CSS #267379

    Hey!

    The quick css code is added to the dynamic stylesheet located in wp-content/uploads/dynamic_avia/enfold.css. Try to delete the entire dynamic_avia folder and re-save the theme options. Enfold should create the folder again and also regenerate the dynamic stylesheet.

    Best regards,
    Peter

    in reply to: Setting form field alignment #267377

    Hi!

    Glad you solved the problem. The default form stylings can be found in enfold/css/base.css below this headline

    
    
    /* #Forms
    ================================================== */
    

    Cheers!
    Peter

    in reply to: Problem with Woocommerce #267362

    Hey!

    Can you please create us an admin account – I’ll check the console for javascript errors. The login credentials you posted here: https://kriesi.at/support/topic/problem-with-woocommerce-2/#post-265526 don’t work for me.

    Regards,
    Peter

    in reply to: Able to run Stretched and boxed layouts together? #267358

    Hey mand4mac3!

    You need to pick one of the layouts. Changing the layout on a per page/post basis is not easily possible.

    Best regards,
    Peter

    in reply to: Search results limited to 4? #267295

    Hi!

    You can try to use the search conditional to increase the number of search results on the search page only –

    
    // limit the results to 5
    	function avia_searchwp_search_num_results() {
    		if(is_search()) return 5;
    		return 4;
    	}
    

    Best regards,
    Peter

    in reply to: jQuery no conflict #267258

    Hey Helchar!

    Enfold already uses the jQuery noconflict mode. You don’t need to modify the theme files. The main problem is though that you can’t easily use two different jquery versions on the same website. Our theme relies on the standard wordpress jquery version which is 1.11.x and it definitely won’t work with the (very outdated) 1.3.2 version. You can try to initialize your old jquery script first and to store it into a variable (i. e. like http://stackoverflow.com/a/17407562 ) but then you also need to modify your calendar script to use the right jquery variable which contains the outdated jquery code, etc. If you’re not sure how to do this please hire a developer who can dig into the code and modify it for you.

    Cheers!
    Peter

    in reply to: Can slider images be read by Yoast's Sitemaps? #267235

    Hey Swarez!

    Yes, all images are saved as wordpress media files and are assigned to the “attachments” post type.

    Best regards,
    Peter

    in reply to: Blog – die aktuellsten Neuigkeiten (Text ändern) #267213

    Hi!

    Nein, die einzelnen Blog Einträge unterstützen leider keine “Fullwidth” Elemente wie zB den LayerSlider oder die “Color Sections”. Dies ist derzeit aus technischen Gründen nicht leicht machbar und würde diverse Anpassungen an den Theme Dateien erfordern. Ich empfehle euch daher entweder den Slider wegzulassen, oder ihr probiert den LayerSlider Shortcode direkt in den Artikeltext einzufügen. Dieser wird dann aber nicht die volle Breite ausfüllen, sondern nur bis zum “Content”-Rand gehen.

    Cheers!
    Peter

    in reply to: tab load delay and accordion slideDown speed #267181

    Hi!

    Try to insert this code into the quick css field:

    
    .active_tc.toggle_wrap {
    display: none;
    }
    

    and then change then replace the transition speed in the shortcode.js file – i.e replace

    
    content.addClass('active_tc').slideDown(200,
    

    with

    
    content.addClass('active_tc').slideDown(1500,
    

    Cheers!
    Peter

    in reply to: HELP: Can't get Fullwidth Masonry Blog to work #267167

    Hey!

    Please go to Enfold > Theme Options > Blog Layout and change the “Blog Style” dropdown option to “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)”. Then save the settings and the breadcrumb should work. If you didn’t set a blog page go to Enfold > Theme Options and select the blog page from the dropdown.

    Regards,
    Peter

    in reply to: wpml switcher problem persists #267164

    Hey!

    Actually there’s a redirection in place and this is not a theme issue. If I deactivate the “Redirection” plugin the http://www.amequipment.com/es/ url does not redirect me to http://www.amequipment.com/es/la-serie-2d/ . Please configure the redirection plugin properly or (if you think it’s an incompatibility issue with WPML) try to contact the plugin author to fix this issue.

    Cheers!
    Peter

    Hi chilli-mind!

    Bitte erstellt mir einen Admin Account und postet die Login Daten als “Private Reply” – ich sehe mir den Code an.

    Best regards,
    Peter

    in reply to: Bildtext im Fullscreen-slider #266418

    Hey advocatusneo!

    Bitte verwende diesen Code um die Schriftgröße zu ändern

    
    .csstransitions .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content { font-size: 20px; }
    

    Regards,
    Peter

    in reply to: Help Relocating WooCommerce Info Below Description #266415

    Hi!

    If you want to place the hooks into the child theme use the after_theme_setup action like:

    
    add_action('after_setup_theme','avia_change_wc_templates');
    function avia_change_wc_templates(){
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 100 );
    }
    

    I’m not sure which hooks are used by Gravity Forms though. Your best bet is to contact the developers of the Gravity Forms plugin or WC extension.

    Regards,
    Peter

    Hey Nomadigo!

    1) You can try to change the post date of the portfolio entries (date when the entry was published). The post date normally should affect the order of the entries. You can also try this plugin: https://wordpress.org/plugins/taxonomy-terms-order/ to order the entries via drag’n’drop.

    2) This is quite simple – basically you just need add several “color sections” to your advanced template and then drag’n’drop the elements into these color sections. Each color section can be assigned to a main menu link by using the “ID” setting – see: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    3) I recommend to use the text shadow generator here: http://css3gen.com/text-shadow/ – then insert the css code into the quick css field or into your child theme style.css file – it will look like:

    
    h1 { text-shadow: 4px 4px 2px rgba(150, 150, 150, 1); } 
    

    Regards,
    Peter

    Hey!

    Please create us an admin account and post the login credentials as private reply – we’ll look into it.

    Cheers!
    Peter

    Hi!

    Please insert this code into your child theme functions.php or enfold/functions.php file:

    
    add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
    function avia_change_title_tag($title, $wptitle) {
            if(!is_front_page() && !is_home()) $title = get_bloginfo('name').' | '.$wptitle;
            return $title;
    }
    

    Best regards,
    Peter

    in reply to: Menü transparent #266397

    Hi!

    Du kannst probieren mit folgenden CSS Code das Menü zu verstecken:

    
    .av_header_transparency .av-main-nav-wrap{ display: none !important; }
    

    Sobald dann der weiße Hintergrund hinzugefügt wird erscheint das Menü.

    Cheers!
    Peter

    in reply to: Enfold – Remove portfolio-item from url #266396

    Hi!

    Tbh I’m not sure if there’s a plugin which can do this. You can try to use this plugin: http://wordpress.org/plugins/custom-permalinks/ to set a custom permalink for each portfolio entry but it won’t add the category to the permalink automatically.

    Cheers!
    Peter

    in reply to: Masonary Product Slideshow Including invalid items #266393

    Hi!

    The plugin custom post type is called “global_product_addon”. Our query is not based on the products post type but the taxonomy and terms(s) of the products. If the plugin just registers a new post type but uses the same taxonomy/terms like the standard woocommerce products it’s also included in the products query.

    Regards,
    Peter

    in reply to: Menu Transparent in Https:// #266292

    Hi!

    Great – glad it works ;)

    Best regards,
    Peter

    in reply to: Enfold – Remove portfolio-item from url #266291

    Hey!

    If you want to list the categories (instead of the portfolio pages) in the breadcrumb you can use the code I posted here: https://kriesi.at/support/topic/breadcrumbs-with-portfolio/

    Regards,
    Peter

    in reply to: display like Home v10: Magazine #266259

    Hi!

    There’s an option which enables you to feature the first entry – you can either display it on the left side and the “small” entries on the right side or display it on top of the other entries.

    Regards,
    Peter

    in reply to: Blog posts don't show in translated language. #266256

    Hey!

    Ok – it seems to be a plugin conflict between “The Events Calendar” plugin and WPML. I deactivated the events calendar plugin and the post query on the blog page started to work. I recommend to contact the developers of the events calendar plugin and to ask them to debug the issue…

    Update – it seems like the events calendar plugin is not fully compatible with WPML: https://tri.be/support/forums/topic/version-3-wpml-ready/ – probably you need t switch to another plugin…

    Cheers!
    Peter

    in reply to: Unable to save changes after update and WPML #266250

    Hi!

    I couldn’t find any errors on the theme option page and I couldn’t reproduce the issue on my test server but maybe your server fails to generate the dynamic stylesheet when you safe the theme options a second time without reloading the option page. You can deactivate the dynamic stylesheet by replacing this line in enfold/enfold-functions.php:

    
    add_action('avia_ajax_after_save_options_page', 'avia_generate_stylesheet', 30, 1);
    

    with

    
    //add_action('avia_ajax_after_save_options_page', 'avia_generate_stylesheet', 30, 1);
    

    Best regards,
    Peter

    in reply to: nofollow social and share links #266248

    Hey!

    Copy the entire code of enfold\includes\helper-social-media.php into your child theme functions.php file (maybe you need to remove the first line which contains the $this->html .= "<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";

    with

    
    				$this->html .= 		"<a {$blank} rel='nofollow' href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";
    
    

    and

    
    			$html .= "<a {$blank} href='".$icon['social_icon_link']."' ".av_icon_string($icon['social_icon'])." title='".ucfirst($icon['social_icon'])."'><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
    
    

    with

    
    			$html .= "<a {$blank}  rel='nofollow' href='".$icon['social_icon_link']."' ".av_icon_string($icon['social_icon'])." title='".ucfirst($icon['social_icon'])."'><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
    
    

    Regards,
    Peter

    in reply to: Avia builder stopped working #266181

    Hi!

    Maybe a plugin is incompatible with WP3.9+. Please try to deactivate all plugins and check if the editor starts to work…

    Cheers!
    Peter

    Hi!

    Oh, I see. Unfortunately I couldn’t find a fix for this issue. Your best bet is to contact the plugin author – maybe he can provide some help. Otherwise you need to hire a developer who investigates the plugin/theme conflict and who fixes js/css/html code errors if necessary.

    Best regards,
    Peter

Viewing 30 posts - 3,481 through 3,510 (of 9,352 total)