Forum Replies Created

Viewing 30 posts - 5,761 through 5,790 (of 9,352 total)
  • Author
    Posts
  • in reply to: Image overlay with icon fonts? #208886

    Hey!

    You must replace “Buy Now!” with the icon font character code. The easiest way to get the char code is to use the “icon shortcode” window and then hover over the icons and read the tooltip ( http://www.screenr.com/MYsN ). You can ignore the \u prefix but you need to copy/remember the eXXX code and then insert it into your stylesheet/css code.

    Cheers!
    Peter

    in reply to: Enfold Child Theme #208884

    Hey!

    Sure – you can use following css code

    
    .page-id-15  #av_section_1 .post-entry{
    background: rgba(255,255,255,0.5);
    }
    

    The last value must be between 0 and 1 and determines the opacity.

    Cheers!
    Peter

    in reply to: About post format. #208883

    Hi Tommy!

    Open up single.php and delete

    
    
                            //wordpress function that loads the comments template "comments.php"
                            comments_template( '/includes/comments.php');
    

    If you want to insert a contact form below the post content you can i.e. use the do_shortcode() function: http://codex.wordpress.org/Function_Reference/do_shortcode to execute the contact form shortcode.

    Regards,
    Peter

    in reply to: Contact Form – Setting Reply To Email #208881

    Hi!

    I can’t modify the theme files and debug the issue (because I don’t have admin rights) but you can try to use this code to use the email field address as mail sender.

    
    add_filter('avf_form_from', 'avia_change_from', 10, 3);
    function avia_change_from($from,$new_post,$params){
    $from = $new_post['e-mail_1'];
    return $from;
    }
    

    – insert the code at the very bottom of functions.php. If it doesn’t work please give me admin rights – otherwise I can’t debug the code.

    Best regards,
    Peter

    in reply to: Straighting-up Enfold Breadcrumbs #208874

    Hi hellovlad_!

    1) The breadcrumb doesn’t take care of the menu items and the menu order does not affect the breadcrumb hierarchy. See: https://kriesi.at/support/topic/breadcrumb-navigation-2/

    2) I recommend to rename the “Portfolio 3 Column Ajax” page to “Portfolio” – then the structure should be “You are here: Home / Portfolio / Portfolio Item Name.”. If you want to remove the “Home” link insert following code at the bottom of functions.php

    
    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    $args['show_home'] = false;
    return $args;
    }
    

    Then the breadcrumb should just show the pages (“You’re here: Portfolio / Portfolio Item Name”).

    Best regards,
    Peter

    Hi Monsoon!

    Please try to insert following code at the bottom of function.php. You can use DESC if you need a descending order

    
    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    

    Regards,
    Peter

    Hey BelIblis!

    No, we’re not aware of such an incompatibility issue (in fact you’re the first user who reports it). I suggest to increase the allocated php memory first before you report this bug to Yoast. Open up wp-config.php and insert following code

    
    define( 'WP_MEMORY_LIMIT', '128M' );
    

    http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Best regards,
    Peter

    Hi!

    1) Ok, maybe you’re using another excerpt option. Please search for

    
    $prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
    

    and replace it with

    
    $prepare_excerpt = !empty($entry->post_excerpt) ? do_shortcode($entry->post_excerpt) : avia_backend_truncate(do_shortcode($entry->post_content), apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true, '');
    

    If you always want to show the full content (including html, etc.) replace it with

    
    $prepare_excerpt = do_shortcode($entry->post_content);
    

    3) But the category page for WODS would be http://crossfitcaldwell.com/category/wod/ and not http://crossfitcaldwell.com/wods/
    The “archive template” is a special template which lists the latest posts of all categories. If you want to link to the category page just go to Appearance > Menus and add the “WODS” category item to the main menu.

    Regards,
    Peter

    in reply to: Plugin question #208864

    Hey!

    Try following code

    
    .page-restrict-output {
    width: 1210px;
    margin: auto;
    }
    
    .page-restrict-output form, .page-restrict-output p, .page-restrict-output form input{
    text-align: center !important
    }
    

    Best regards,
    Peter

    in reply to: Set post length in 'Archive' #208860

    Hey graphicsplus!

    Please insert following code into the functions.php file

    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(is_archive())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    Best regards,
    Peter

    in reply to: Icon Size #208853

    Hi bentkd!

    Yes, you can use following code

    
    .avia-icon-list .iconlist_icon {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 23px;
    }
    

    to re-size the list icons. The first three values must be set to the same px value (i.e. 40px). The last value can vary.

    Best regards,
    Peter

    in reply to: Different Layerslider Display for Mobile & Desktop #208850

    Hey!

    Glad you found a solution :)

    Regards,
    Peter

    in reply to: Gallery #208848

    Hi MtnStreamGroup!

    Yes, the lightbox will show the image title, description, etc. – if you want to hide this information please add following code into the quick css field

    
    div div.ppt {
    display: none !important;
    }
    

    Cheers!
    Peter

    in reply to: Call to Action Button with Adv. Layer Slider #208833

    Hey jliamgrist!

    I suggest to use the “button shortcode” instead. Go to a page or post editor page and use the “Magic wand” shortcode generator to create the button shortcode. Then insert it into the html field of the LayerSlider. The LayerSlider preview won’t show the shortcode (you’ll see the shortcode text) but it will display the shortcode on the front end.

    Cheers!
    Peter

    in reply to: Remove Line at Top of Page #208825

    Hey AndrewDelaware!

    Please insert this code into the quick css field

    
    #top.avia-blank #main .container_wrap:first-child {
    border: none !important;
    }
    
    #top.avia-blank .avia-shadow {
    box-shadow: none !important;
    }
    

    Cheers!
    Peter

    in reply to: HOME V7 "How do i change the images" #208821

    Hey!

    Glad you found it :)

    Regards,
    Peter

    in reply to: Icon element in advanced layout builder not sizing #208820

    Hey jtree5757!

    I tested the option on my test server and it works for me. I guess some other css code overwrites the icon inline styles and thus the “font size” option doesn’t work for you. Please post a link to your icon/website and we’ll look into it.

    Regards,
    Peter

    in reply to: Enfold Search Results Page Causing Horizontal Scroll #208816

    Hey!

    I tested your website with w3cvalidator: http://validator.w3.org/check?uri=http%3A%2F%2Fxdnet.biz%2F%3Fs%3DTest&charset=%28detect+automatically%29&doctype=Inline&group=0 and I guess one html syntax error might cause the issue:

    
    Line 283, Column 194: No p element in scope but a p end tag seen.
    …iz/wp-content/uploads/LinkedInButton.png" alt="Join us on LinkedIn!" /></a></p>
    

    You can also remove the scroll bar with css code – insert

    
    body.search {
    overflow-x: hidden;
    }
    

    into the quick css field.

    Cheers!
    Peter

    in reply to: Different hover/image overlay icons?? #208811

    Hi!

    You can use the class of the surrounding div to change the content. I.e. if you want to use a different icon for product images use

    
    .single-product-main-image .image-overlay .image-overlay-inside:before{content:"\E869"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    

    and this rule will overwrite the default icon.

    The difference between the three css code lines is just the icon. \E869 is the default icon, \E832 is the icon for external links and \E897 is the video icon.

    Regards,
    Peter

    in reply to: Update makes my site turn into blank? #208717

    Hey!

    2.4.5 is the latest version. 2.5 was a typo and it’s actually reserved for the next big feature release. Kriesi made a mistake and released 2.4.3 as 2.5 and then uploaded a new version (2.4.4) to correct the version number.

    Best regards,
    Peter

    in reply to: Recommended Method for Theme Update #208714

    Hi Alexa!

    Please use ftp – it’s better because you can make a backup of the theme files first and you can make sure that the updated files are uploaded on your server. A tutorial video can be found here: https://vimeo.com/channels/aviathemes/67209750

    Best regards,

    Cheers!
    Peter

    in reply to: Blog Style settings without function #208711

    Hi!

    It seems like you didn’t select this page as “blog page”. You’ve 2 options:

    1) Select the blog layout on the editor page here: http://handundfuss-nuernberg.de/wp-admin/post.php?post=140&action=edit(click on the “blog” element and change the “Blog-Stil” setting.

    2) Go to http://handundfuss-nuernberg.de/wp-admin/admin.php?page=avia and select the “Aktuelles” page from the “And where do you want to display the Blog?” dopdown. Then save the settings and Enfold should use the blog settings you set on the General Settings – Blog Style page.

    Cheers!
    Peter

    in reply to: Update makes my site turn into blank? #208668

    Hi!

    Please use ftp – it’s better because you can make a backup of the theme files first and you can make sure that the updated files are uploaded on your server. A tutorial video can be found here: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Peter

    in reply to: update theme problem #208642

    Hi modelity!

    Please use ftp to update the theme: https://vimeo.com/channels/aviathemes/67209750 if the auto update doesn’t work.

    Cheers!
    Peter

    Hi!

    Glad you found the solution :)

    Regards,
    Peter

    in reply to: Rename Blog Title and Breadcrumb #208631

    Hey!

    You can try following code – insert it into the functions.php file.

    
    if(!function_exists('avia_modify_blog_breadcrumb'))
    {
        function avia_modify_blog_breadcrumb($trail)
        {
    
            foreach($trail as $key => $data)
            {
                    $search = 'SEO Tools to Equip Your Business – Blog';
                    if(strpos($data, $search) !== false)
                    {
                                      $data = str_replace($search, "Blog", $data);
                                      $trail[$key] = $data;
                    }
            }
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb');
    }
    

    Regards,
    Peter

    in reply to: ENFOLD + Nextgen Widget: Resizing of thumbnails doesn't work #208625

    Hey!

    If you want to change the thumbnail image size with css you can use following code

    
    #top .ngg-widget img {
    max-width: 50px;
    max-height: 50px;
    }
    

    Best regards,
    Peter

    in reply to: ENFOLD + Nextgen Widget: Resizing of thumbnails doesn't work #208623

    Hey!

    Our support team is not only based in Europe and i.e. Ismael lives on the Philippines. Your login data is safe. Please use the “private reply” feature to post the login credentials.

    Regards,
    Peter

    in reply to: Error with update #208622

    Hey!

    Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    If this doesn’t help try to re-install WP3.8 and Enfold 2.4.5 with ftp: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Peter

    in reply to: Contact Form – Setting Reply To Email #208621

    Hi!

    No, please create me an admin account and post the login credentials as private reply. I just tested it with a form on my test server and the recipient field worked with my gmail and ymail account. You must make sure that the email address of the administrator (“Enter the Email address where mails should be delivered to.” option field on the “Edit” page) and the email address you use to test the form are different – otherwise you’ll send an email from your account to your account and then the recipient field won’t work (or actually it doesn’t make sense).

    Best regards,
    Peter

Viewing 30 posts - 5,761 through 5,790 (of 9,352 total)