Forum Replies Created

Viewing 30 posts - 2,821 through 2,850 (of 3,742 total)
  • Author
    Posts
  • in reply to: Disable Contact Form and all styles that go with it. #417066

    Hey Chad!

    Thank you for using our theme.

    To completly remove the contact form delete the following file:

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

    The CSS you find in:

    enfold\css\shortcodes.css line 1325 – 1443

    Look for:

    
    /* ======================================================================================================================================================
    Contact Form
    ====================================================================================================================================================== */
    
    

    Best regards,
    Günter

    in reply to: Increase Font Size on Icon Box #417058

    Hi djshortkut!

    Thank you for coming back.

    Use the following and adjust the values:

    
    .iconbox .entry-content-header h3 {
        font-size: 25px !important;
    }
    
    .iconbox .iconbox_content_container {
        font-size: 25px !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Reducing the height of Header Title and Breadcrumbs #417050

    Hey emin!

    Thank you for coming back.

    1 + 2) Use the following:

    
    #main .title_container {
        height: 49px !important;
    }
    
    .breadcrumb .breadcrumb-trail .trail-before {
        display: none !important;
    }
    

    3) Open the page and in the layout metabox Title Bar Settings select “hide both”. I did that for you already. You can overwrite the general enfold settings for every page here.

    Regards,
    Günter

    in reply to: Use other icons in the theme #414365

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: file to change locations of breadcrumbs #414335

    Hey!

    Thank you for coming back.

    The breadcrumbs HTML structure is in enfold\functions-enfold.php line 312ff and 348ff:

    
    	$defaults 	 = array(
    
    			'title' 		=> get_the_title($id),
    			'subtitle' 		=> "", //avia_post_meta($id, 'subtitle'),
    			'link'			=> get_permalink($id),
    			'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>",
    			'class'			=> 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    			'breadcrumb'	=> true,
    			'additions'		=> "",
    			'heading'		=> 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    		);
    
    ..........
    
    		if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    		$html = str_replace('{class}', $class, $html);
    		$html = str_replace('{title}', $title, $html);
    		$html = str_replace('{additions}', $additions, $html);
    		$html = str_replace('{heading}', $heading, $html);
    

    Cheers!
    Günter

    in reply to: Child theme #414331

    Hey!

    Thank you for coming back.

    Have a look at http://codex.wordpress.org/Child_Themes. This will give you some background information.

    Cheers!
    Günter

    in reply to: Hook to change color scheme #414329

    Hey adetec_ing!

    Thank you for using our theme.

    Have a look at enfold\includes\admin\register-dynamic-styles.php line 10.

    There is a hook

    
    $options 					= apply_filters('avia_pre_prepare_colors', $options);
    

    In this file the options set in the backend are prepared for

    enfold\css\dynamic-css.php.

    Maybe this will help you.

    Regards,
    Günter

    in reply to: Change copyright info – remove "Enfold Child Theme…" #414323

    Hi!

    Glad we could help you. Enjoy the theme and have a nice day.

    Cheers!
    Günter

    in reply to: hide colored section on mobile issue #414320

    Hey!

    Thank you for coming back.

    Try the following:

    
    @media only screen and (max-width: 767px) {
    .home #after_section_2 {
        display: none !important;
    }
    }
    

    Cheers!
    Günter

    in reply to: Add H1 Tag to Category Pages #414315

    Hi kls1138!`

    Thank you for using our theme.

    You have to modify enfold\archive.php. Look at line 28-30:

    
                       <div class="category-term-description">
                            <?php echo term_description(); ?>
                        </div>
    

    When using a child theme copy archive.php from parent theme fiolder into enfold-child folder and modify this file. This will prevent overriding your changes with the next update.

    Replace this with:

    
    <?php  if( is_category() )
    {
    		echo '<h1>' . single_cat_title('',false) . '</h1>';
    }
    else
    {   ?>
                        <div class="category-term-description">
                            <?php echo term_description(); ?>
                        </div>
    <?php
    }	?>
    

    Best regards,
    Günter

    in reply to: Adding JS to a button #414287

    Hi Sasolini!

    Thank you for coming back.

    This is not possible out of the box, because the button is a

    
    <a href ...> 
    

    You need to modify

    \enfold\config-templatebuilder\avia-shortcodes\buttons.php line 276ff.

    Add a unique custom class to the button and add an on_click event with jQuery to that class.

    Best regards,
    Günter

    in reply to: Child theme #414283

    Hey t3lgroup!

    Thank you for using our theme.

    Activate your child theme.
    Go to Enfold-child Theme Options -> Import/Export. You’ll see a blue button which says “Import Parent Theme Settings”.

    This should import all your settings from the parent theme.

    Conerning translation: Did you modify the language file with PoEdit:

    enfold\lang\da_DK.po?

    This would be the best way to make the translation.
    http://poedit.net/ – it’s a free application.

    You put your translated files in
    enfold-child\lang\da_DK.po
    enfold-child\lang\da_DK.mo

    Cheers!
    Günter

    in reply to: Spacing Between Elements (Horizontal) #414272

    Hey japmediaent!

    Thank you for using our theme.

    This content had been posted twice. I will close this topic and we will answer the other one.

    Cheers!
    Günter

    in reply to: HTML Back Link with "Button" #414271

    Hi Mac_Gyver!

    Thank you for using our theme.

    Out of the box – no, because the button is realized with a

    
    <a href="..."> tag
    

    You need to modify enfold\config-templatebuilder\avia-shortcodes\buttons.php line 276 ff.

    You can add a unique custom CSS class to the button and add an ‘on_click’ event with jQuery to this class

    Cheers!
    Günter

    in reply to: Change copyright info – remove "Enfold Child Theme…" #413864

    Hi!

    You have to enter the html code like:

    
    Powered by <a href="http://xxx.com" target="_blank">Verity Web Solutions</a>
    

    Best regards,
    Günter

    in reply to: Custom color for each element problem #413856

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: where is the content of QUICK CSS stored #413849

    Hey!

    Thank you for coming back.

    This input field is stored in the options array for Enfold (see enfold\framework\php\class-superobject.php) and is appended at the end of C:\xamppenfold\css\dynamic-css.php.

    Cheers!
    Günter

    in reply to: Issue with color section and sidebar #413817

    Hey ganjou!

    Thank you for using our theme.

    The color section is a fullwidth element and pushes the sidebar down – this is the standarb behaviour.

    If you want to have a sidebar above, you must use a 1/1 layout element with a wiget content element.

    Regards,
    Günter

    in reply to: Child theme change included files #413808

    Hey!

    Try the following:

    Put your modified loop-index.php in enfold-child/includes/loop-index.php

    The original functions-enfold.php does not need to be copied – it is loaded by the parent theme from the parent theme folder.

    If you do not need any other functions, that’s it.

    WP should load your new loop-index.php now.

    Best regards,
    Günter

    Hey lobstahhhhhhh!

    Thank you for using our theme.

    This is currently only possible by modifing the core files, e.g.

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

    If you go to line 535ff:

    
    $output .= "<div id='av-masonry-".self::$element."' class='av-masonry noHover av-{$size}-size av-{$this->atts['gap']}-gap av-hover-overlay-{$this->atts['overlay_fx']} av-masonry-col-{$this->atts['columns']} av-caption-{$this->atts['caption_display']} {$this->atts['container_class']}' >";
    
    

    After this you can insert your headline, e.g.:

    
     <h3>Sort by location here: </h3>
    

    Best regards,
    Günter

    in reply to: Change copyright info – remove "Enfold Child Theme…" #413788

    Hey veritywebsolutions!

    Thank you for using our theme.

    In functions.php of the child theme insert at the bottom:

    
    function my_backlink ( $link )
    {
    	return '';
    }
    
    add_filter( 'kriesi_backlink', 'my_backlink', 10, 1);
    

    Best regards,
    Günter

    in reply to: How to add one single border with 0 px padding #413622

    Hi jockejansson!

    Thank you for using our theme.

    In custom.css or Enfold->General Styling->QuickCSS try to put the following:

    
    #header {
        border-bottom: 5px solid yellow !important;
    }
    

    If this is not what you want, pls give us a link to your page so we can check for the correct CSS. You can post it as a private link here.
    Regards,
    Günter

    in reply to: Child theme change included files #413611

    Hey!

    Thank you for coming back.

    If you want to change a tempate file, you have to copy the original file to the child (same directory structure) and modify this file
    (http://codex.wordpress.org/Child_Themes).

    In your case: enfold-child/includes/loop-page.php

    Best regards,
    Günter

    in reply to: Display Woocommerce price and sale price dynamically #413606

    Hey danneeroy!

    Thank you for using our theme.

    I think, you mean: http://kriesi.at/themes/enfold-shop/.

    This is done by WooCommerce. When editing a product you can enter a regular and a sale price (this can even be limited to a time period).

    Hope, this will help you.

    Cheers!
    Günter

    in reply to: How to delete logo-link on homepage? #413601

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Child theme change included files #413596

    Hey designspecialisten!

    Thank you for using our theme.

    Functions.php of the child theme is loaded BEFORE functions.php of the parent theme, which loads the avia framework and other stuff needed for the template files.

    Add the following to your functions.php of the child theme:

    
    function my_setups_needed()
    {
    	//	add all your setups or include files from the child theme
    }
    	
    add_action( 'after_setup_theme', 'my_setups_needed', 100 ); 
    

    This hook is called right after functions.php of the parent theme had been loaded.
    http://codex.wordpress.org/Plugin_API/Action_Reference/after_setup_theme

    Best regards,
    Günter

    in reply to: Child theme change included files #413586

    Hey designspecialisten!

    Thank you for using our theme.
    This content is posted twice.

    I close this topic and answer to the first post.

    Regards,
    Günter

    in reply to: Unstick topbar without Shrinking Header #413539

    Hey!

    Enjoy the theme and feel free to come back when having any problems.

    Regards,
    Günter

    in reply to: Use sidebar and "color section" at the same time #413534

    Hi MTortch!

    Thank you for cuming back.

    Color sections are full width elements and push down the sidebar.

    If you want to use a sidebar – you only can use the 1/1 – 4/5 layout elements.

    I do not know, what you want to do, because I cannot open the link you gave us. Maybe we can assist you with some CSS to style your layout element.

    Regards,
    Günter

    in reply to: Line Breaks being removed and Image alignment. #413515

    Hey!

    Thank you foir coming back.

    Can you send us a link to your page so we can check for the CSS? You can post it here as a private link.

    Regards,
    Günter

Viewing 30 posts - 2,821 through 2,850 (of 3,742 total)