Forum Replies Created

Viewing 30 posts - 2,821 through 2,850 (of 3,706 total)
  • Author
    Posts
  • in reply to: removing […] from excerpts #413104

    Hey!

    Use the following code:

    
    function change_excerpt( $text )
    {
    	$pos = strrpos( $text, '[');
    	if ($pos === false)
    	{
    		return $text;
    	}
    	
    	return rtrim (substr($text, 0, $pos) ) . '....';
    }
    add_filter('get_the_excerpt', 'change_excerpt');
    

    Cheers!
    Günter

    in reply to: removing […] from excerpts #413094

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Sortable Portfolio – Style the categories/filter list? #413089

    Hey!

    Thank you for coming back.

    To make the background transparent:

    
    .home #js_sort_items {
        background: none repeat scroll 0 0 transparent !important;
    }
    

    or to a special color:

    
    .home #js_sort_items {
        background: none repeat scroll 0 0 gray !important;
    }
    

    To customize the rectangles (e.g. Commercial):

    
    .home #js_sort_items a.commercial_sort_button {
        background: none repeat scroll 0 0 green !important;
        padding: 3px 8px !important;
    }
    

    you have values like:

    all_sort_button
    industrial_sort_button
    leisure_sort_button,…..

    The active button has “active_sort”, that means:

    
    .home #js_sort_items a.commercial_sort_button.active_sort {
        background: none repeat scroll 0 0 green !important;
        padding: 3px 8px !important;
    }
    

    Feel free to come back and we will help you with further styling.

    Best regards,
    Günter

    in reply to: Sortable Portfolio – Style the categories/filter list? #413043

    Hi ActionPress!

    Thank you for using our theme.

    As a quick help:

    To remove the /:

    
    #js_sort_items .text-sep {
        display: none !important;
    }
    

    To change the background color:

    
    #js_sort_items a {
        background: none repeat scroll 0 0 green;
    }
    

    Each category has a unique class, e.g. html_sort_button in the demo page at kriesi.at:

    
    #js_sort_items a.html_sort_button {
        background: none repeat scroll 0 0 red;
    }
    

    To provide you with a more specific code we would need a link to your page. You can post it as a private reply here.

    Best regards,
    Günter

    in reply to: removing […] from excerpts #413035

    Hi!

    Thank you for coming back.

    Replace the code above with the following:

    
    function change_excerpt( $text )
    {
    	$pos = strrpos( $text, '[');
    	if ($pos === false)
    	{
    		return $text;
    	}
    	
    	return rtrim (substr($text, 0, $pos) );
    }
    add_filter('get_the_excerpt', 'change_excerpt');
    

    Best regards,
    Günter

    in reply to: List problem #412994

    Hi!

    Glad I could help you. Enjoy the theme and feel free to come back with any problems you have.

    Cheers!
    Günter

    Hi!

    Glad you found a solution.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Add another link in footer #412911

    Hi!

    Replace the line above with something like:

    
    			<?php  $mylink = ' - Design: <a href="http://ujdesign.com" target="_blank">ujdesign</a>';  ?>
                            <span class='copyright'><?php echo $copyright . $kriesi_at_backlink . $mylink; ?></span>
    

    Regards,
    Günter

    in reply to: List problem #412909

    Hi!

    Check my first reply pls. !!!!

    Best regards,
    Günter

    in reply to: List problem #412899

    Hey SecretDiamonds!

    Thank you for using our theme.

    Did you fix the problem? On FF I cannot reproduce the problem, even when I make the screen smaller.

    But I could reproduce it in Chrome.

    Try the following:

    In custom.css or Enfold->Styles->QuickCSS put the following:

    
    #tab-id-1-container ul {
      list-style-position: inside !important;
    }
    

    Cheers!
    Günter

    in reply to: Please help : Adding image on header #412896

    Hi zmkstudio!

    Thank you for using our theme.

    If you are using WPML you can use the following function to determin the current active language:

    
    icl_get_current_language()
    

    You can put the output of the images in an if clause like:

    
    if(icl_get_current_language() == 'en'
    {
       ///  output for english
    }
    else
    {
       ///   output for other language
    }
    

    Come back, if you need more assistance.

    You can post the codesnippet here and we can give you the correct snippet to insert.

    Cheers!
    Günter

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

    Hey!

    Thank you for using our theme.

    The removal of the line breaks is a known and intended issue.

    Did you try to add a text block element and then a button element? This should work.

    If you enable the custom CSS class (http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/) you can add your own CSS for extra styling.

    Come baclk, if you need more assistance with that.

    Cheers!
    Günter

    in reply to: Help intercepting the WP_Query #412882

    Hi ShortieD!

    Thank you for coming back.

    You can have a look in the folder enfold\config-templatebuilder\avia-shortcodes\.

    There you find the code for the elements of the ALB or the shortcodes you can insert with the editor.

    Look for the appropriate element and check, how your plugin can be integrated.

    Sorry, but it is out of the scope of the support forum. It is not possible for us to support every 3-rd party plugin.

    If you have any problems concerning the code of our elements we will be happy to assist you – feel free to come back.

    Best regards,
    Günter

    in reply to: Reverse the arrow icons in Partner/Logo Element #412878

    Hi mgb913!

    Thank you for using or theme.

    The easiest way would be to modify the core file
    enfold\config-templatebuilder\avia-shortcodes\logoslider.php line 506ff

    
    				$html .= 	"<a href='#prev' class='prev-slide' ".av_icon_string('prev_big').">".__('Previous','avia_framework' )."</a>";
    				$html .= 	"<a href='#next' class='next-slide' ".av_icon_string('next_big').">".__('Next','avia_framework' )."</a>";
    
    

    Hope, this will help you.

    Best regards,
    Günter

    in reply to: Add another link in footer #412871

    Hey hsipkin!

    Thank you for using our theme.

    You have to modify the core file enfold\footer.php line 100:

    
     <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
    

    Cheers!
    Günter

    in reply to: Customise Side bar #410646

    Hey!

    1) Put 2 combo widgets in the side bar for blog. Each widget has a unique ID, so we can help you to with the CSS to hide the tabs you do not need.

    2) The file is in your WP folder -> wp-content -> themes -> Enfold ……..

    To see the ID’s of categories in the backend you can usa a plugin like:

    https://wordpress.org/plugins/wp-show-ids/

    Come back, when you are ready and need our help again.

    Best regards,
    Günter

    in reply to: Header Error #410631

    Hi robamped!

    Thank you for using our theme,.

    I think you mean the black border at the top with the 2 social icons.

    This is a setting in Enfold-> header -> Extra Elements —-> Select box “Header Social Icons”.

    Hope, this will help you. Feel free to come back.

    Cheers!
    Günter

    in reply to: Accordion Content Element Customization #410624

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    Hey Dingsbums!

    Thank you for using our theme.

    There will be an update to 3.1 in the next few days. Please update to the latest version of Enfold and WooCommerce.

    If the problem still exists, please give us a temporary admin account so we can check – you can post it here as a private reply.

    Best regards,
    Günter

    in reply to: Blog Font Size #410615

    Hi jguinn1!

    Thank you for using our theme.

    If you want to change the font size e.g. of the content of the post:

    
    .blog article p {
        font-size: 25px !important;
    }
    

    Put this in custom.css or Enfold -> General Styling -> Quick CSS field and adjust the value.

    If you wanrt to change other parts of the blog, pls specify more clearly and perhaps you can send us a link to the page so we can provide you with the correct CSS styles.

    Best regards,
    Günter

    in reply to: Grid row border size #410483

    Hi!

    Glad to hear that.

    Have a nice day.

    Cheers!
    Günter

    in reply to: enfold one page #410458

    Hi alfaweb2!

    Thank you for coming back.

    With the new release of Enfold 3.1 there is a new demo file included for a one page portfolio.

    Maybe this will help you to build up your site.

    The release is planned in the next days.

    Best regards,
    Günter

    in reply to: kriesi copyright still there #410455

    Hi Jenny!

    Thank you for coming back.

    Add [nolink] to your copyright. This should remove the backlink.

    Cheers!
    Günter

    in reply to: Colour Changes: Meta Colour and H1, H2, H3 colours #410451

    Hey!

    It should be released tomorrow, Kriesi informed us right now.

    Sorry for the delay.

    Cheers!
    Günter

    in reply to: Reduce height of coloured section #410403

    Hey Sophieja23!

    Yes, there is a min-height. To change it use the following and adjust the values:

    
    .page-id-172 #av_section_1 {
        height: 100px !important;
        min-height: 15px !important;
    }
    

    Cheers!
    Günter

    in reply to: Sidebar widgets background colour #410400

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Text box padding #410398

    Hey Ivana!

    Thank you for coming back.

    Try the following and adjust the values:

    
    .page-id-8 .post-entry-8 section.av_textblock_section div {
        padding-bottom: 2px !important;
        padding-top: 2px !important;
    }
    

    If this is not enough, you can also try to add:

    
    .page-id-8 .post-entry-8 section {
        margin-bottom: -20px !important;
    }
    

    Cheers!
    Günter

    in reply to: Center Picture In Footer column #410395

    Hi markzarak!

    Thank you for coming back.

    Try the following:

    
    #footer #text-6 .textwidget {
        margin: 0 auto !important;
        width: 243px !important;
    }
    

    Regards,
    Günter

    in reply to: How to change Main Menu navigation back to original #410389

    Hi Boe!

    Thank you for using our theme.

    You can change the style of the menu in:

    Dashboard -> Appearence -> Menus

    When you open the menu (e.g. plant) you find a selectbox ‘Menu Style’.

    Cheers!
    Günter

    in reply to: tabs and accordions – no bullets apprearing #409963

    Hey!

    Thank you for coming back.

    Yes, click private reply and at will be only visible to moderators and you.

    Regards,
    Günter

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