Forum Replies Created

Viewing 30 posts - 2,461 through 2,490 (of 3,706 total)
  • Author
    Posts
  • in reply to: "Title" Element wrong position above "Magazine" Element #610558

    Hi eKMUch!

    Thank you for using our theme.

    Turn on the custom CSS for the ALB:

    In the custom css field of the special heading add your class:

    my_sp_header_align

    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-70 .my_sp_header_align {
        padding-left: 25px !important;
    }
    

    Cheers!
    Günter

    in reply to: Inhaltselement "Akkordeon" modifizieren #610554

    Hey!

    Ja, das ist korrekt.

    Best regards,
    Günter

    in reply to: Mehrzeilige Hauptnavigation #610553

    Hey Manfred!

    Danke dass Du unser Theme verwendest.

    In Enfold -> Header -> Extra Elements findest Du die Selectbox Header Secondary Menu.

    Dort die Position einstellen und ein Secondary menu anlegen.

    Regards,
    Günter

    in reply to: modify the contact form #610552

    Hi!

    Thank you for coming back.

    To remove the underline:

    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:hover{
    text-decoration: none !important
    }
    

    Contact Form: there is no explicit option to change the styling. You have to use CSS.

    Regards,
    Günter

    in reply to: Help With Masonry For Blog Posts Please #610551

    Hey!

    Thank you for your feedback.

    This is the default behavior of this element.

    It loads all elements for a page (and the next pages on load more) and the filter on top can only filter the elements displayed on the loaded pages.

    It is not possible only to load the elements of a filter with the current implementation out of the box.

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

    Best regards,
    Günter

    Hi!

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

    Cheers!
    Günter

    in reply to: Validation of (Select Element) in contact form #604300

    Hi!


    @bugfreesystems
    – thanks for posting your solution.

    @gabri
    Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.

    Best regards,
    Günter

    in reply to: Sidebar in Productpage woo-commerce #603905

    Hey!

    Thank you for coming back.

    This is an intended behaviour of the theme and cannot be changed easily.

    If you have programming skills you can dig into
    enfold\config-woocommerce\config.php

    and try to change it.

    Unfortunately that kind of customisation is out of the scope of our forum.

    Regards,
    Günter

    in reply to: Show only one (first?) category in blog single post #603904

    Hi!

    Thank you for coming back and sorry for the late reply..

    With Enfold 3.5.1:

    Goto file enfold\includes\loop-index.php line 157- 171:

    
               	$taxonomies  = get_object_taxonomies(get_post_type($the_id));
                    $cats = '';
                    $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') );
    				$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', $excluded_taxonomies, get_post_type($the_id), $the_id);
    
                    if(!empty($taxonomies))
                    {
                        foreach($taxonomies as $taxonomy)
                        {
                            if(!in_array($taxonomy, $excluded_taxonomies))
                            {
                                $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                            }
                        }
                    }
    

    and replace this with:

    
               	$taxonomies  = get_object_taxonomies(get_post_type($the_id));
                    $cats = '';
                    $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') );
    				$excluded_taxonomies = apply_filters('avf_exclude_taxonomies', $excluded_taxonomies, get_post_type($the_id), $the_id);
    
    $cat_links = array();
    $skip_ids = array( 16, 20 );			//	enter the term_id's to skip
    				
                    if(!empty($taxonomies))
                    {
                        foreach($taxonomies as $taxonomy)
                        {
                            if(!in_array($taxonomy, $excluded_taxonomies))
                            {
    //                            $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
    							
    							$terms = get_the_terms( $the_id, $taxonomy );
    
    							if ( is_wp_error( $terms ) )
    							{
    								continue;
    							}
    
    							if ( empty( $terms ) )
    							{
    								continue;
    							}
    
    							foreach ( $terms as $term ) 
    							{
    								if( in_array( $term->term_id, $skip_ids ) )
    								{
    									continue;
    								}
    								
    								$link = get_term_link( $term, $taxonomy );
    								if ( is_wp_error( $link ) ) 
    								{
    									continue;
    								}
    								$cat_links[] = '<a href="' . esc_url( $link ) . '" rel="tag">' . $term->name . '</a>';
    							}
                            }
                        }
                    }
    				
    				if( ! empty( $cat_links) )
    				{
    					$cats = implode( ', ', $cat_links );
    				}
                	
    

    Cheers!
    Günter

    in reply to: Mailchimp DatePicker Format #603859

    Hi!

    Thank you for coming back.

    Sorry to say – at the moment not. If you have programming skills you can try to do it with jQuery and Javascript.

    But 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.

    Cheers!
    Günter

    Hey Chris!

    Thank you for using our theme.

    The code is correct, but h1 are also used in other loop files like loop-page. Without having more information where and what you are doing it’s hard to say, why it is not working.

    Maybe you forgot to clear the browser cache and try to refresh the page several times.

    Regards,
    Günter

    in reply to: How can I add custom id to images? #603823

    Hey!

    Thank you for coming back.

    Out of the box this is not possible.

    You have to change the core file enfold\config-templatebuilder\avia-shortcodes\helper-masonry.php line 248:

    Look for

    
    $img_html  = '<img src="'.$attachment[0].'" title="'.$title.'" alt="'.$alt.'" />';
    

    and replace with

    
    $img_html  = '<img src="'.$attachment[0].'" title="'.$title.'" alt="'.$alt.'" id="image_' . $thumb_ID . '" />';
    

    Remember to apply this change after every update.

    Cheers!
    Günter

    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.

    Cheers!
    Günter

    in reply to: Blog Category Page #603652

    Hi!

    Thank you for coming back and sorry for the delay.

    The blog page follows the WP standard to show a list of posts.

    Of course, everything is possible. You can change the template behaviour by writing your own code.

    What about: Consider using the template builder and create a page.

    Regards,
    Günter

    in reply to: Problems with Categories #603651

    Hi!

    Thank you for coming back and sorry for the late answer.

    Do you mean using the filter function?

    This is the behaviour of the grid: It loads “All” elements and the filter only filters these portfolio loaded – it does not make a call to the server to load more.

    Hope, this answers your question.

    Best regards,
    Günter

    in reply to: Choice theme blog layout #603648

    Hey!

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

    Best regards,
    Günter

    in reply to: Remove categories on blog headline #603630

    Hey!

    Thank you for coming back.

    Could you send us a link to the page please to see, what you want to achieve?
    Thanks.

    You can post it in the private content.

    Regards,
    Günter

    in reply to: Plugin addition for pricing missing #603629

    Hey martindabro!

    Thank you for using our theme.

    Currently not.

    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.

    Regards,
    Günter

    in reply to: aligning color sections content #603627

    Hey muuclemens!

    Danke dass Du unser Theme verwendest.

    Habe mir Deine Seite angeschaut – verstehe aber nicht das Problem.

    Könntest Du es genauer beschreiben – ein screenshot , wo Du die Änderung markierst, wäre sehr hilfreich.
    Danke.

    Best regards,
    Günter

    in reply to: Color Section Height #603625

    Hi!

    Thank you for using our theme.

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

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

    Best regards,
    Günter

    in reply to: conflict with Events Calender Pro #603624

    Hi!

    Thank you for using our theme.

    I tried it on my installation and it worked:

    In functions.php line 425:

    
    if(!current_theme_supports('deactivate_tribe_events_calendar'))
    {
    	require_once( 'config-events-calendar/config.php' );		//compatibility with the Events Calendar plugin
    }
    

    if you remove these lines (do not forget to save when doing it from WP Dashboard editor) and reload the page the design changes.

    Can you create us a temporary admin account please? Then we can check your code and help you. You can post it here as a private reply.

    Best regards,
    Günter

    in reply to: Problem with child theme #603616

    Hey!

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

    Best regards,
    Günter

    Hi!

    The problem is fixed in version 3.5.1.

    Cheers!
    Günter

    in reply to: Enfold-Update hat meine ganze Seite zerschossen! #603607

    Hey!

    Danke dass Du unser Theme verwendest.

    Vermutlich ist wie oben angeführt da etwas beim Upload der files passiert.

    Versuche mit ftp das theme neu hochzuladen.

    Falls das nichts hilft, fallback auf eine Sicherung die funktioniert hat (beim hoster anfragen) und das update mit ftp hochladen.

    Cheers!
    Günter

    in reply to: arrange stars #603603

    Hi!

    Glad we could help you.

    Can we close this thread or is there anything left concerning this thread?

    You can open a new thread for other questions.

    Regards,
    Günter

    in reply to: Infinite scroll when using product grid #603602

    Hi smartretail!

    Thank you for using our theme.

    This cannot be done out of the box.

    You need to make heavy changes in code to files and unfortunately that kind of customisation would be out of the scope of our forum and needs to be done by a freelance developer.

    Cheers!
    Günter

    Hi Selsi21!

    Thank you for using our theme.

    Probably your old theme had defined other image sizes,

    Try to regenerate thumbnails of the images with a plugin like

    https://de.wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Günter

    in reply to: Email Subject from Contact Form Subject #603597

    Hi!

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

    Cheers!
    Günter

    Hi!

    Thank you for coming back.

    I’ll take care of this problem and try to find a fix.

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

    Cheers!
    Günter

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

    Hey!

    I’m afraid, this seems to be a problem with the twitter feed widget:

    Cheers!
    Günter

Viewing 30 posts - 2,461 through 2,490 (of 3,706 total)