Forum Replies Created
-
AuthorPosts
-
Hey 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, 8 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, 8 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, 8 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, 8 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ünterHi twdlewis!
You are outputting a string and not the value of a variable.
Regards,
GünterHey!
Thanks for the update.
Can you send us the link to the page?
Best regards,
GünterHey ThomasWitzany!
Thank you for using our theme.
Open functions.php and goto line 91.
If you are using a child theme, you can put your changes also in functions.php, bot need an action hook:
add_action ('init', 'my_custom_sizes', 99); function my_custom_sizes() { global $avia_config; put your changes here }
Cheers!
GünterHey wintner!
Thank you for using our theme.
1)
Currently there is no easy possibility to avoid this space. Would need changes in the core files.Put the following in custom.css or Enfold->Styling-> Quick CSS field to hide ALL inages:
.home article .blog-meta{ display: none; }
2)
The image sizes used in the templates are predefined (see functions.php line 91ff). When uploading images WP automatically does the resizing. Best way if you are not satisfied is resizing images manually and then uploading.Regards,
Günter -
This reply was modified 10 years, 8 months ago by
-
AuthorPosts