Forum Replies Created

Viewing 30 posts - 2,491 through 2,520 (of 3,695 total)
  • Author
    Posts
  • in reply to: WPML multi-currency in header widget area problem #602530

    Hi webcrewbg!

    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:

    
    header .widget {
        display: block !important;
        left: auto !important;
        line-height: 19px !important;
        padding: 0 !important;
        right: 10px !important;
        top: 10px !important;
        width: 80px !important;
    }
    
    header .widget .wcml_currency_switcher li {
        display: inline-block !important;
        float: none !important;
    }
    
    

    Due to the HTML structure I placed the selector above the flag.

    Best regards,
    Günter

    in reply to: Einträge Slider in Widget #602500

    Hi anja!

    Danke dass Du unser Theme verwendest.

    Aktiviere dazu einmal den ALB Debug Mode:

    Erstelle dann eine neue Seite mit dem Einträge Slider. Im Fenster darunter befindet sich dann der Shorcode.
    Den kannst Du in ein Plain Text Widget eintragen.

    Best regards,
    Günter

    in reply to: Overlapping images in Portfolio and Masonry Grid #602485

    Hi jocelynstcyr!

    Thank you for using our theme.

    I do not see any problem on the link above.

    Did you solve the problem?

    If not, can you point out the problem more clearly (with a screenshot if possible).

    Best regards,
    Günter

    in reply to: Custom field in archives #602479

    Hi marximo.lider!

    Thank you for using our theme.

    I’m not sure, what your question is and how we can help you?

    The code for the portfolio loop you find in
    enfold\config-templatebuilder\avia-shortcodes\portfolio.php line 455ff.

    Cheers!
    Günter

    Hey Andreas!

    Thank you for coming back.

    I have added a filter to the core, will be in the next update.

    At the moment you have to change the core file enfold\config-templatebuilder\avia-shortcodes\helper-mailchimp.php line 284:

    replace

    
    return $headers;
    

    with

    
    return apply_filters( 'avf_mailchimp_headers', $headers );
    

    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_avf_mailchimp_headers( $headers )
    {
    	$headers['Content-type'] = 'charset=utf-8';
    	return $headers;
    }
    add_filter( 'avf_mailchimp_headers', 'my_avf_mailchimp_headers', 10, 1 );
    

    Regards,
    Günter

    in reply to: portfolio items navigation (next / prev) is suddenly gone #602452

    Hey!

    Thank you for coming back.

    Yes, the navigation is suppressed when you use fullscreen elements like fullwidth slider, layerslyder because they overlap the navigation buttons.

    Regards,
    Günter

    Hi!

    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-753 textarea#avia_7_1 {
        height: 35px !important;
    }
    

    This limits the changes to this page only.

    Cheers!
    Günter

    in reply to: Instagram Widget: Button Text Color "Follow Us!" #601915

    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.

    Cheers!
    Günter

    in reply to: add code after the first post in an archive/category/tag #601907

    Hey!

    Thank you for using our theme and coming back.

    If you want to change template files have a look in folder enfold\includes\

    There you find loop-…. files for page content.

    Hope, this information will help you.

    Best regards,
    Günter

    Hi!

    Thank you for coming back.

    I had a long investigation in the code of Enfold..

    The problem is, that the cart form action in all other languages except english point to http (e.g. http://lepure.com/de/einkaufswagen/) and not to https ( https://lepure.com/cart/ ) and this breaks the ajax call.

    It seems to be a plugin problem – because this is a pure WC core function wc_get_cart_url() to get the cart – url. It works fine for me both http and https with enfold, WPML.

    Try to dactivate all plugins ecxept WC and WPML Multilingual CMS and reactivate one by one and check, when the error occurs.

    Best regards,
    Günter

    • This reply was modified 8 years, 8 months ago by Günter.

    Hey!

    Thank you for coming back.

    I would say, that the mobile anchor is not consistent, because in the HTML you have the image first filling out the complete width and then the <span> tag to follow below – probably because mobiles handle a-tags different.

    Try the following (works in FF and Chrome):

    Replace

    
    <div style="position:relative; width:225px;">
    

    with

    
    <div style="position:relative; width:225px; display: inline-flex;">
    

    Regards,
    Günter

    in reply to: Display menu description #601840

    Hey mohamed911!

    Thank you for using our theme.

    The easiest way for a tooltip is to add a text to the title attribute (below the url field) of the menu “Our Store”.

    This is a default popup supported by most modern browsers when hovering over the button.

    Regards,
    Günter

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

    Hey!


    @komerezo

    Try the following code:

    
    $categories = get_the_category($the_id);
    $skip_ids = array( 15, 20 );			//	enter the id's to skip
    $first = true;
    
    if( ! empty( $categories ) )
    {
    	foreach($categories as $category) 
    	{
    		if( ! in_array( $category->term_id, $skip_ids ) )
    		{
    			if( $first )
    			{
    				echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    				$first = false;
    			}
    			$category = '<a href="'.get_category_link( $category->term_id ).'">'.$category->cat_name.'</a>';
    			echo '</span><span class="text-sep text-sep-cat">/</span>';
    		}
    	}
    }
    

    Regards,
    Günter

    in reply to: Child theme not showing in theme directory #601446

    Hey!

    Thank you for coming back.

    Did you check line 142 in child/style.css and correct the syntax erroe there?

    If you made changes to styles.css in parent -> these are lost. Copy them to child/style.css

    I’m not sure about QuickEdit CSS -> Copy the content from parent to child.

    Try to add !important to the stylings you made.

    Regards,
    Günter

    in reply to: Whitespace between text and icon #601439

    Hi michael_world2cycle!

    Thank you for using our theme.

    Can you provide us a link to the page, where you use this event list in HTML? With the screenshot it is imposible for us to find the correct CSS to style this problem.

    Regards,
    Günter

    in reply to: Tooltips with click – again #601437

    Hey borkosavic!

    Thank you for using our theme.

    In version 3.5 it will be line 822 in enfold\config-templatebuilder\avia-template-builder\assets\js\avia-modal.js

    Cheers!
    Günter

    in reply to: Author box after post #601431

    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.

    Regards,
    Günter

    in reply to: Smaller "clickable area" in header main menu #601430

    Hey ping-pong!

    Thank you for using our theme.

    The login credentials you posted do not work. Please check them.

    Cheers!
    Günter

    in reply to: only display the title of the posts in category #601428

    Hi yhzkiki!

    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:

    
    .archive article .entry-content {
        display: none;
    }
    

    Best regards,
    Günter

    in reply to: Add submenu item to single product page #601420

    Hi pannosk!

    Thank you for using our theme.

    Out of the box this is not possible. The theme is designed to have same header and menus on all pages.

    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.

    Best regards,
    Günter

    in reply to: linking webpages to table data #601396

    Hi phillipikoo!

    Thank you for using our theme.

    You can put the html code in the table cell, e.g.

    
    <a href="www.google.com">Link to Google</a>
    

    You can find the permalink of the page in the WP edit page.

    Regards,
    Günter

    in reply to: blog Title Above Image #601383

    Hi creatiffco!

    Thank you for using our theme.

    With CSS this is not possible.

    The problem is the HTML structure.

    It would be possible to move the headline with jQuery, but this breaks the complete design of the page.

    Unfortunately that kind of customisation is out of the scope of our forum and needs to be done by a freelance developer.

    Regards,
    Günter

    in reply to: Cart Button Hidden #601372

    Hi!

    Thank you for coming back.

    At the moment – no. But we are working on a more user friendly solution.

    Best regards,
    Günter

    in reply to: How To Rearrange Services (Products) #601368

    Hi Nathan!

    Thank you for using our theme.

    Have a look at this post:

    How To Customize Product Sorting in WooCommerce

    I think, this will answer your question.

    Regards,
    Günter

    in reply to: Add content before a post / archive page #601364

    Hey!

    Thank you for coming back.

    You must use the following filter:

    http://wordpress.stackexchange.com/questions/39918/wordpress-hooks-filters-insert-before-content-or-after-title

    The code for you must look like:

    
    function add_my_personal_text( $content ) {
       $new = '';
      if ( has_filter( 'wpproads_api_display_adzone' ) ){
      new  = apply_filters( 'wpproads_api_display_adzone', array(
        'name' => 'Your Theme unique Adzone name',
        'description' => 'Your adzone description',
        'size' => '300x250'
      ));
    
     $content =  $new. $content;
     return $content;
    }
    
    add_filter( 'the_content', 'add_my_personal_text' );
    

    Best regards,
    Günter

    in reply to: Problem with responsive title #601334

    Hi asterios!

    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:

    
    .page-id-15411 tr.avia-heading-row th {
        white-space: pre-wrap !important;
    }
    

    Regards,
    Günter

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

    Hey!

    Thank you for coming back.

    Try to replace the code above with:

    
    .home .avia-builder-el-8 {
        max-height: 200px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    

    Best regards,
    Günter

    in reply to: Masonry Gallery Bug ? oder Setting wrong? #601269

    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.

    Regards,
    Günter

    in reply to: Masonry Gallery sort order ? #601265

    Hey!

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

    Regards,
    Günter

    in reply to: Template customization #601264

    Hey mika2000!

    Thank you for using our theme.

    The standard footer template used by WP is enfold\footer.php.

    If you want to have seperate footers you have to split the output here.

    Depending on the changes either with if(…) else (…) or you create subtemplates from that one and include these in a modified version of this file.

    Regards,
    Günter

Viewing 30 posts - 2,491 through 2,520 (of 3,695 total)