Forum Replies Created

Viewing 30 posts - 3,631 through 3,660 (of 3,713 total)
  • Author
    Posts
  • in reply to: Removing one sidebar menu & Background at blog #289458

    Hey RestyleXL!

    Thank you for using our theme.

    ad 1)
    Put the following in custom.css or Quick CSS to remove from all pages.

    
    .avia-menu{
    display: none;
    }
    

    If you want to remove only from certain pages you can specify the page id (you find in HTML Code in the <body> tag (e.g.):

    
    .page-id-3036 .avia-menu{
    display: none;
    }
    

    ad 2)

    Put the following in custom.css or Quick CSS:

    
    .slideshow-window{
    border: 20px solid white !important;
    }
    

    Regards,
    Günter

    in reply to: Change the distance between header and main content #289440

    Hey!

    Glad we could help you. Thank you for visiting the forum.

    Best regards,
    Günter

    Hey artemrepin!

    Thank you for using our theme.

    The link you gave us does not work. You will have to publish the page so we can access it.

    Regards,
    Günter

    in reply to: Post Slider – don't show number of comments #289429

    Hi Welmoed!

    Thank you for using our theme.

    Open file
    enfold/config-templatebuilder/avia-shortcodes/postslider.php and find line 383:

    
    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    

    Replace this with:

    
    $output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$text_add}</a></div><div class='slide-meta-del'>/</div>";
    

    Best regards,
    Günter

    in reply to: font-family of all the text in my website #289424

    Hi Zeng!

    Thank you for using our theme.

    Place in custom.css or Quick-CSS field the following code:

    
    body {
    font-family:  Arial, sans-serif !important;
    }
    

    Regards,
    Günter

    in reply to: Team Member Layout #289420

    Hallo sascha-Juliot

    Ja, kann man ändern:

    In functions.php am Ende folgenden Code einfügen und xxx mit einer definierten image size ersetzen (80*80 ist thumbnail):

    
    add_filter ('avf_testimonials_avatar_size', 'my_avatar_size', 10, 3);
    
    function my_avatar_size($size,  $src, $class)
    {
    $size = 'xxxx';
    return $size;
    }
    
    

    Regards,
    Günter

    in reply to: change size of sidebar in functions.php #289414

    Hi!

    Glad we could help you. Thank you for visiting the forum.

    Regards,
    Günter

    in reply to: Custom Logo Link #289412

    Hallo Martin,

    Danke, dass Sie unser Theme benützen.

    In functions.php am Ende bitte folgenden Code einfügen und xxxx mit der neuen Adresse ersetzen:

    
    add_filter (''avf_logo_link', 'my_new_logo_link', 10, 1);
    
    function my_new_logo_link ($old_logo_link)
    {
    $new_logo = 'xxxx';
    return $new_logo;
    }
    

    Liebe Grüsse aus Wien
    Günter

    in reply to: order by title with numbers #289406

    Hey understandchristianity!

    Thank you for using our theme.

    No, there is no possibility because the SQL sorting algorithm does not support this. The only way could be to hook into WP after the query and resort the result. But that is not an easy task and will make problems on pagination.

    Cheers!
    Günter

    in reply to: Change the distance between header and main content #289401

    Hi heufti65!

    Thank you for using our theme.

    Put in custom.css or Quick-CSS field the following:

    
    #main .main_color .content  {
        padding-bottom: 10px;
        padding-top: 10px;
    }
    

    You can change the values as you like.

    Best regards,
    Günter

    • This reply was modified 10 years, 7 months ago by Günter.
    in reply to: Image in sidebar – not on front page #289397

    Hi Welmoed!

    Thank you for using our theme.

    You have to identify the sidebar in HTML Code. This should be a unique class (e.g. sidebar_image) or better id for this section. Maybe the plugin allows you to give a unique id (e.g. my_image)

    You can put the following code in custom.css or Quick CSS field:

    
    .home #my_image {
    display: none !important;
    }
    
    or
    
    .home .sidebar_image{
    display: none !important;
    }
    

    If you have troubles identifying the section, insert the image and come back and we help you.

    Regards,
    Günter

    in reply to: Team Member Layout #289393

    Hallo!

    Das Testimonial würde Ihren Wünschen am nächsten kommen. Die Bilder 4-eckig abgerundet sind kein Problem.

    Das Teammember Layout zu ändern ist möglich, aber komplexer. Müsste man den Programmcode abändern sowie etliche CSS Anpassungen und wegen des responsive Designs auch entsprechend testen. Dies ist nur im Rahmen einer Freelancer Tätigkeit möglich (kann ich auch anbieten, bei Interesse bitte E-Mail an (Email address hidden if logged out) ).

    mfg
    Günter

    in reply to: change size of sidebar in functions.php #289118

    Hi frankwelschlehmann!

    Thank you for using our theme

    You must put your changes in an action hook, because the child theme functions.php is loaded before the parent functions.php and therefore your settings are overwritten again.

    Put the following in child functions.php:

    
    add_action('init', 'my_change_function', 90);
    
    function my_change_function()
    {
     //    insert your code here
    }
    

    my_change_function must be a unique name – so choose something concerned with your company to avoid the possibility of duplicate names.

    Cheers!
    Günter

    in reply to: Team Member Layout #289097

    Hey dreisatz!

    Danke, dass Sie unser Theme benützen.

    Vorgesehen sind Änderungen in der Anordnung nicht.

    Hilfestellung bei kleinen Anpassungen können wir im Rahmen des Forums gerne geben, nur ein komplettes Umstellen sprengt den Rahmen.

    Erstellen Sie einmal eine Seite mit ein paar Einträgen und senden Sie mir den Link zu der Seite – evtl. mit Admin Login und ich werde schauen, wie weit ich Ihren Wünschen dann im Rahmen des Forums nachkommen kann.

    Soweit es mit CSS lösbar ist, können wir Ihnen sicher weiterhelfen.

    mfg
    Günter

    in reply to: Cannot update menu #288976

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Homepage text not outline #288917

    Hi!

    Glad we could help you. Thank you for using the forum and enjoy the theme.

    Cheers!
    Günter

    in reply to: Testimonial Layout #288903

    Hi!

    Thank’s for coming back.

    I added the following code in functions.php at the end:

    
    function add_custom_script(){
    ?>
    <script>
    jQuery(function() {
    	jQuery(".avia-testimonial-meta-mini").each(function(){
    		jQuery(this).closest('.avia-testimonial_inner').prepend(jQuery(this));
    	});
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    It moved the names up to the top.

    Regards,
    Günter

    Hey!

    It’s possible to change the colour of the text:

    
    #top .phone-info {
    font-size: 30px;
    color: red;
    }
    

    Instead of red you can put any color, eg #fff or #eaeaea.

    The icons seem to be fixed size and color – I do not find any CSS to change it.

    Best regards,
    Günter

    in reply to: Layout problem while editing pages #288503

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Cannot update menu #288502

    Hi Gurify!

    Thank you for using our theme.

    Are you using the latest Version of WP 3.9.1 and of Enfold 2.8.1?

    1) Disable all plugins and try again.
    2) Change to a default WP Theme and try again

    if still not working, try to put in wp-config.php (WP root directory) at the end of the file:

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

    Regards,
    Günter

    in reply to: Layout problem while editing pages #288496

    Hey!

    Thanks for coming back.

    Try to put in wp-config.php in the WP root directory at the end of the file the following:

    define( ‘WP_MEMORY_LIMIT’, ‘128M’ );
    define( ‘WP_MAX_MEMORY_LIMIT’, ‘256M’ );

    If this does not help, try to re-update WP.

    Regards,
    Günter

    in reply to: Change default sidebar width #288480

    Hi!

    Thank you for coming back.

    You have to solve this problem within an action hook, because functions.php of the childtheme is loaded before the parent themes functions.php.

    Try to put the following in functions.php of the child theme:

    
    add_action('init', 'purpleedge_change_layout', 900);
    
    function purpleedge_change_layout()
    {
    global $avia_config;
    
    $avia_config['layout']['sidebar_right'] = array(‘content’ => ‘eight alpha’, ‘sidebar’ => ‘four alpha’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eight alpha’);
    }
    

    This should overwrite the settings from enfold parent theme.

    Cheers!
    Günter

    • This reply was modified 10 years, 7 months ago by Günter.
    in reply to: woocommerce-mod.css in child theme #288470

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Import dummy data #288455

    Hallo Frank.

    Kleine Ursache – große Wirkung.

    Freut mich, dass wir so rasch helfen konnten und viel Freude mit dem Theme.

    Liebe Grüsse aus Wien
    Günter

    in reply to: Increase the height of images in #288446

    Hi djshortkut!

    Thank you for using our theme.

    If you want to change the sizes you have to modify a core file.

    Open functions.php in the root folder in a plain text editor and goto line 101 and line 108 (for extra large layouts).

    Replace the values of width and height:

    
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);
    

    For already uploaded images you either need to re-upload the image or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Keep in mind, that you have to do these changes after every update because this file is overwritten.

    Regards,
    Günter

    • This reply was modified 10 years, 7 months ago by Günter.
    in reply to: logo size #288420

    Hi Swedfit!

    Thank you for using our theme.

    It is necessary to adjust the CSS, if the logo is larger than 340×156.

    Can you post us a link to your page please.

    Regards,
    Günter

    in reply to: slider margin #288411

    Hey Finlando!

    Thank you for using our theme.

    Can you give us the link to the page please so we can check the CSS.

    Cheers!
    Günter

    Hi jasonmwestbrook!

    Thank you for using our theme.

    Put in custom.css or Quick CSS the following and change the value of px:

    
    #top .phone-info {
    font-size: 30px;
    }
    

    Best regards,
    Günter

    in reply to: Blog post not filtered by Category #288400

    Hi!

    You can check “private reply” for your post.

    Best regards,
    Günter

    in reply to: Import dummy data #288376

    Hallo Frank,

    Habe versucht, mich einzuloggen, sehe aber nur das leere Dashboard. Es fehlen mir die Rechte als Administrator.

    Was Du noch versuchen könntest, wäre das Speicherlimit von WP hinaufzusetzen. Füge dazu die folgenden Zeilen am Ende in die Datei wp-config.php im root von WP ein:

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

    LG
    Günter

    • This reply was modified 10 years, 7 months ago by Günter.
Viewing 30 posts - 3,631 through 3,660 (of 3,713 total)