Forum Replies Created
-
AuthorPosts
-
Hi!
In coustom.css or Enfold->Styling->Quick CSS field put the following and adjust the px value:
.page-id-514 #av_section_1 .av_textblock{ font-size: 17px; }
Best regards,
GünterHi!
Enfold integrates only Enfold Advertising Area Widget.
You can look at WordPress.org plugins, there you probably will find one (they are free).
Regards,
GünterHey!
Thanks for the update.
Using widgets you must setup the page to use sidebars (Enfold->Sidebar Layout) and on Edit Page screen.
Under Utseende->Widget you find all available Widgets and on the right side Areas, where to use them (Drag and Drop the Widgets from left to right) and you also can define custom widget areas.
Best you start experimenting a little and see the output.
Regards,
Günter- This reply was modified 10 years, 6 months ago by Günter.
Hey xpoveda!
Thank you for using our theme.
In custom.css put the following and adjust px values:
ad 1)
#header.av_header_transparency .social_bookmarks{ color: #000; }
ad 2)
I only see the text like Facebook, no icons. Is the link above correct?ad 3)
#after_section_2 .avia-builder-el-8, #after_section_2 .avia-builder-el-10, #after_section_2 .avia-builder-el-12, #after_section_2 .avia-builder-el-14{ margin-top: 32px; } #after_section_3 .avia-builder-el-19{ margin-top: 32px; }
Cheers!
Günter- This reply was modified 10 years, 6 months ago by Günter.
Hi!
Thanks for the update.
I found the image (but only a 80*80) in the media gallery and attached it as featured image (section utvald bild).
If you uplaoad it in 180 * 180 it will fill the gray field. Or we can adjust the CSS Code to make this field smaller.
Best regards,
GünterHi lsrmedia!
Thank you for using our theme.
The only way is to alter the source code of the following file:
enfold/includes/loop-comments.php
Open it and goto line 30.
Replace:
$link = get_comment_author_url(); if(!empty($link))
with
// $link = get_comment_author_url(); $link = ''; // if(!empty($link))
if you do not want to have the author info at all:
// $link = get_comment_author_url(); $link = ''; if(!empty($link))
If you are using a child theme copy the file to the child theme folder in subfolder /includes and make the changes there. This avoids that your changes will be overwritten on every update.
Regards,
GünterHi!
Thank You for using our theme.
You have to upload or select a featured image on the post page (section utvald bild).
I did it on post Historisk bakgrund till de olika byggnaderna i Åminne.Did you mean this?
Cheers!
GünterHey joemurphy!
Thank you for using our theme.
I tried your link, but it does not work (Page not found).
Can you pls check and post it again?Regards,
GünterHi!
In custom.css or Enfold->General Styling->Quick CSS field put the following:
#header_main:hover{ cursor: pointer; }
Regards,
GünterHey!
Replace the following code :
.archive .content .post{ margin-bottom: -10px; }
with:
.archive .content .post{ margin-bottom: -10px; margin-top: -30px; }
and adjust the values for px.
Best regards,
Günter- This reply was modified 10 years, 6 months ago by Günter.
Hey BarkProductions!
Thank you for using our theme.
If you want to display <?php the_title(); ?> on a page, you must change the template file.
To avoid doing changes on every update, I would recommend using a child theme.
I would put the changing in enfold/includes/loop-page.php at line 6echo '<h1>'.get_the_title().'</h1>';
If you are using a child theme, copy the original file to the child theme in folder includes and make your changes there.
For pages with the template bouilder it is easier to use the “Special Heading” element.
Best regards,
GünterHey 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, 6 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, 6 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, 6 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, 6 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, 6 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ünter -
AuthorPosts