Forum Replies Created

Viewing 30 posts - 3,271 through 3,300 (of 3,714 total)
  • Author
    Posts
  • in reply to: Can not edit anything on my website… Fatal error appears! #353720

    Hi Damian!

    Thank you for using our theme.

    Seems to be a php memory problem.

    Try to increase memory. Open wp-config.php and at the end before the line

    
    if ( !defined('ABSPATH') )
    	define('ABSPATH', dirname(__FILE__) . '/');
    

    add the following:

    
    define( 'WP_MAX_MEMORY_LIMIT', '256M' );
    

    It might be necessary to check with your hoster to increase memory.

    Also try also do deactivate all plugins and reactivate the plugins step by step and check the function of the theme. It might also be a plugin prioblem.

    Best regards,
    Günter

    in reply to: Different BG Colors every TR from Data Table #353716

    Hi jrmayer!

    Thank you for using our theme.

    Have a look a this post:

    https://kriesi.at/support/topic/data-table-questions/

    Maybe it helps to answer your question,

    If not, please send us a link to the page, so we can have a look.

    Best regards,
    Günter

    in reply to: Is it possible to view and edit a pages html? #353705

    Hi tjswarbs78!

    Thank you for using our theme.

    The best way to achieve this is with jQuery. I would give the buttons and images unique id’s or classes and after loading the page I would attach the “onclick” handler with jQuery.

    The js file with this code can be loaded in the WP action hook ‘wp_print_styles’.

    Regards,
    Günter

    in reply to: Form Button Colors #353687

    Hey!

    Glad I could help you to solve your request. Enjoy the theme.

    Feel free to come back with further questions.

    Best regards,
    Günter

    in reply to: Post Content #353588

    Hi!

    To change blog title you can use a filter. In functios.php add the following:

    
    add_filter('avf_title_args', 'my_title', 10, 2)
    
    function my_title($args, $post_id)
    {
    
    $args['title'] = 'your title';
    
    return $args;
    }
    

    Regards,
    Günter

    in reply to: Post Content #353575

    Hey om_eraydin!

    Thank you for using our theme.

    If you want to reduce the space between title and headline put in Enfold->Styles->QUICK-CSS field or custom.css and adjust the value:

    
    .single-post .content {
    padding-top: 30px !important;
    }
    

    To align the title and date put in Enfold->Styles->QUICK-CSS field or custom.css:

    
    
    #top .fullsize .template-blog .post-meta-infos {
        text-align: left !important;
    }
    
    #top .fullsize .template-blog .post-title
    {
    text-align: left !important;
    margin: 0 !important;
    }
    

    Regards,
    Günter

    in reply to: Form Button Colors #353546

    Hey!

    Try to put the following in Enfold->Styles->QUICK-CSS field or custom.css:

    
    .postid-104 .button {
    // put your styling code here
    }
    

    Regards,
    Günter

    in reply to: Add padding around logo in header #353530

    Hey valprice!

    Thank you for using our theme.

    You can put the CSS in Enfold->Styles->QuickCSS field or you can add it to file custom.css.

    Regards,
    Günter

    in reply to: White space below logo #353529

    Hey consult!

    Thank you for using our theme.

    Can you send us a link to the page please?

    Cheers!
    Günter

    in reply to: Gigantic gap between portfolio content and tags #353526

    Hi yuskydog!

    Thank you for using our theme.

    Can you send us a link to the page please so we can supply you with the correct CSS.

    Cheers!
    Günter

    in reply to: Remove tooltip on Images on Mouseover #353115

    Hey wienerpresswerk!

    Thank you for using our theme.

    Currently it is not possible to supress this out of the box. You have to change the following core file (this must be done after each update):

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

    Locate in line 229 the following:

    
    $title = trim($attachment_entry->post_title) ? esc_attr($attachment_entry->post_title) : "";
    

    Below this line write:

    
    $title = '';
    

    This should remove the popup.

    Regards,
    Günter

    in reply to: Change phone number colour of text in top bar #353105

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Form Button Colors #353104

    Hey labla!

    Thank you for using our theme.

    You can style the button with CSS. Put the code in custom.css or Enfold->Styles->QuickCSS field.

    Identify the page (each page has a unique class) and the button id.

    If you give us a link to a page we can give you the code for that page so you can do it for the other pages.

    Best regards,
    Günter

    in reply to: H1, letter spacing #353089

    Hi Munford!

    Thank you for using our theme.

    You can put the following in custom.css or Enfold->Styles->QuickCSS field.

    To remove spacing just on this page you can use:

    
    .page-id-49 .template-page .entry-content-wrapper h1{
    letter-spacing: 0 !important;
    }
    

    For all pages remove .page-id-49.
    Cheers!
    Günter

    in reply to: using do_action('ava_after_main_menu'); #353059

    Hey ariane1001!

    Thank you for using our theme.

    In functions.php you put the following code:

    
    do_action('ava_after_main_menu', 'my_personal_code', 10);
    
    function my_personal_code()
    {
       echo '.... write the code you want to output ....';
    }
    
    

    Best regards,
    Günter

    Hi Brad!

    Thank you for using our theme.

    Try the following:

    
    #top .no_margin.av_one_third {
        padding: 0 10px 20px !important;
    }
    
    #top .grid-sort-container{
       padding: 0 10px !important;
    }
    

    Regards,
    Günter

    in reply to: Change H2 #350015

    Hi!

    Thank’s for coming back.

    Try to replace the code above with:

    
    h1, h2, h3, h4, h5, h6 { text-decoration: none !important; }
    

    Best regards,
    Günter

    in reply to: Texts not aligned to pictiures #347225

    Hey!

    Yes, it will be overwritten in parent theme. Using the child theme is the recommended way. Or using QuickCSS field.
    As the containers are responsive, there is always a problem to have a ‘correct’ size. Best will be to have the image floating to left.

    Defined image sizes you find in functions.php line 92ff.

    Regards,
    Günter

    in reply to: How to remove Enfold WordPress Theme by Kriesi in footer #347216

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Disable Add to Cart button in a product category? #347132

    Hey ciptanegara!

    Thank you for using our theme.

    Probably the init hook is to early for the has_term function.

    Try the following:

    
    add_action('init','remove_add_to_cart_button', 1000);
    
    function remove_add_to_cart_button() {
                    remove_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button', 16);
    		remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }
    
    add_action( 'woocommerce_after_shop_loop_item', 'my_add_to_cart_button', 16 );
    add_action( 'woocommerce_single_product_summary', 'my_add_to_cart_button_single', 30 );
    
    function my_add_to_cart_button() {
         if ( ! has_term( 'free-gift', 'product_cat' ) ) {
                      avia_add_cart_button();
           }
    }
    
    function my_add_to_cart_button_single() {
         if ( ! has_term( 'free-gift', 'product_cat' ) ) {
                      woocommerce_template_single_add_to_cart();
           }
    }
    

    Best regards,
    Günter

    Hi mhiller!

    Thank you for using our theme.

    On the given page i found:

    
    .page-id-3518 h1 {
        font-weight: 900;
        line-height: 1.5;
    }
    

    This limits your changes to this page ID. If you want to change h1 for all pages:

    
    h1 {
        font-weight: 900 !important;
        line-height: 1.5 !important;
    }
    

    Best regards,
    Günter

    in reply to: Home disordered #347106

    Hey SLHetcie!

    Thank you for using our theme.

    When I open your link, the page seems to be OK. There is no sidebar defined. Check your settings for this page – maybe there is something wrong.

    If you still have problems pls give us an admin account to check.

    Cheers!
    Günter

    in reply to: How to remove Footer #347099

    Hey kristinmatysik!

    Thank you for using our theme.

    Have a look at this post:

    https://kriesi.at/support/topic/copyright-enfold-removal/

    This might help you.

    Come back with any further inquiries.

    Best regards,
    Günter

    in reply to: Various headings/sizes/colors of text in same text block #347096

    Hey GGLNetwork!

    Thank you for using our theme.

    I’m not sure, if I got your question correct, but to outline special words in a textblock you can surround the text with a HTML Tag span, create a class for that span and define the styling for this class in custom.css or Enfold->Styles->QuickCSS field like:

    
    <span class="your_unique_class_name">your text</span>
    

    And the CSS code (e.g.):

    
    your_unique_class_name{
    color: red !important;
    font-weight: bold !important;
    }
    

    I hope this will help you. Come back with any further questions.

    Best regards,
    Günter

    in reply to: Texts not aligned to pictiures #347088

    Hey!

    Thank you for using our theme.

    The image is centered above the text.

    As the image is smaller than the width of the text container the only possibility you have is to float the image to left:

    
    .avia_image.avia_image_team {
        float: left !important;
    }
    

    If you want this only on the given page:

    
    .page-id-21 .avia_image.avia_image_team {
        float: left !important;
    }
    

    Put the code in custom.css or Enfold->Styles->QuickCSS field.

    Cheers!
    Günter

    in reply to: Removing 'Powered by Enfold WordPress Theme' #347083

    Hi nrosella!

    Thank you for using our theme.

    Have a look at:

    https://kriesi.at/support/topic/copyright-enfold-removal/

    This should help to solve your problem.

    Cheers!
    Günter

    in reply to: Unable to install theme on wp #343417

    Hi Malcolm!

    Thank you for using our theme.

    Try to upload the theme via ftp.

    Unpack the zip file and copy the folders enfold and enfold-child to the WP directory wp-content/themes.

    Cheers!
    Günter

    in reply to: Remove nav menu on single page header, but not logo #343402

    Hi!

    Thanks for coming back.

    You have to replace the ID with .page-id-2505 or .woocommerce-cart like:

    
    .page-id-2505 .main_menu {
        display: none !important;
    }
    
    or
    
    .woocommerce-cart  .main_menu {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Modify the blog entry template #343338

    Hey!

    Thank’s for coming back.

    You find the php files in the folder enfold/includes.

    Normaly it should be loop-index.php, but it might also be loop-portfolio-single.php.

    For more information about custom templates have a look at:

    http://codex.wordpress.org/Page_Templates

    Cheers!
    Günter

    in reply to: Sequential data loading in tabs #343326

    Hi Vital!

    Thank you for using our theme.

    Out of the box this is not possible. This requires some major changes, but this is customisation and bejond the scope of the support forum.

    Cheers!
    Günter

Viewing 30 posts - 3,271 through 3,300 (of 3,714 total)