Forum Replies Created

Viewing 30 posts - 3,661 through 3,690 (of 3,704 total)
  • Author
    Posts
  • in reply to: Telephone icon in top bar #287671

    Hey!

    There is no easy way to place the changing in the child theme. You have to do it in the enfold parent theme file.

    Regards,
    Günter

    in reply to: Customize icons in icon list #287488

    Hey!

    Glad we coul help you.

    Thank you for using the forum and enjoy the theme.

    Regards,
    Günter

    Hi!

    Glad we could help you.

    Thank’s for visiting our forum and enjoy the theme.

    Best regards,
    Günter

    Hey garbath!
    Thank you for using our theme.

    Actually you can change the order with a filter – i.e. add following code to the bottom of functions.php:

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

    and all portfolio grids will use a random order for the entries. However the tricky part is to change the order of some grids only. I recommend to change the order based on the current page id – in your case the code would look like

    
    function custom_post_grid_query( $query, $params ) {
    if(is_page(array(42,50,45))) $query['orderby'] = 'rand';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    

    and instead of 42, 50, 45 insert the page ids of those pages which should display the portfolio grid(s) in a random order. You can separate the ids with a comma.

    Best regards,
    Günter

    in reply to: Blog layout wiht read more #286632

    Hey!

    Thank you for visiting our forum.
    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Drag and Drop Menü funktioniert nicht. #286629

    Hi taylor9797!

    Danke, dass Sie unser Theme benützen.

    Deaktivieren Sie einmal alle plugins und versuchen Sie es nochmals. Falls ein plugin einen Javascript Fehler verursacht, kann dies dazu führen, dass WP nicht mehr korrekt arbeitet.

    Von unserer Seite aus muß die normale WP Funktionalität gehen.

    Cheers!
    Günter

    in reply to: Show blog author on blog grid #286621

    Hey!

    Glad we could help you.

    Thank you for visiting the forum and enjoy the theme.

    Best regards,
    Günter

    in reply to: Spacing between sections #286618

    Hey!

    Put the following code into custom.css or Enfold->Quick CSS:

    
    .page-id-734 #main .content{
    padding-bottom: 0px !important;
    }
    

    Best regards,
    Günter

    in reply to: Unwanted content in sidebar #286605

    Hey jeroenberings!

    Thank you for using our theme.

    This is a default behavior for the “Displayed everywhere” section.

    Drag a “TEXT” Widget (Arbitrary text or HTML) into this section and leave everything empty inside.

    Cheers!
    Günter

    in reply to: What are preview images? #286597

    Hey!

    Thank you for visiting our forum.

    Regards,
    Günter

    in reply to: Show blog author on blog grid #286592

    Hi!

    Please go again to /config-templatebuilder/avia-shortcodes/postslider.php and look for line 386:

    and replace this line with the following 2 lines:

    
    $author = get_the_author_meta( 'user_nicename', $entry->post_author );
    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time> / by ".$author;
    
    

    If user_nicename is not what you want, you can also use:

    
    $author = get_the_author_meta( 'first_name', $entry->post_author ).' '.get_the_author_meta( 'last_name', $entry->post_author );
    

    Regards,
    Günter

    • This reply was modified 10 years, 5 months ago by Günter.
    in reply to: What are preview images? #286580

    Hi!

    Thank’s for coming back.

    If I understand you correct, you want to remove the menu entrys like Home, About Kirk, Kirk’s books.

    This can be done by modifying the menu structure in the standard WP Menu editor (Dashboard -> Appearance -> Menus).

    Alternativ the following code should also do:

    
    .main_menu .avia_mega .page_item{
    display: none;
    }
    

    Regards,
    Günter

    in reply to: Table padding #286573

    Hey Denis!

    Thank you for using our theme.

    If the table has a unique id or class (e.g. <table id=”mytable” class=”mytblclass”>) you can use the following CSS (e.g. in custom.css):

    
    #mytable td{
    padding: 3px;
    {
    
    or
    
    .mytblclass td{
    padding: 3px;
    }
    

    Regards,
    Günter

    in reply to: Spacing Above Logo #286567

    Hi bdm55!

    Thank you for using our theme.

    Can you send us a link to the page, so we can give you the CSS Code.

    Regards,
    Günter

    in reply to: Right menu #286564

    Hey leadbuilders!

    Thank you for using our theme.

    To change the menu and adjust it to your site you can use the standard WP Menu editor.

    Goto Dashboard -> Appearance -> Menus

    Regards,
    Günter

    in reply to: Color section resizing for browser window #286276

    Hi Angiec13!

    Thank you for using our theme.

    Put the following in custom.css at the bottom:

    
    @media only screen and (min-width: 768px) and (max-width: 959px) {
    #home-email {
    margin-bottom: auto;
    text-align: center;
    }
    }
    

    This also centers the text.

    Regards,
    Günter

    in reply to: Portfolio grid problem after update to 2.8.1 #286261

    Hi!

    Did you clear the browser cache and reloaded the page after applying your changes?

    Best regards,
    Günter

    in reply to: Avia Layout Architekt activate for posts #286245

    Hey mmc-werbung!

    Thank you for using our theme.

    Sorry, no, it is limited to building pages only.

    Cheers!
    Günter

    in reply to: enfold masonry portfolio sortable menu #286189

    Hey nggrozev!

    Thank you for using our theme.

    1) It is not possible to sort/filter images, that are not loaded already. This is a limitation. If you need that, you have to use the “More Button” setting to add the next images to the already loaded.

    2) Try to deactivate all plugins and check, if the navigation still disappears. If yes, please send us the link to the page. Probably we also will need an admin login to check.

    Regards,
    Günter

    in reply to: How do I remove the dummy text on this page? #286128

    Hi mcraig77!

    Thank you for using our theme.

    To delete or modify this page you go to your dashboard -> pages, open´ ths page to modify or delete it.

    Best regards,
    Günter

    in reply to: Remove right sidebar for all pages #286124

    Hi mcraig77!

    Thank you for using our theme.

    Goto Enfold Theme Options page and choose Sidebar Layout.

    There you find selectboxes for the sidebars.

    Best regards,
    Günter

    in reply to: Portfolio grid no categories available #286116

    Hey!

    Sorry, what I ment is, if you selected portfolio categories for your portfolio entries on the portfolio entry page.

    Best would be you give us an admin account and the link to the admin page with the problem, so we can check.

    Cheers!
    Günter

    • This reply was modified 10 years, 5 months ago by Günter.
    in reply to: Head image size and link #285776

    Hey!

    You must upload an image in the correct width you like first. Currently the logo is only 300 * 137.

    If still problems, try this:

    height: 161px !important;
    width: 1260px !important;

    Best regards,
    Günter

    in reply to: Change Font Color on 1 Menu Item #285765

    Hi sundialstudios!

    Thank you for using our theme.

    Try the following:

    
    #menu-item-9651 a .avia-menu-text{
       color: #ffffff !important;
    }
    

    Best regards,
    Günter

    Hi!

    If you want to change the text “Taggarkiv:” – Easiest way is to change it in the translation file e.g. with poedit.exe

    The second way is to change it in the source code, but that will be overwritten with every update. You find the english text in:
    enfold/framework/php/function-set-avia-frontend.php line 898.

    As far as I see, the Portfolio items header is gone.

    Best regards,
    Günter

    in reply to: Portfolio grid no categories available #285644

    Hey wacky32!

    Thank you for using our theme.

    Did you select categories for the portfolio entries?

    If yes, ty to disable all other plugins and check again – maybe a plugin could cause this error.

    Cheers!
    Günter

    Hi xxl!

    Thank you for using our theme.

    1. The menu is overlapping the logo (depending on browser window width):

    Try options > Header > Mobile Menu and choose 990px in “Header Mobile Menu activation” section

    If this does not help, try to put the following code to Quick CSS in Enfold theme options under Styling tab:

    
    @media only screen and (max-width: 1140px) and (min-width: 990px) {
    .av-main-nav > li > a { padding: 0 10px !important; }
    

    2. Would like to remove the “Portfolio items” header in the tags listing:

    Please send us the link to the page so we can check for CSS.

    Best regards,
    Günter

    Hi!

    Take a look at this topic:

    https://kriesi.at/support/topic/displaying-custom-post-types-inside-of-the-avia-layout-builder/

    We currently do not support custom post types in the theme.

    If you want to implement such a feature, it only can be done as an extension by a freelancer.

    Best regards,
    Günter

    in reply to: Icon alignment #285209

    Hi Jarnis82!

    Thank you for using our theme.

    Can you send us the link to the page so we can check for the problem.

    Cheers!
    Günter

    Hey neotemplates!

    Thank you for using our theme.

    A possible answer to your question you can find here:

    https://kriesi.at/support/topic/portfolio-items-custom-fields/

    If anything is unclear, don’t hesitate to contact us again.

    Cheers!
    Günter

Viewing 30 posts - 3,661 through 3,690 (of 3,704 total)