Forum Replies Created

Viewing 30 posts - 2,521 through 2,550 (of 3,706 total)
  • Author
    Posts
  • in reply to: Add submenu item to single product page #601420

    Hi pannosk!

    Thank you for using our theme.

    Out of the box this is not possible. The theme is designed to have same header and menus on all pages.

    You can post a feature request on https://kriesi.at/support/enfold-feature-requests/. Kriesi looks at these reguarly and decides, what to implement or develop.

    Best regards,
    Günter

    in reply to: linking webpages to table data #601396

    Hi phillipikoo!

    Thank you for using our theme.

    You can put the html code in the table cell, e.g.

    
    <a href="www.google.com">Link to Google</a>
    

    You can find the permalink of the page in the WP edit page.

    Regards,
    Günter

    in reply to: blog Title Above Image #601383

    Hi creatiffco!

    Thank you for using our theme.

    With CSS this is not possible.

    The problem is the HTML structure.

    It would be possible to move the headline with jQuery, but this breaks the complete design of the page.

    Unfortunately that kind of customisation is out of the scope of our forum and needs to be done by a freelance developer.

    Regards,
    Günter

    in reply to: Cart Button Hidden #601372

    Hi!

    Thank you for coming back.

    At the moment – no. But we are working on a more user friendly solution.

    Best regards,
    Günter

    in reply to: How To Rearrange Services (Products) #601368

    Hi Nathan!

    Thank you for using our theme.

    Have a look at this post:

    How To Customize Product Sorting in WooCommerce

    I think, this will answer your question.

    Regards,
    Günter

    in reply to: Add content before a post / archive page #601364

    Hey!

    Thank you for coming back.

    You must use the following filter:

    http://wordpress.stackexchange.com/questions/39918/wordpress-hooks-filters-insert-before-content-or-after-title

    The code for you must look like:

    
    function add_my_personal_text( $content ) {
       $new = '';
      if ( has_filter( 'wpproads_api_display_adzone' ) ){
      new  = apply_filters( 'wpproads_api_display_adzone', array(
        'name' => 'Your Theme unique Adzone name',
        'description' => 'Your adzone description',
        'size' => '300x250'
      ));
    
     $content =  $new. $content;
     return $content;
    }
    
    add_filter( 'the_content', 'add_my_personal_text' );
    

    Best regards,
    Günter

    in reply to: Problem with responsive title #601334

    Hi asterios!

    Thank you for using our theme.

    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:

    
    .page-id-15411 tr.avia-heading-row th {
        white-space: pre-wrap !important;
    }
    

    Regards,
    Günter

    in reply to: Content not fitting in Twitter Feed Box #601298

    Hey!

    Thank you for coming back.

    Try to replace the code above with:

    
    .home .avia-builder-el-8 {
        max-height: 200px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    

    Best regards,
    Günter

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

    Hey!

    Glad you found a solution. Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Simply open a new thread.

    Regards,
    Günter

    in reply to: Masonry Gallery sort order ? #601265

    Hey!

    Glad you found the solution. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.

    Regards,
    Günter

    in reply to: Template customization #601264

    Hey mika2000!

    Thank you for using our theme.

    The standard footer template used by WP is enfold\footer.php.

    If you want to have seperate footers you have to split the output here.

    Depending on the changes either with if(…) else (…) or you create subtemplates from that one and include these in a modified version of this file.

    Regards,
    Günter

    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

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