Forum Replies Created

Viewing 30 posts - 2,521 through 2,550 (of 3,695 total)
  • Author
    Posts
  • in reply to: Menü funktioniert nicht mehr #601260

    Hey!

    Danke dass Du unser Theme verwendest.

    Schwer zu sagen, vielleicht war irgend ein falsches Zeichen oder es hat einen Übertragungsfehler beim Speichern gegeben.

    Hauptsache, es funktioniert jetzt.

    Viel Freude noch mit dem Theme und Du kannst jederzeit mit Fragen und Problemen zu uns kommen.
    Einfach einen neuen Thread aufmachen.

    Best regards,
    Günter

    in reply to: Using Contact Form 7 shortcode in fullscreen slider text #601259

    Hi!

    Thank you for coming back.

    Out of the box – no.

    Regards,
    Günter

    in reply to: Masonry Grid category filters #601256

    Hey!

    Thank you for coming back.

    I added a filter to the core. Until this filter is release, please add the following line to enfold\config-templatebuilder\avia-shortcodes\helper-masonry.php line 141ff:

    Old code:

    
    				$sort_loop = "";
    				$allowed_terms = array();
    				
    				foreach($sort_terms as $term)
    				{
    

    New code:

    
    				$sort_loop = "";
    				$allowed_terms = array();
    				
    				$sort_terms = apply_filters('avf_masonry_resort_filter_buttons', "", $sort_terms, $this->atts );
    				
    				foreach($sort_terms as $term)
    				{
    

    Add following code to Functions.php file of your child theme (or parent theme, if not using a child theme)- you can use Dashboard -> Appearance > Editor (this code does the actual resorting):

    
    
    add_filter( 'avf_masonry_resort_filter_buttons', 'my_avf_masonry_resort_filter_buttons', 10, 2 );
    function my_avf_masonry_resort_filter_buttons( $sort_terms, $atts )
    {
    		//	Add Sequence of term names you like
    	$order = array( 'S', 'M', 'L', 'XL' );
    	
    	$new_sort = array();
    	
    	foreach( $order as $value )
    	{
    		foreach( $sort_terms as $key => $term )
    		{
    			if( strtoupper( trim( $term->name ) ) == strtoupper( trim( $value ) ))
    			{
    				$new_sort[] = $term;
    				unset( $sort_terms[ $key ] );
    			}
    		}
    	}
    	
    	$new_sort = array_merge( $new_sort, $sort_terms );
    	
    	return $new_sort;
    }
    

    Regards,
    Günter

    in reply to: Trouble in switching the site in the final destination #601231

    Hey!

    Thank you for coming back.

    Out of the box this in not possible. This element is intended to display portfolio items.

    If you have programming skills you can modiify the file

    enfold\config-templatebuilder\avia-shortcodes\portfolio.php

    and create your own ALB Element.

    Cheers!
    Günter

    in reply to: Problem with child theme #601227

    Hey!

    Thank you for coming back.

    I checked your site and see the problems.

    I tried to connect with ftp, but could not recieve content.

    Can you try to remove footer.php from the child theme – maybe there is an error in this file causing the problem.

    Try to update to the latest version of Enfold.

    Best regards,
    Günter

    in reply to: Child theme not showing in theme directory #601200

    Hi!

    Thank you for coming back.

    The file style.css was missing the header comments – I added them.

    Please check line 142 – there seems to be a syntax error.

    I also updated function.php to the latest version content.

    Now everything should work again.

    Best regards,
    Günter

    in reply to: Contact Form 7 validation messages #601192

    Hi ghodson!

    Thank you for using our theme.

    I checked a cf7 form on a page – it shows the default cf7 messages and no red borders.

    Can you send us a link to the page and create us a temporary admin account please? Then we can check and help you. You can post it here as a private reply.

    Best regards,
    Günter

    in reply to: Images not indexed #601183

    Hey!

    Thank you for coming back.

    I checked, that images uploaded with the in the masonry gallery are definetly stored in the standard upload folder of WP for media files.

    Maybe you can check with your hoster, that he does not block access to this folder for search engines.

    Nevertheless I will tell Kriesi about the SEO API calls.

    Cheers!
    Günter

    in reply to: Parallax Effect for Full Width Slider #601178

    Hey mleonhard!

    Thank you for using our theme.

    If you want to add e.g. the fullwidth easy slider in a color section:

    Enable the debug mode for the ALB:

    Add the color section to the page
    Add the slider after the color section

    In the debug area move [/av_section] after [/av_slideshow_full] see example below:

    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [/av_section]
    
    [av_slideshow_full size='featured' stretch='' animation='slide' autoplay='false' interval='5' control_layout='av-control-default' src='' attachment='' attachment_size='' position='top left' repeat='no-repeat' attach='scroll' custom_class='']
    [av_slide_full id='745'][/av_slide_full]
    [av_slide_full id='316'][/av_slide_full]
    [av_slide_full id='315'][/av_slide_full]
    [av_slide_full id='314'][/av_slide_full]
    [av_slide_full id='313'][/av_slide_full]
    [/av_slideshow_full]
    

    must be:

    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' scroll_down='' id='' color='main_color' custom_bg='' src='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' video_mobile_disabled='' overlay_enable='' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_slideshow_full size='featured' stretch='' animation='slide' autoplay='false' interval='5' control_layout='av-control-default' src='' attachment='' attachment_size='' position='top left' repeat='no-repeat' attach='scroll' custom_class='']
    [av_slide_full id='745'][/av_slide_full]
    [av_slide_full id='316'][/av_slide_full]
    [av_slide_full id='315'][/av_slide_full]
    [av_slide_full id='314'][/av_slide_full]
    [av_slide_full id='313'][/av_slide_full]
    [/av_slideshow_full]
    
    [/av_section]
    

    Cheers!
    Günter

    in reply to: Search ? give a error 404 #601167

    Hey!

    Thank you for using our theme and coming back.

    Looks like a WP problem with the permalinks.

    You can try to force WP to rewrite the permalinks by:

    Dashboard -> Settings -> Permalinks
    select “Plain” and save changes
    select your current setting and save changes

    Cheers!
    Günter

    in reply to: Masonry Gallery Bug ? oder Setting wrong? #601163

    Hi!

    Thank you for coming back.

    I tried to reproduce your problem, but everything works fine for me.

    Are you using the latest version of Enfold (3.5 has been released) and of WP?
    Try to reinstall Enfold.

    Try to deactivate all plugins and reactivate one by one – maybe there is a plugin conflict

    If you still have problems, can you create us a temporary admin account and link to your site please? Then we can check and help you.

    You can post it here as a private reply.

    Regards,
    Günter

    in reply to: Left sidebar layout > breadcrumbs missing #601107

    Hi!
    Thank you for coming back.

    Feel free to come back with further questions and/or problems you have.

    Best regards,
    Günter

    in reply to: Magazine module: displayng entries by author #600833

    Hey!

    Thank you for coming back.

    See post https://kriesi.at/support/topic/magazine-module-displaying-posts-by-author/

    Enjoy the theme and feel free to comeback with further inquires – open a new topic.

    Cheers!
    Günter

    in reply to: Magazine module: displaying posts by author #600832

    Hi!

    Thank you for coming back.

    Kriesi looks at these reguarly and decides, what to implement or develop.
    Keep in touch with Themeforest to see updates in future releases.

    Enjoy the theme and feel free to comeback with further inquires – open a new topic.

    Cheers!
    Günter

    in reply to: problems with tabs #600696

    Hey!

    Thank you for coming back.

    Glad you found a solution and thank you for posting it in the forum.

    Feel free to come back with further questions and/or problems you have.

    Regards,
    Günter

    in reply to: How to remove empty paragraphs around code comments? #600694

    Hi!

    Sorry we could not help you that time.

    We would be happy if you decide for Enfold or one of our themes for one of your future projects.

    Regards,
    Günter

    in reply to: Create Blank, full width page with no content #600693

    Hi!

    Thank you for coming back.

    I think, creatinng a new php page template would be the best to speed up loading of the page – avoiding unnecessary overhead.

    Regards,
    Günter

    in reply to: determine the size of the header logo? #600689

    Hi!

    Thank you for using our theme.

    Leave the code for margin-top and add the following below:

    
    .header-scrolled {
        margin-top: auto !important;
    }
    

    Regards,
    Günter

    in reply to: Magazine module: displaying posts by author #600686

    Hey kwlodar!

    Thank you for using our theme.

    Out of the box it is not possible.

    If you have programming skills you can use the following filter to change the query:

    In enfold\config-templatebuilder\avia-shortcodes\magazine.php line 388 you find:

    
    $query   = apply_filters('avf_magazine_entries_query', $query, $params);
    

    But this is customization and out of the scope of our forum and needs to be done by a freelance developer.

    Regards,
    Günter

    in reply to: enfold template for the events calendar plugin ? #600682

    Hey!

    Thank you for coming back.

    Yes, Enfold is overriding some Events Calender behaviour using templates and CSS.

    All that stuff you find in enfold\config-events-calendar.

    The basic config file is enfold\config-events-calendar\config.php.

    You can try to remove the whole folder or modify whatever you like.

    Cheers!
    Günter

    Hi L0g333!

    Thank you for using our theme.

    You can change

    
    top: -42px;
    

    to move the span.

    On FF it works also for a small screen.

    Regards,
    Günter

    in reply to: How to disable AVIA Layout Elements? #600671

    Hi buhlig!

    Thank you for using our theme.

    You can simply remove the files not needed in the folder enfold\config-templatebuilder\avia-shortcodes.

    Regards,
    Günter

    in reply to: Receiving Server PHP Errors #600669

    Hi soundstrat!

    Thank you for using our theme.

    Can you please check:

    – using latest WP Version (4.4.2)
    – using latest Enfold Version (3.4.7, 3.5 coming)
    – check php versions of your hoster and minimum php needed for WP and Enfold

    Deactivate all plugins and check, if the errors still occur, then activate one plugin after the other

    Try to increase php memory (128 MB recommended, 256MB would be better) with your hoster and WP:

    You can try adding following line to wp-config.php file which is in the root of your WordPress installation via FTP

    
    define( 'WP_MEMORY_LIMIT', '256M' );
    

    Best regards,
    Günter

    in reply to: Read More #600662

    Hey _riccardo_!

    Thank you for using our theme.

    I’m not sure about your question.

    The read more is intended for blog posts, where you have many posts on a page. For a single page content it does not make sense to cut the content.

    Can you send us a link to the page and point out more closely your problem.

    Cheers!
    Günter

    in reply to: Add button – back to shop #600661

    Hi!

    Thank you for coming back.

    Please add following code to Functions.php file of your child theme (or parent theme, if not using a child theme)- you can use Dashboard -> Appearance > Editor:

    
    add_filter( 'wc_add_to_cart_message', 'my_wc_add_to_cart_message', 10, 2);
    
    function my_wc_add_to_cart_message( $message, $product_id )
    {
    	
    	$message .= sprintf( '<a href="%s" class="button wc-forward my-button">%s</a>', esc_url( wc_get_page_permalink( 'shop' ) ), esc_html__( 'Back to shop', 'woocommerce' ) );
    	return $message;
    }
    

    In custom.css or Enfold -> General Styling -> Quick CSS field (or when using a child theme: in styles.css of the child theme or Enfold-Child -> General Styling -> Quick CSS field) put the following and adjust the values as needed:

    
    a.my-button{
    	right: 250px !important;
    }
    

    Regards,
    Günter

    in reply to: footer widget contact form short code #600659

    Hey AirstreamCoach!

    Thank you for using our theme.

    Did you enter the e-mails seperated with “,” in the e-mail parameter like:

    
    [av_contact email=' (Email address hidden if logged out) ,  (Email address hidden if logged out) ' ....
    

    and did you integrate

    
    [av_contact_field label='E-Mail' type='text' check='is_email' options='' multi_select='' width=''][/av_contact_field]
    

    If you want to the customer to recieve an E-Mail you have to set the Autorespond Text.

    Cheers!
    Günter

    in reply to: AJAX-Portfolio change image size #600383

    Hi!

    Thank you for coming back.

    As far as I see you are using the Avia Layout Builder and a Portfolio Grid 3 colums.

    When editing the grid (in the popup) you have a selectbox “Portfolio Grid Image Size”.
    Select “Choose the Portfolio Grid image size manually (select thumbnail size)” opens a selectbox below with all available sizes.

    If you need additional image sizes you can add/modify them using the following filter found in \enfold\functions.php line 129:

    
    $avia_config['imgSize'] = apply_filters('avf_modify_thumb_size', $avia_config['imgSize']);
    

    If you have problems using a filter give us a feedback and we provide you with the code.

    Hope, this solves your problem.

    Regards,
    Günter

    in reply to: Inserting javascript code into code block #600228

    Hi!

    Thank you for coming back.

    You have to replace ‘ with “, see private content.

    Put it in a codeblock and it should work.

    Cheers!
    Günter

    • This reply was modified 8 years, 8 months ago by Günter. Reason: Move link to private content
    in reply to: Portfolio Grid Special 1 column layout #600204

    Hi Richard!

    Thank you for using our theme.

    Out of the box – no.

    You can try to do it with CSS and/or you will have to modify the core:

    C:\xampp\htdocs\wp_kriesi\wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio.php line 450ff

    But this is customization and beyond the scope of support.

    Best regards,
    Günter

    in reply to: Portfolio Grid loading large number of posts #600195

    Hi Richard!

    Thank you for using our theme.

    This is a default and intended behaviour of the grid, that only the loaded posts on the page are filtered. It is not intendend and possible to reload filtered posts.

    There is a plugin “infinite scroll” that continues to load posts when scrolling down, but this is not supported by the portfolio grid and needs some heavy customisation in the core, also the other idea with preloading.

    It is also not possible to filter on the first load, because “all” would then be the filtered posts.

    Cheers!
    Günter

Viewing 30 posts - 2,521 through 2,550 (of 3,695 total)