Forum Replies Created
-
AuthorPosts
-
Hey morpho2014!
Thank you for using our theme.
Can you give us an admin account so we can check your settings?
Cheers!
GünterJuly 15, 2014 at 11:19 am in reply to: Standard Kategorieanzeige zeigt falsches Bildformat / Woocommerce Kategorieseite #291504Hi Jens!
Danke, dass Sie unser Theme verwenden.
Die Einstellung dafür findet Ihr in functions.php Zeile 101+102:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
‘entry_with_sidebar’ wird verwendet. Eine Änderung wirkt sich aber auf die gesamte Seite aus.
Falls das nicht gewünscht wird, müsste man eigene Formate definieren und dann in
enfold/config-woocommerce/config.php Änderungen durchführen:
//Zeile 704ff $image_size = "entry_with_sidebar"; // durch neuen Namen ersetzen if($layout == 'fullsize') $image_size = 'entry_without_sidebar'; // durch neuen Namen ersetzen
LG
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hi srmathis!
Thank you for using our theme.
Currently this is not supported by the theme. Adding this feature is beyond the scope of support.
You find the code in enfold/includes/helper-social-media.php line 81ff.
Regards,
GünterHey Snerp!
Thank you for using our theme.
It is possible to add a click event to the complete header section with the logo, if you have the menus below as on your screenshot.
Put the following in functions.php and replace the URL:
add_action('wp_footer', 'my_header_link'); function my_header_link() { ?> <script> jQuery(function() { jQuery('#header_main').on('click', function(){ window.location.href = "http://www.google.com"; }); }); </script> <?php }
Regards,
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hey Bodymindlinks!
Thank you for using our theme.
in Enfold->General styling QuickCSS field or in custom.css put the following code and change #333 to your desired color:
.main_color .avia-testimonial-subtitle{ color: #333 !important; }
Regards,
Günter- This reply was modified 10 years, 4 months ago by Günter.
Hi!
Thanks for your update.
If you want to alter class-breadcrumb.php in a child theme, follow the following steps:
1) Copy the original file into a subfolder of the child theme, lets call this folder my_files
2) From this file remove// At beginning of file line 3 + 4 remove: if(!class_exists('avia_breadcrumb')) { and aat line 144 remove: }
Delete all after line 144 (these files are currently not ready to be hooked by the child theme)
3) Make your changes to this class
4) In functions.php of the child theme put the following:
require_once ('/my_files/class-breadcrumb.php');
If you need to do some changes in the other functions you can look for apply_filters
// Example in line 510 $breadcrumb = apply_filters( 'avia_breadcrumbs', $breadcrumb );
In functions.php of the child theme then put the following:
add_filter('avia_breadcrumbs', 'my_breadcrumbs', 10, 1); function my_breadcrumbs($breadcrumb ) { // do something with breadcrumb return $breadcrumb; }
Hope, this will help you.
Cheers!
Günter- This reply was modified 10 years, 4 months ago by Günter.
Sollten es Kleinigkeiten sein, helfen wir Dir gerne im Rahmen des Support Forums.
Bei größeren Wünschen kann ich Dir gerne auch Customization Support als Freelancer anbieten.
Viel Freude mit dem Theme.
LG
Günter- This reply was modified 10 years, 4 months ago by Günter.
Schaut gut aus – Entspricht das auch Euren Vorstellungen?
Von der HTML Struktur ist es so in Ordnung.
LG aus Wien
GünterHallo Gianni,
Der Layout Slider liegt in einem 1/1 Block und Ihr habt darunter noch mehrere 1/1 Blöcke, erst dann 3 1/3 Blöcke am Ende.
Erst dann ist Platz für die Sidebar, die auch richtig rechts angezeigt wird.
Die Lösung könnte so aussehen, dass Ihr zB.
1/1 Block mit dem Layerslider macht,
dann 2/3 Block für übrige Sachen und 1/3 Block für die Custom Sidebar.Für das Login gibt es hier eine Antwort:
https://kriesi.at/support/topic/avia-login-widget/
LG
GünterHi!
Das Problem ist, dass Layer Slider die gesamte Breite benötigt – siehe auch https://kriesi.at/support/topic/layer-slider-shortcode-not-full-width/
Dadurch rutscht die Sidebar hinunter.
Lösung wäre z.B. auf der Seite Arbeitsrecht neben Kontakte und links das Element “Benutzerdefinierte Widgets” einzufügen.
Welche Login page meinen Sie?
Best regards,
GünterHey!
You just have to go down the code and replace
get_the_title()with
$title
in lines
528 echo "<strong class='news-headline'>".get_the_title(); 545 echo "<strong class='news-headline'>".get_the_title()."</strong>";
Regards,
GünterHey Holger!
You need to change the php code in:
enfold->framework->php->class-framework-widgets.php
At line 519 you find:
echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>";
Replace this with:
$title = get_the_title(); if(strlen($title) > 30) { $title = substr($title, 0, 27).'...'; } echo "<a class='news-link' title='".$title."' href='".get_permalink()."'>";
Best regards,
GünterHey GRP!
Danke dass Sie unser Theme verwenden.
Haben Sie in Enfold->Sidebar Layout die Sidebars auf rechts eingestellt (v.a. für pages)?
Können Sie uns einen admin Zugang einrichten, damit wir uns die Einstellungen im Backend anschauen können?
mfg
GünterHi Nelson!
Thank you for using our theme.
Can you send us a link to your page please?
Cheers!
GünterHey Swedfit!
Thank you for using our theme.
You need to make a change to the php code in file enfold/includes/loop-index.php.
At line 127 you find:
echo $title;
If you are using a child theme, copy this file to the includes folder of the childtheme and make your changes there. This would be the recommended way as in case of an update your changes will not be overwritten.
Cheers!
GünterHey Swedfit!
Thank you for using our theme.
Try to put the following in custom.css or Quick CSS field in Enfold->Styling and adjust the value of px:
.us_posts_bottom { margin-bottom: 20px !important; }
Regards,
GünterHey gd0g!
Thank you for using our theme.
Open file /includes/loop-search.php and goto line 88. There you can use your code snippet.
Regards,
GünterHey Richard!
Thank you for using our theme.
Can you send us a link to your page please?
Best regards,
GünterHey!
Thank you for your update.
If it works, it is fine and a good solution.
Glad if we could help you.
Cheers!
GünterHi Ed!
Thank you for using our theme.
In custom.css or Quick CSS fielld and adjust the value of px:
.single-post .entry-content-wrapper .entry-content-header{ margin-bottom: -10px; } .archive .content .post{ margin-bottom: -10px; }
This reduces the distance on every single post page and between on archive pages.
Cheers!
GünterHey!
Using this type of header it is not possible to upload a larger logo, because it is resized via java script on scrolling. This is a limitation of the theme.
Regards,
Günter -
AuthorPosts