Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for using our theme.
Although Enfold – Child is a child theme, it uses its own theme settings.
You can export your settings of the Enfold parent theme with Enfold->Import/Export->Export theme settings and import these settings in the child theme Enfold-Child->Import/Export->Import theme settings.
This should fix your problem.
Best regards,
GünterHey!
Thank you for coming back.
The code should apply to all portfolio grids.
If you are using a child theme, put the code in fuctions.php of the child theme.
Regards,
GünterHey!
Gerne.
Du kannst jederzeit gerne weitere Fragen stellen.
Viel Freude mit dem Theme.
Cheers!
GünterHey Gian Maria!
Thank you for coming back.
In functions.php try to put the following:
function my_portfolio_title_link ( $title_link, $entry ) { return ''; } add_filter('avf_portfolio_title_link', 'my_portfolio_title_link', 10, 2);
Cheers!
GünterMarch 9, 2015 at 2:13 pm in reply to: AJAX portfolio filters in sidebar instead of above the items #408081Hey emilcobussen!
Thank you for coming back.
Yes, it is possible to implement this, but not out of the box. This is a huge customisation and far beyond the scope of the support forum.
Cheers!
GünterHi KVSchneppenheim!
Thank you for coming back.
The best place to add your custom CSS is in the file custom.css or Enfold->Styles->QuickCSS field.
Do not forget to add !important to your changings.
If you have still troubles to access the element you like, give us a link to your page and we will help you, You can post it here as a private reply.
Cheers!
GünterMarch 9, 2015 at 2:05 pm in reply to: woocommerce product items: how to break regular price and sales price into two line? #408073Hi decode!
Thank you for coming back.
In custom.css or Enfold->Styles->QuickCSS put the following:
.inner_product .inner_product_header del { float: left !important; width: 100% !important; } .inner_product .inner_product_header ins { float: left !important; }
Regards,
GünterHi sjidesign!
Thank you for coming back.
In functions.php try to put the following:
function my_limit_archives( $args ) { $args['type'] = 'yearly'; return $args; } add_filter( 'widget_archives_args', 'my_limit_archives' ); add_filter( 'widget_archives_dropdown_args', 'my_limit_archives' );
Best regards,
GünterHey!
Versuche das folgende:
.woocommerce-product-search .search-field { float: left !important; width: 60% !important; }
Der Text ‘Search Products” wird eigentlich in der Übersetzung von WC übersetzt – oder verwendet Ihr da ein plugin?
Best regards,
GünterHi!
Das dürfte ein Problem von German Market sein – wenn man es deaktiviert, passt es.
Man bekommt bei Euch auch dir Fehlermeldung (Dashboard oben), dass Templates nicht korrekt überschrieben werden – genau dass macht German Market aber.
Habt Ihr die aktuelle Version von diesem Plugin?
Best regards,
GünterHi!
Derf Fehler liegt daran, dass Ihr die Funktion wc_add_notice mit $woocommerce->wc_add_notice aufruft, diese ist aber keine Methode des Objektes woocommerce sondern NUR eine normale funktion.
Habe das richtiggestellt, funktoniert jetzt – Fehlermeldung ist weg,
Cheers!
GünterHi sitesme!
Thank you for using our theme.
You can use the standard contact form (ALB or shortcode) and adjust the column width for each element.
Did you try that?
Cheers!
GünterHey internett!
Danke dass Du unser Theme verwendest.
Ixh nehme an, Du meinst Pages, Categories, Archives.
Das sind die Standard WP Widgets, die von Enfold nur als Default angezeigt werden, wenn keine anderen Widgets definieert sind. Ziehe einfach die 3 Widgets in der Reihnfolge in die Widget Area, die Du möchtest.
LG,
GünterHey bur2000!
Danke dass Du unser Theme verwendest.
Es gibt da ein plugin: https://wordpress.org/plugins/search-exclude/
Versuche es einmal.
Ich selber kenne es nicht und habe es auch nicht getestet.
Best regards,
GünterHi!
Try the following:
.home .post-entry p .thumbnails { margin-right: 25px !important; }
Best regards,
GünterHi!
To target the page titles use the following and add your settings:
.title_container .main-title a { font-size: 25px !important; }
Regards,
GünterHey!
Try to replace the code from Rikard with:
.home .entry-content-wrapper div li { list-style-position: outside !important; padding-left: 10px !important; }
Cheers!
GünterHey!
I leave this post open, in case you have more questions to that topic.
Enjoy the theme.
Best regards,
GünterMarch 5, 2015 at 3:19 pm in reply to: how to customize avia elements in general? – this time promo box #406435Hi Geoff!
Thank you for coming back.
Not really. You have to inspect the hierarchie of classes to the element you need (e.g. using FireBug).
This differs from element to element.
This will work:
.avia-promocontent p { font-size: 25px !important; }
You should add !important to all changes you make in custom.css or QuickCSS to ensure, that it overwrites other settings.
Regards,
GünterHey!
Thank you for coming back.
Try the following and adjust the value:
.home .av_textblock_section .list2 li { padding-bottom: 15px !important; }
Cheers!
Günter-
This reply was modified 10 years, 7 months ago by
Günter.
Hey biggrouppl!
Thank you for using our theme.
You find the code in enfold\config-templatebuilder\avia-shortcodes\portfolio.php line 590.
Regards,
GünterHey!
Freut mich. Ich habe bei Kriesi die Korrektur deponiert – Möglch, dass es im nächsten Update gefixed wird.
Viel Freude mit dem Theme.
Cheers!
GünterHi!
Glad I could help you. I leave this post open, in case you need more help.
Enjoy the theme.
Regards,
GünterHey potentialindia!
Thank you for coming back.
To increase the size of the thumbnals:
.avia_combo_widget .news-thumb { height: 50px !important; width: 50px !important; } .avia_combo_widget .news-thumb img { height: 50px !important; width: 50px !important; }
To remove the tabs:
.avia_combo_widget .tab.widget_tab_comments, .avia_combo_widget .tab.widget_tab_recent { display: none !important; }
To exclude posts with a special category you have to find the ID’s of the categories to exclude and modify the following core file:
enfold\framework\php\class-framework-widgets.php look for (line 935):avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts);
and replace with:
avia_get_post_list('cat=-15,-10&orderby=comment_count&posts_per_page='.$posts);
Replace the numbers with your category ID’s.
Hope this will help you.
Best regards,
GünterHi Henrikgood!
Thank you for using our theme.
You can style the border with CSS.
For example put in custom.css or Enfold->Styles->QuickCSS the following:
.av-layout-grid-container .flex_cell { border: 10px solid red !important; }
It will probably be necessary to specify the page and the element more closely.
If you need help, please give us a link to the page and we can provide you with the correct CSS.
You can post it here as a private reply.
Cheers!
Günter -
This reply was modified 10 years, 7 months ago by
-
AuthorPosts