Forum Replies Created

Viewing 30 posts - 3,901 through 3,930 (of 9,352 total)
  • Author
    Posts
  • Hey pako69!

    Great, glad you solved it :)

    Cheers!
    Peter

    in reply to: server error #256772

    Hey!

    Please use a robots.txt file to prevent search engines from indexing the theme directory. I recommend following rules:

    
    User-agent: *
    Disallow: /cgi-bin
    Disallow: /wp-admin
    Disallow: /wp-includes
    Disallow: /wp-content/plugins
    Disallow: /wp-content/cache
    Disallow: /wp-content/themes
    Disallow: /trackback
    Disallow: /feed
    

    Regards,
    Peter

    in reply to: Enfold und Nextgen #256769

    Hey Biggy!

    Wenn die Pro Lightbox nicht mehr funktioniert würde ich empfehlen auf die standardmäßige PrettyPhoto Lightbox (welche mit dem Theme kommt) zu verwenden. Sie hierzu: https://kriesi.at/support/topic/how-to-use-nextgen-gallery-with-enfold-and-other-kriesi-themes/ – “1) Deactivate the lightbox effect”. Wir können leider derzeit keine umfassende Kompatiblität mit NextGen Pro versprechen bzw. dbzgl Support anbieten. Wenn ich etwas mehr Zeit finde werde ich mir aber ansehen, ob wir dbzgl etwas verbessern können.

    Regards,
    Peter

    in reply to: Moderator custom image and css #256765

    Hey hamzahmauzam!

    You can use this code to add a class to the moderator posts:

    
    add_filter('bbp_get_reply_class','add_extra_forum_class',10,2);
    function add_extra_forum_class($classes, $id)
    {
    	global $post;
    	$authordata = get_userdata( $post->post_author );
    
    	if(isset($authordata->allcaps) && !empty($authordata->allcaps['delete_others_replies']))
    	{
    		$classes[] = 'moderator';
    	}
    
    	return $classes;
    }
    

    Best regards,
    Peter

    in reply to: No longer able to edit content #256763

    Hey!

    Please update to Enfold 2.6.4. Older theme versions are not compatible with WP3.9. I recommend to use ftp: http://vimeo.com/67209750 to update the theme.

    Regards,
    Peter

    in reply to: Website Final Tweaks #256760

    Hi!

    Oh, ok – if you want to change the breadcrumb of the categories to insert this code into the child theme functions.php file:

    
    	add_action('after_setup_theme','avia_change_shop_breadcrumb');
    	function avia_change_shop_breadcrumb()
    	{
    		add_filter('avia_breadcrumbs_trail','avia_woocommerce_breadcrumb_custom', 15);
    		remove_filter('avia_breadcrumbs_trail','avia_woocommerce_breadcrumb');
    	}
    	
    
    	function avia_woocommerce_breadcrumb_custom($trail)
    	{
    		global $avia_config;
    
    		if(is_woocommerce())
    		{
    			$home 		= $trail[0];
    			$last 		= array_pop($trail);
    			$shop_id 	= woocommerce_get_page_id('shop');
    			$taxonomy 	= "product_cat";
    
    			// on the shop frontpage simply display the shop name, rather than shop name + "All Products"
    			if(is_shop())
    			{
    				if(!empty($shop_id) && $shop_id  != -1)  $trail = array_merge( $trail, avia_breadcrumbs_get_parents( $shop_id ) );
    				$last = "";
    
    				if(is_search())
    				{
    					$last = __('Search results for:','avia_framework').' '.esc_attr($_GET['s']);
    				}
    			}
    
    			if(is_product() || is_product_category() || is_product_tag())
    			{
    				//unset the trail and build our own
    				unset($trail);
    
    				$trail[0] = $home;
    				if(!empty($shop_id) && $shop_id  != -1)    $trail = array_merge( $trail, avia_breadcrumbs_get_parents( $shop_id ) );
    
    			}
    
    			if(is_product_tag())
    			{
    				$last = __("Tag",'avia_framework').": ".$last;
    			}
    
    			if(!empty($last)) $trail[] = $last;
    		}
    
    		return $trail;
    	}
    

    Regards,
    Peter

    in reply to: Taxonomy filter #256753

    Hey!

    I recommend to try a different blog layout (single author or multi author). The grid layout uses a custom post query which is probably not compatible with the filter widget because the widget only affects the main wordpress query. If you want to use the grid blog layout you would need to modify the code in enfold\config-templatebuilder\avia-shortcodes\postslider.php and implement the query parameters of the taxonomy widget. I recommend to hire a freelancer for this job if necessary.

    Update – I just noticed that the ?s= parameter is set but empty. It breaks the filter because our theme thinks it’s a search query. I recommend to remove ?s= or &s= from the taxonomy url or try to insert this code into the child theme functions.php file:

    
    add_action('after_setup_theme','avia_remove_search_query');
    function avia_remove_search_query(){
    remove_filter('pre_get_posts', 'avia_search_query_filter');
    }
    

    Best regards,
    Peter

    in reply to: Archive PAGEs #256751

    Hi Bedros!

    1) Insert this code into your child theme functions.php file:

    
    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    return $args;
    }
    
    

    It will replace the “Blog – Latest News” title with the post title. Personally I’m not sure if this really make sense because the post title is already displayed underneath the thumbnail but it’s up to you.

    2) You can deactivate the lightbox link with css code – insert it into the quick css field or into the child theme style.css:

    
    .big-preview.single-big{ pointer-events: none; }
    

    Best regards,
    Peter

    in reply to: bbpress user profile widget #256749

    Hey hamzahmauzam!

    This widget is not bundled with Enfold or bbpress – it’s a custom widget which is part of the Envato verification plugin Kriesi uses to verify the themeforest purchase codes. You can search for a similar free login widget here: http://wordpress.org/plugins/search.php?q=login+widget

    Best regards,
    Peter

    Hi COLORIT!

    I’ll mark this thread for Kriesi. Probably some code in Yoast SEO conflicts with Kriesi’s blog logic. Please create us an admin account and post the login credentials as private reply.

    Cheers!
    Peter

    Hi!

    The archive pages don’t support an “Advanced Layout” blog template but you can select a different static blog template if you don’t like the archive page layout. Insert this code into the child theme 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 = 'blog-grid';
    return $layout;
    }
    

    You can replace “blog-grid” with another blog layout like “single-big” or “single-small” or “multi-big”.

    Best regards,
    Peter

    in reply to: Post Slider adjustments #256542

    Hey Kropstar!

    Unfortunately it’s not easily possible to change the post slider animation ans scrolling behavior. If you want to change it please hire a freelancer who can help you with the theme code customization. If you want to use a free post slider plugin you can try some free plugins from the repository: http://wordpress.org/plugins/search.php?q=post+slider – i.e. https://wordpress.org/plugins/recent-posts-flexslider/

    Regards,
    Peter

    Hi mareva!

    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.

    Best regards,
    Peter

    Hey!

    It works now. The code changed a bit with the last theme update and I had to insert:

    
    add_filter('avf_avia_builder_masonry_lightbox_img_size', 'avia_change_gallery_thumbnail_link', 10, 1);
    function avia_change_gallery_thumbnail_link($size)
    {
        return "full";
    }
    

    into the functions.php file.

    Best regards,
    Peter

    Hey!

    I couldn’t reproduce the backend issue with any browser (Firefox, Chrome, IE) and I think it might be a browser extension which breaks the website.

    The pagination issue is caused by Yoast SEO – if I deactivate the plugin the pagination starts to work. Unfortunately I can’t reproduce the issue on my test server and I’m not sure why Yoast SEO breaks the pagination on your server. I recommend to use another SEO plugin or try to place the blog on a different page – maybe the front page main query conflicts with the blog query somehow and the seo plugin triggers this conflict.

    Best regards,
    Peter

    in reply to: Woocommerce rows of products displayed change & WPML bug #256511

    Hey!

    Great, hopefully the beta version will fix the issue. If not I recommend to downgrade to WP3.8 for now and to wait for the final WPML update.

    Cheers!
    Peter

    in reply to: Eigener CSS Code für "Benutzerdefinierte CSS Klasse" #256509

    Hey crevlon!

    Wenn du eine CSS Klasse ansprechen möchtest, muss ein Punkt (.) als Selektor verwendet werden. Die Raute (#) steht für Element IDs. Daher verwende diesen Code:

    
    .hintergrund{
    background-image: linear-gradient(rgba(255,226,168,.5) 70%,white 100%) !important;
    border-style: solid;
    border-width:1px;
    border-color: #ADADAD !important; 
    border-radius: 11px;
    box-shadow: 5px 5px 5px #cccccc;
    }
    

    Mehr Informationen: http://www.css4you.de/wscss/css03.html

    Cheers!
    Peter

    Hi!

    Install this plugin: http://wordpress.org/plugins/simple-image-sizes/ and change the thumbnail size of the “Masonry” thumbnails (go to the Settings > Media option page). Then regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Peter

    in reply to: After 2.7 and 3.9 updates getting JS errors #255987

    Hey!

    Did you try to deactivate all plugins. I couldn’t reproduce the issue you mentioned in your first post (in fact I can edit the page content with and without the Advanced Layout Builder just fine) but i.e. the Ultimate TinyMCE plugin triggered several errors. Also the plugin author: http://wordpress.org/plugins/ultimate-tinymce/ warns about the WP3.9 compatibility.

    Best regards,
    Peter

    in reply to: Auto p problem in text editor after updating to WP 3.9 #255983

    Hey t2design!

    Thanks for the notice. I asked Kriesi to look into it.

    Regards,
    Peter

    in reply to: Issues with some inner content width below #255982

    Hi!

    Also note that just http:// links are affected. I.e. google+ uses https:// and the link works.

    Best regards,
    Peter

    in reply to: Issues with some inner content width below #255981

    Hi!

    The link doesn’t work for me. I think the share icons issue is probably caused by custom code or a plugin. Something strips the http:// protocol when the user clicks on the link and i.e.

    
    http://www.facebook.com/sharer.php?u=http%3A%2F%2Fpurmainz.indikator-design.de%2Fpur-auf-neuen-wegen%2F&t=PUR+auf+neuen+Wegen
    

    turns to:

    
    www.facebook.com/sharer.php?u=http%3A%2F%2Fpurmainz.indikator-design.de%2Fpur-auf-neuen-wegen%2F&t=PUR+auf+neuen+Wegen
    

    Because of the missing http:// browser tries to open a relative url on the same website and just appends the facebook link to your website url. No other user reported this issue so far and I can’t reproduce it on my test servers – thus I think it must be related to some custom code or it’s a configuration issue.

    Cheers!
    Peter

    in reply to: After 2.7 and 3.9 updates getting JS errors #255969

    Hey!

    Please create us a ftp and wordpress admin account and post the login credentials as private reply.

    Best regards,
    Peter

    in reply to: WPML + Enfold Blog setting not working #255966

    Hey!

    Yes, I think this issue is also related to WPML. We’ll wait for the final version which is fully compatible with WP3.9 and if it still doesn’t work we’ll look into our code. However we just use a simple query to fetch the posts and I’m pretty sure something is broken with the WPML code. For now I recommend to use an alternative solution or to downgrade to 3.8 until WPML is fully compatible with WP3.9.

    Cheers!
    Peter

    in reply to: Theme Styling #255964

    Hi!

    Please try to delete the wp-content/uploads/dynamic_avia/ folder, then set the wp-content/uploads/ folder to 777 and go to the Enfold > Theme Options page and re-save the settings. Hopefully this will fix the issue.

    Cheers!
    Peter

    Hi!

    Media queries are based on the screen size and they may vary from device to device. If you know which screen size your Samsung sII has you can add some additional media queries to your code like:

    
    @media only screen and (min-width: 767px) and (max-width:999px){
    /* your custom css code for Samsung sII  users */
    
    }
    

    Replace 999 with the screen size of your Samsung SII device.

    Regards,
    Peter

    in reply to: Change or Remove sidebar from Blog Page #255961

    Hey GOWD!

    Please edit the blog page (Pages > All Pages and click the “Edit” link underneath the blog page title) and on the right side of the editor page search for the “Layout” settings box. Select “Layout” – “No sidebar” and save the blog page to remove the sidebar.

    Best regards,
    Peter

    in reply to: Recent Portfolio Widget – Thumbnails Size #255959

    Hi!

    I fixed it. I replaced the code in functions.php with:

    
    add_action('after_setup_theme','avia_change_image_sizes');
    function avia_change_image_sizes(){
    global $avia_config;
    $avia_config['imgSize']['widget'] = array('width'=>122,  'height'=>122); // small preview pics eg sidebar news
    }
    

    and changed the css code to:

    
    #top .image_size_widget .news-thumb {
    height: 130px;
    width: 130px; 
    }
    
    #top  .image_size_widget .news-thumb img {
    width: 122px;
    height: 122px;
    }
    

    Best regards,
    Peter

    in reply to: Edit character length in latest news widget #255957

    Hi simplyaha!

    No, unfortunately there’s no reliable solution to limit the excerpt length with css. I recommend to use the code from here: http://codex.wordpress.org/Function_Reference/the_excerpt#Control_Excerpt_Length_using_Filters and to add it to the child theme functions.php file (insert it at the very bottom).

    Regards,
    Peter

    in reply to: Please contribute and translate Enfold #255956

    Hi!

    Great, thank you :)

    Best regards,
    Peter

Viewing 30 posts - 3,901 through 3,930 (of 9,352 total)