Forum Replies Created
-
AuthorPosts
-
Hey JohannesJunker!
Danke dass Du unser Theme verwendest.
Beim Öffnen bekomme ich einen 500 internal Server Error.
Was hast Du verändert, bevor dieser Fehler auftrat?
WP update, plugin updates, ????Was Du zuerst einmal versuchen kanst.
Mit FTP den Ordner Enfold resp. Enfold-child umbenennen und auch den Ordner wp-content/plugins.
Dann sollte zumindest WP mit dem Standardtheme kommen.
Falls nicht, dürfte WP etwas abbekommen haben. In diesem Fall kannst Du nur WP mit FTP hochladen und schaun, ob es dann geht.
Dann Enfold resp. Enfold-child wieder zurück umbenennen und versuchen das theme/childtheme zu aktivieren.
Wenn das nicht geht, enfold mit FTP updaten auf letzte Version.
Dann ein plugin nach dem anderen dazunehmen.
Ich hoffe, das hilft einmal.
LG,
GünterHi!
Thank you for coming back.
Open file enfold\includes\admin\register-admin-options.php
and look for (line 29):
$avia_pages[] = array( 'slug' => 'demo', 'parent'=>'avia', 'icon'=>"doc_text_image.png", 'title' => __('Demo Import', 'avia_framework'));
Remove this line (or comment it with //).
You can also delete lines 2004ff.
Best regards,
GünterHi!
Glad we could help you and thank’s for posting your solution.
Enjoy the theme.
Cheers!
GünterHey!
Wenn Du das Child theme schon ausgewählt hattest: Lösche den gesamten Ordner mit FTP (oder benenne Ihn um). Wenn WP den Theme Ornder nicht findet, müsste es ein WP Standard theme aktivieren.
Zumindest einen Versuch wert, bevor man alles neu aufsetzen muss.
Best regards,
GünterHi!
Danke, dass Du unser Theme verwendest.
ad 2) Das geht eigentlich nur mit CSS. Jede Seite hat eine eindeutige ID und die wird in WP im body tag mitgeschickt,
z.B. home, page-id-2
Die muss man dann im CSS zu den stylings dazunehmen, die speziell für diese Seite sind,
z.B.`
aus
.page-id-2 .responsive .container { width: 1030px; }
wird dann
.responsive .container { width: 1030px; }
Ich hoffe, das hilft Dir weiter.
Best regards,
GünterHi!
I hope you will enjoy the theme. Feel free to come back with further questions you have.
Best regards,
GünterHey Bruno!
Thank you for using our theme.
You have to modify the core file enfold\config-templatebuilder\avia-shortcodes\table.php line 231:
Look for:
$content = preg_replace('!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!','<span class="currency-symbol">$1</span>', $content);
and add the currencies/text you like:
$content = preg_replace('!(\$|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€|R\$)!','<span class="currency-symbol">$1</span>', $content);
Best regards,
GünterHi frankdaamen!
Thank you for using our theme.
As Enfold relys on a CSS structure changing this will cause many problems and break the display..
Depending on the changes you make with the mangento HTML it’s probably easier to make it the other way round – encapsule the mangento HTML in divs or rewrite the CSS.
Cheers!
GünterHi!
Info by Kriesi:
Not yet possible, those are generated by the theme based on the other selected colors. However I have added the color fields for meta and headings in the 3.1 release. The user will be able to do it once the update is released (either today or tomorrow)
Hope, this will help you.
Best regards,
GünterHey!
Not really. The form container is 100% width, and the elements are not placed in a container, that can be centered.
Youi can try the following to have a look that is closely centered (adjust the value):
.page-id-25 input[type="text"] { margin-left: 15% !important; }
Cheers!
GünterHi sitesme!
Thank you for coming back.
To change the colours of h1, ….:
Goto Dashboard -> Enfold -> Advanced Styling
Choose the requested elements from the select box -> Edit -> Make your changes
Can you explain more clearly what you mean with meta colors – I do not catch, what you mean with that.
Best regards,
GünterHi!
Thank you for coming back.
There is a problem with the label. If you remove it, you can try the following and adjust the values of width:
.page-id-25 input[type="text"] { float: left !important; width: 73% !important; } .page-id-25 select { float: left !important; width: 10% !important; } .page-id-25 select { margin-left: 5px !important; margin-right: 5px !important; }
The label has no tag, so there is no chance to adjust its position with CSS and it breaks everything.
Best regards,
GünterHey!
You better use a filter hook to change the output string.
In functions.php of the parent theme or the child theme put the following:
add_filter( 'kriesi_backlink', 'my_own_backlink', 10, 1); function my_own_backlink($link) { // original on line 1310 of enfold\framework\php\function-set-avia-frontend.php // $link = " - <a {$no} href='http://kriesi.at'>{$theme_string}</a>"; // change the output string with e.g. $no = "rel='nofollow'"; $theme_string = 'Your text to display'; $link = " - <a {$no} href='http://www.your_domiain.xx'>{$theme_string}</a>"; return $link; }
Best regards,
GünterHi!
Thank you for coming back.
This is a bit difficult, as the filter hook does not have an information about the grid.
If you know the ID’s of the posts that are involved in the grid you can remove the link from that posts.
E.g. the posts have the ID’s 234, 250, 280:
function my_portfolio_title_link ( $title_link, $entry ) { $no_link_posts = array (234, 250, 280); if( in_array( $entry->ID, $no_link_posts )) { return ''; } return $title_link; }
Or you can limit it to all grids on the current page (you need to know the ID of the page):
function my_portfolio_title_link ( $title_link, $entry ) { $no_link_pages = array (234, 250, 280); $page_id = get_queried_object_id(); if( in_array( $page_id, $no_link_pages )) { return ''; } return $title_link; }
Best regards,
GünterHi!
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ünter -
AuthorPosts