Forum Replies Created

Viewing 30 posts - 2,581 through 2,610 (of 3,695 total)
  • Author
    Posts
  • in reply to: Enfold Portfolio Link in Title #581212

    Hi Jdclark18!

    Thank you for using our theme.

    Please try to 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:

    
    function my_custom_title_link( $title_link, $entry )
    {
    	if( ! empty( $title_link ) )
    	{
    		return $title_link;
    	}
    	
    	$title_link  = get_permalink( $entry->ID );
    	return $title_link;
    }
    
    add_filter( 'avia_settingsf_output_settings_field', 'my_custom_title_link', 10, 2 );
    

    Best regards,
    Günter

    in reply to: How To Right-Align Custom Content In Header? #491743

    Hey goforyourdreams!

    Thank you for using our theme.

    Replace your code with the following:

    
    .header-search {
        float: right;
        margin-right: 50px;
        position: relative;
        top: 14px;
        z-index: 999;
    }
    

    Regards,
    Günter

    in reply to: Custom Form #491742

    Hi medvick!

    Thank you for using our theme.

    When using the ALB you can select the element width for each element of the contact form.

    Click on the element and in the popup you find a selectbox: Form Element Width.

    Best regards,
    Günter

    in reply to: search for tag product woocommerce #491741

    Hi marcellovoc!

    Thank you for using our theme.

    Sorry, but I do not understand your aims. Can you explain more clearly, what you want to do?

    jQuery is a frontend tool. If you need some ajax search you will have to hire a freelancer or look at woothemes for a plugin.

    Regards,
    Günter

    Hi eric84!

    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:

    
    #braintree-cc-exp-year {
        margin-top: 5px !important;
    }
    #braintree-cc-cvv_field {
        margin-top: -30px !important;
    }
    

    Best regards,
    Günter

    in reply to: Link aus Blogbeitrag entfernen #467070

    Hi!

    Danke.

    Viel Freude mit dem Theme.

    Regards,
    Günter

    in reply to: Link aus Blogbeitrag entfernen #466864

    Hi!

    Wenn Du die Datei enfold\includes\helper-post-format.php modifizierst, dann:

    
    $output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    

    ersetzen mit:

    
     $output .= "	<div>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</div>";
    

    Auf meiner Installation funktionieren beide Versionen für einen Eintrag vom Typ Post.

    Kannst Du mir einen Link auf die Seite geben?

    Best regards,
    Günter

    in reply to: Link aus Blogbeitrag entfernen #466349

    Hi!

    Ersetze das obige durch:

    
    add_filter( 'post-format-standard', 'my_avia_default_title_filter', 20, 1 );
    
    function my_avia_default_title_filter($current_post)
    {
    		if( ( ! empty( $current_post['title'] ) ) && is_singular() )
    		{
    			$heading = $current_post['title'];
    			$heading = str_replace( '<a ', '<div ', $heading);
    			$heading = str_replace( '</a>', '</div>', $heading);
    			$heading = preg_replace( "/href='.*?'/", '', $heading);
    			$current_post['title'] = $heading;
    		}
    		return $current_post;
    }
    

    Cheers!
    Günter

    in reply to: Link aus Blogbeitrag entfernen #465931

    Hey crevlon!

    Danke dass Du unser Theme verwendest.

    Es gibt da einen Filter in enfold\includes\helper-post-format.php line 15: add_filter( ‘post-format-standard’, ‘avia_default_title_filter’, 10, 1 ); und die Funktion in line 52ff.

    In functions.php am Ende füge den folgenden Code ein:

    
    add_filter( 'post-format-standard', 'my_avia_default_title_filter', 20, 1 );
    
    function my_avia_default_title_filter($current_post)
    {
    		if( ( ! empty( $current_post['title'] ) ) && is_singular() )
    		{
    			$heading = $current_post['title'];
    			$heading = str_replace( '<a ', '<div ', $heading);
    			$heading = str_replace( '</a>', '</div>', $heading);
    			$current_post['title'] = $heading;
    		}
    		return $current_post;
    }
    
    

    Cheers!
    Günter

    in reply to: Border around images on specific page #460573

    Hey!

    Glad I could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Best regards,
    Günter

    in reply to: Exclude pages and posts by id from ajax search results #460230

    Hi!

    Thank you for using our theme.

    Have a look at line 153:

    
    $search_query 		= apply_filters('avf_ajax_search_query', http_build_query($search_parameters));
    

    You can manipulate the query parameters with the filter avf_ajax_search_query.

    Hope, this helps you.

    Regards,
    Günter

    in reply to: contact form adaption #460225

    Hi!

    Try the following:

    
    .page-id-14 #element_avia_avia_age_2 label {
        position: absolute !important;
        top: 50px !important;
    }
    

    Best regards,
    Günter

    in reply to: Border around images on specific page #460218

    Hi!

    Thanks for the feedback.

    Replace the code above with:

    
    .page-id-3542 #main img {
        border: 5px solid red !important;
    }
    

    Cheers!
    Günter

    in reply to: Border around images on specific page #460191

    Hi youkendooit!

    Thank you for coming back.

    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-3542 img {
        border: 5px solid red !important;
    }
    

    Cheers!
    Günter

    in reply to: Remove related posts/products on product descriptions #460183

    Hi benduncalf!

    Thank you for using our theme.

    Can you give us a link to the page pls.
    You can post it here as a private reply.

    Regards,
    Günter

    in reply to: Remove related posts/products on product descriptions #460178

    Hey!

    Closed – posted twice.

    Cheers!
    Günter

    in reply to: Change theme name in source code #460170

    Hey brooks!

    Thank you for using our theme.

    You can try the following:

    – Export the settings of your child theme.
    – Open styles.css of the child theme and change Enfold Child to your name:

    
    Theme Name: Enfold Child
    

    – Import the settings.

    You probably will have to adjust the menu settings.

    You should test this in a test environment before doing it on live site.

    Cheers!
    Günter

    in reply to: Layout-Editor im Artikel #460159

    Hey Biggy!

    Danke, dass Du unser Theme verwendest.

    Es ist leider nicht möglich. Siehe dazu folgenden Post:

    https://kriesi.at/support/topic/deactivate-avia-framework-on-a-page-when-using-visual-composer/

    Regards,
    Günter

    in reply to: Contact form – error! #459012

    Hey 2funky!

    Thank you for using our theme.

    Currently the maximum size of a contact form field name is limited to 30 characters. You canincrease this by adding the following in functions.php at the end:

    
    function my_avf_form_el_name_length( $formID, $form_params)
    {
    	return 50;
    }
    
    add_filter( 'avf_form_el_name_length', 'my_avf_form_el_name_length',10, 2);
    

    Replace 50 with the value you need.

    Cheers!
    Günter

    Hey Doron!

    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:

    Try to use the following:

    
    .post-meta-infos time {
        float: right !important;
    }
    

    Best regards,
    Günter

    in reply to: Undorderd bullit list causes problems with icon list #447860

    Hi CelebrationEvents!

    Thank you for using our theme.

    Try to replace:

    
    .content ul li:before {
    content: “\e816″;
    font-family: “entypo-fontello”;
    margin-left: -20px;
    margin-right: 5px;
    color: #38b750 ;
    }
    
    

    with:

    
    .content ul li:before {
    content: "";
    font-family: “entypo-fontello”;
    margin-left: -20px;
    margin-right: 5px;
    color: #38b750 ;
    }
    

    Cheers!
    Günter

    in reply to: Generate new section as in the example #447855

    Hi Coco!

    Thank you for coming back.

    You can try to use the ajax portfolio or a masonry element. You probably will have to convert the text parts to an image.

    e.g.

    http://kriesi.at/themes/enfold/shortcodes/masonry-gallery/
    http://kriesi.at/themes/enfold/shortcodes/portfolio-shortcode/
    http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Best regards,
    Günter

    in reply to: Default Font Size #447851

    Hi Derek!

    Thank you for coming back.

    Goto Dashboard -> Enfold -> General Styling -> Tab Fonts and select a fontsize from the selectbox Default content font size.

    Best regards,
    Günter

    in reply to: Heading colors – Bold heading colors #447848

    Hi CelebrationEvents!

    Turn on the custom CSS class:

    http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Give each header a unique class or all headers you want to have the same style the same class.

    Then you can assign the colors and styling with CSS.

    Put it 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) and adjust the values as needed.

    If you have troubles create a page and we will assist you.

    Best regards,
    Günter

    in reply to: bbpress forum threaded replies not styled… #447843

    Hey nigdowser!

    Thank you for using our theme.

    Can you give us a link to this page please? Then we can check and give you the correct CSS. You can post it here as a private reply.

    Best regards,
    Günter

    Hi COLORIT!

    Thank you for using our theme.

    If you add a new form element, click on it there opens a modal window with a select box “Form Element Type”. There you can select the Form Element: check box

    Best regards,
    Günter

    in reply to: Footer background position #447804

    Hey alfaweb2!

    Thank you for coming back.

    If I understand you correctly, you want to change “footer” and “socket” divs.

    This is not possible out of the box. You can modify:

    themes\enfold\footer.php

    Cheers!
    Günter

    in reply to: Removing text from footer #447795

    Hi mattmosman!

    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:

    
    #socket span {
        display: none !important;
    }
    

    Regards,
    Günter

    in reply to: Border around easy slider's images #447793

    Hey!

    Please replace the code above and try the following:

    
    .page-id-367 ul.avia-slideshow-inner{
    border:5px solid #e1e1e1 !important;
    }
    

    Cheers!
    Günter

    in reply to: Enfold Masonry Product Code #447773

    Hi!

    Thank you for coming back.

    I’m not sure, what element you are using but the code for the elements you find in:

    themes\enfold\config-templatebuilder\avia-shortcodes\

    Look into the files like:

    masonry_entries.php
    product_grid.php
    productslider.php

    If you do not find, what you are looking for, can you give us a link to this page please? Then we can check and give you the correct file.

    Cheers!
    Günter

Viewing 30 posts - 2,581 through 2,610 (of 3,695 total)