Forum Replies Created
-
AuthorPosts
-
Hi!
Danke.
Ich würde einmal folgende Lösung vorschlagen – die breadcrumb nach unten verschieben – das schaut bei langem Titel und breadcrumb ab Besten aus.
In custom.css or Enfold -> General Styling -> Quick CSS füge den folgenden Code ein:
.title_container .breadcrumb { float: right !important; margin-top: 5px !important; position: relative !important; width: 85% !important; }
Cheers!
GünterHey!
Danke für die Rückmeldung.
Habe mich vielleicht schlecht ausgedrückt:
Auf der Adminseite von WP gibt es rechts oben das Feld ScreenOptions. Wenn man dieses beim Bearbeiten von Post aufklappt, gibt es eine Menge von´Checkboxen, darunter eine mit “Discussion”. Wenn man diese markiert, erscheint unten ein´Metabox Feld “Discussion” mit 2 Checkboxen, die defaultmäßig gesetzt sind – diese Markierung entfernen.
Allgemein ausschalten:
Adminbereich, den Reiter Settings -> Discussions anklicken und die Checkbox “Allow people to post comments on new articles“ deaktivieren.
Regards,
GünterHi!
Danke für die Rückmeldung.
In functions.php des Child Themes (oder des Hauptthemes, wenn Du kein Child Theme verwendest) am Ende füge das folgende ein (z.B. Appearance > Editor):
function my_woocommerce_product_description_heading( $heading ) { // enter your custom text here like 'my text' $heading = ''; return $heading; } add_filter( 'woocommerce_product_description_heading', 'my_woocommerce_product_description_heading', 10, 1);
Cheers!
GünterHi!
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have.
Best regards,
GünterHi thomasqueck!
Danke dass Du unser Theme verwendest.
Könntest Du uns bitte einen Link zu dieser Seite geben, damit wir uns das anschauen können. Du kannst den Link hier als Private Reply posten.
Best regards,
GünterHi ppi37!
Thank you for using our theme.
Can you give us a link to this page please? Then we can give you the correct CSS. You can post it here as a private reply.
Regards,
GünterHi oeconomedicus!
Danke, dass Du unser Theme verwendest.
Es gibt in WP Dashboard -> Settings -> Discussion gleich oben bei “Default article settings” die Checkbox “Allow people to post comments on new articles “.
Bei jedem Artikel kannst Du dann in der Metabox “Discussion” die Checkbox “Allow Comments” entsprechend aktivieren / deaktivieren.
Solltest Du diese Checkbox nicht sehen, dann oben bei ScreenOptions die entsprechende Checkbox markieren.
Cheers!
GünterHi itchybrain!
Thank you for coming back.
You have to open enfold\search.php (parent theme).
Look for (line 8):
get_header();
and replace with:
get_header(); do_action( 'ava_search_after_get_header' );
This will be implemented in the next update.
In functions.php of the child theme add:
add_action( 'ava_search_after_get_header', 'my_ava_search_after_get_header', 10 ); function my_ava_search_after_get_header() { global $avia_config; $avia_config['layout']['current'] = $avia_config['layout']['fullsize']; $avia_config['layout']['current']['main'] = 'fullsize'; }
Cheers!
GünterHey Julian Andres!
Thank you for coming back.
In custom.css or Enfold -> General Styling -> Quick CSS field put the following:
.summary .cart { clear: none !important; }
Regards,
GünterHi!
Thank you for coming back.
You can use a code like below and adjust the values as needed.
If you want to limit it to this page:
.page-id-15 .read-more-link a { background: none repeat scroll 0 0 red !important; border-radius: 3px !important; padding: 5px 10px !important; }
Or for all pages:
.page .read-more-link a { background: none repeat scroll 0 0 red !important; border-radius: 3px !important; padding: 5px 10px !important; }
Come back if you need more assistance in styling.
Best regards,
GünterHi!
Danke für das feedback.
Bei mir in der Testumgebung funktioniert der Code. Zur Sicherheit nochmals:
add_filter( 'avf_show_default_sidebars', 'remove_default_sidebars', 10, 1); function remove_default_sidebars( $show ) { return false; }
Achte darauf, dass dieser Code nur einmal in der Datei functions,php vorkommt (und entferne auch den Code vom Beginn dieses Posts aus QuickCSS, falls er dort noch drinnen sein sollte)
Welche Fehlermeldung bekommst Du?
Best regards,
GünterHi!
Leider gibt es dafür keine Option zum Einstellen.
Der obige Code gehört NICHT in Quick CSS sondern ans Ende der Datei enfold\functions.php oder enfold-child\functions.php, falls Du ein Child theme verwendest.
Um die Default sidebar komplett ohne Inhalt anzuzeigen, verwende:
add_filter( 'avf_show_default_sidebars', 'remove_default_sidebars', 10, 1); function remove_default_sidebars( $show ) { return false; }
Das ist das einfachste.
Wenn Du nur einzelne Teile nicht anzeigen möchtest, dann obigen Code nicht verwenden.
Wenn Du z.B. nur die Pages nicht anzeigen möchtest, dann den folgenden Code verwenden:
add_filter( 'avf_show_default_sidebar_pages', 'remove_default_sidebar_pages', 10, 1); function remove_default_sidebar_pages( $show ) { return false; }
Wenn keine Kategorien:
add_filter( 'avf_show_default_sidebar_categories', 'remove_default_sidebar_categories', 10, 1); function remove_default_sidebar_categories( $show ) { return false; }
Wenn kein Archiv:
add_filter( 'avf_show_default_sidebar_archiv', 'remove_default_sidebar_archiv', 10, 1); function remove_default_sidebar_archiv ( $show ) { return false; }
Hoffe, das hilft Dir weiter.
Cheers!
GünterHi mmc-werbung!
Please try to increase the allocated memory to at least 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Use WP_MAX_MEMORY_LIMIT and WP_MEMORY_LIMIT.
It might also be necessary to contact your service provider to increase it in php.ini also – if you cannot do it.
Cheers!
GünterHey!
I thought, you wanted to have it only on this page.
Try the following:
#main .content { border-right: 0 none !important; } #main .sidebar { border-left: 0 none !important; }
Cheers!
GünterMarch 25, 2015 at 1:04 pm in reply to: How to increase size of social icons in footer (socket) #417713Hey danbooth!
Thank you for coming back.
Use the following and adjust the values:
#footer .social_widget_icon { border-radius: 20px !important; font-size: 25px !important; height: 40px !important; padding-top: 4px !important; width: 40px !important; }
Cheers!
GünterHi Holger!
Thank you for using our theme.
You can remove parts of the default sidebar with filter hooks (look at enfold\sidebar.php line 81 – 83).
In functions,.php of the parent theme (or child theme) put something like that to remove:
add_filter( 'avf_show_default_sidebar_pages', 'remove_default_sidebar_pages', 10, 1); function remove_default_sidebar_pages( $show ) { return false; }
I will add an action call for the next update to allow adding other sidebars:
// customize default sidebar and add your sidebars do_action ('ava_add_custom_default_sidebars');
You can use then, e.g.:
add_action( 'ava_add_custom_default_sidebars', 'add_my_default_sidebar', 10); function add_my_default_sidebar() { dynamic_sidebar('Displayed Everywhere'); }
Cheers!
GünterHey SeattleNanny97!
Thank you for using our theme.
Put the following in custom.css or Enfold->General Styling->QuickCSS and adjust the values:
#footer .widgettitle { border-bottom: 2px solid #fff !important; }
Regards,
GünterHey robertscott!
Thank you for coming back.
Try the following:
.page-id-219 #main .content { border-right: 0 none !important; } .page-id-219 #main .sidebar { border-left: 0 none !important; }
Cheers!
GünterHi!
Thank you for coming back.
The code above always adds the class ‘class-name’.
Try to replace the code above with:
// Add specific CSS class by filter add_filter( 'body_class', 'my_class_names' ); function my_class_names( $classes ) { global $post; // add 'post_name' to the $classes array $classes[] = $post->post_name; // return the $classes array return $classes; }
You must use post_name because the title might contain spaces
Best regards,
GünterHey reddishpinkmedia!
Thank you for using our theme.
To add your custom classes to the body you can use a filter.
See https://codex.wordpress.org/Function_Reference/body_class and look for the Topic “Add Classes By Filters”.
Put the code in functions,.php of Enfold or of the Child theme.
Come back with further questions.
Cheers!
GünterHi!
Thank you for coming back.
Try the following:
.home .av-rotator-container h3 { font-weight: 900 !important; }
Cheers!
GünterHey decode!
Thank you for coming back.
No, bbpress is supported, but it need NOT be installed in the plugins folder,
Regards,
GünterHey Chad!
Thank you for using our theme.
To completly remove the contact form delete the following file:
enfold\config-templatebuilder\avia-shortcodes\contact.php
The CSS you find in:
enfold\css\shortcodes.css line 1325 – 1443
Look for:
/* ====================================================================================================================================================== Contact Form ====================================================================================================================================================== */
Best regards,
GünterHi djshortkut!
Thank you for coming back.
Use the following and adjust the values:
.iconbox .entry-content-header h3 { font-size: 25px !important; } .iconbox .iconbox_content_container { font-size: 25px !important; }
Cheers!
GünterHey emin!
Thank you for coming back.
1 + 2) Use the following:
#main .title_container { height: 49px !important; } .breadcrumb .breadcrumb-trail .trail-before { display: none !important; }
3) Open the page and in the layout metabox Title Bar Settings select “hide both”. I did that for you already. You can overwrite the general enfold settings for every page here.
Regards,
GünterHey!
Thank you for coming back.
The breadcrumbs HTML structure is in enfold\functions-enfold.php line 312ff and 348ff:
$defaults = array( 'title' => get_the_title($id), 'subtitle' => "", //avia_post_meta($id, 'subtitle'), 'link' => get_permalink($id), 'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>", 'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true), 'breadcrumb' => true, 'additions' => "", 'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/ ); .......... if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true)); $html = str_replace('{class}', $class, $html); $html = str_replace('{title}', $title, $html); $html = str_replace('{additions}', $additions, $html); $html = str_replace('{heading}', $heading, $html);
Cheers!
GünterHey!
Thank you for coming back.
Have a look at http://codex.wordpress.org/Child_Themes. This will give you some background information.
Cheers!
Günter -
AuthorPosts