Forum Replies Created
-
AuthorPosts
-
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ünterJuly 10, 2014 at 12:42 pm in reply to: Help aligning Video Testimonials in the Content Elements>Testimonials #289432Hey 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ünterHi 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ünterHi 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ünterHallo 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ünterHallo 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ünterHey 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ünterHi 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.
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ünterHallo!
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ünterHi 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ünterHey 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ünterHi!
Glad we could help you. Thank you for using the forum and enjoy the theme.
Cheers!
GünterHi!
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ünterJuly 8, 2014 at 5:33 pm in reply to: How do I increase the font size of the top row area with the phone and social #288613Hey!
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ünterHi 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 againif 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ünterHey!
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ünterHi!
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.
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ünterHi 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.
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ünterHey 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ünterJuly 8, 2014 at 11:16 am in reply to: How do I increase the font size of the top row area with the phone and social #288405Hi 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ünterHallo 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.
-
This reply was modified 10 years, 7 months ago by
-
AuthorPosts