Forum Replies Created
-
AuthorPosts
-
April 9, 2016 at 12:29 pm in reply to: "Title" Element wrong position above "Magazine" Element #610558
Hi eKMUch!
Thank you for using our theme.
Turn on the custom CSS for the ALB:
In the custom css field of the special heading add your class:
my_sp_header_align
In custom.css or Enfold -> General Styling -> Quick CSS field (or when using a child theme: in styles.css of the child theme or Enfold-Child -> General Styling -> Quick CSS field) put the following and adjust the values as needed:
.page-id-70 .my_sp_header_align { padding-left: 25px !important; }
Cheers!
GünterHey Manfred!
Danke dass Du unser Theme verwendest.
In Enfold -> Header -> Extra Elements findest Du die Selectbox Header Secondary Menu.
Dort die Position einstellen und ein Secondary menu anlegen.
Regards,
GünterHi!
Thank you for coming back.
To remove the underline:
In custom.css or Enfold -> General Styling -> Quick CSS field (or when using a child theme: in styles.css of the child theme or Enfold-Child -> General Styling -> Quick CSS field) put the following and adjust the values as needed:
a:hover{ text-decoration: none !important }
Contact Form: there is no explicit option to change the styling. You have to use CSS.
Regards,
GünterHey!
Thank you for your feedback.
This is the default behavior of this element.
It loads all elements for a page (and the next pages on load more) and the filter on top can only filter the elements displayed on the loaded pages.
It is not possible only to load the elements of a filter with the current implementation out of the box.
You can post a feature request for that on https://kriesi.at/support/enfold-feature-requests/. Kriesi looks at these reguarly and decides, what to implement or develop.
Best regards,
GünterMarch 29, 2016 at 3:49 pm in reply to: Prev/Next product links on side of window in single prod page #604644Hi!
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Cheers!
GünterHi!
@bugfreesystems – thanks for posting your solution.@gabri
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.Best regards,
GünterHey!
Thank you for coming back.
This is an intended behaviour of the theme and cannot be changed easily.
If you have programming skills you can dig into
enfold\config-woocommerce\config.phpand try to change it.
Unfortunately that kind of customisation is out of the scope of our forum.
Regards,
GünterHi!
Thank you for coming back and sorry for the late reply..
With Enfold 3.5.1:
Goto file enfold\includes\loop-index.php line 157- 171:
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') ); $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', $excluded_taxonomies, get_post_type($the_id), $the_id); if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; } } }
and replace this with:
$taxonomies = get_object_taxonomies(get_post_type($the_id)); $cats = ''; $excluded_taxonomies = array_merge( get_taxonomies( array( 'public' => false ) ), array('post_tag','post_format') ); $excluded_taxonomies = apply_filters('avf_exclude_taxonomies', $excluded_taxonomies, get_post_type($the_id), $the_id); $cat_links = array(); $skip_ids = array( 16, 20 ); // enter the term_id's to skip if(!empty($taxonomies)) { foreach($taxonomies as $taxonomy) { if(!in_array($taxonomy, $excluded_taxonomies)) { // $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' '; $terms = get_the_terms( $the_id, $taxonomy ); if ( is_wp_error( $terms ) ) { continue; } if ( empty( $terms ) ) { continue; } foreach ( $terms as $term ) { if( in_array( $term->term_id, $skip_ids ) ) { continue; } $link = get_term_link( $term, $taxonomy ); if ( is_wp_error( $link ) ) { continue; } $cat_links[] = '<a href="' . esc_url( $link ) . '" rel="tag">' . $term->name . '</a>'; } } } } if( ! empty( $cat_links) ) { $cats = implode( ', ', $cat_links ); }
Cheers!
GünterHi!
Thank you for coming back.
Sorry to say – at the moment not. If you have programming skills you can try to do it with jQuery and Javascript.
But you can post a feature request on https://kriesi.at/support/enfold-feature-requests/. Kriesi looks at these reguarly and decides, what to implement or develop.
Cheers!
GünterMarch 26, 2016 at 12:53 pm in reply to: CSS question: how & where to extend h1 post-title with additional own CSS class? #603836Hey Chris!
Thank you for using our theme.
The code is correct, but h1 are also used in other loop files like loop-page. Without having more information where and what you are doing it’s hard to say, why it is not working.
Maybe you forgot to clear the browser cache and try to refresh the page several times.
Regards,
GünterHey!
Thank you for coming back.
Out of the box this is not possible.
You have to change the core file enfold\config-templatebuilder\avia-shortcodes\helper-masonry.php line 248:
Look for
$img_html = '<img src="'.$attachment[0].'" title="'.$title.'" alt="'.$alt.'" />';
and replace with
$img_html = '<img src="'.$attachment[0].'" title="'.$title.'" alt="'.$alt.'" id="image_' . $thumb_ID . '" />';
Remember to apply this change after every update.
Cheers!
GünterMarch 25, 2016 at 3:12 pm in reply to: Portfolio Grid with Heights the same, widths proportional #603654Hey!
Glad you found a solution
Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Cheers!
GünterHi!
Thank you for coming back and sorry for the delay.
The blog page follows the WP standard to show a list of posts.
Of course, everything is possible. You can change the template behaviour by writing your own code.
What about: Consider using the template builder and create a page.
Regards,
GünterHi!
Thank you for coming back and sorry for the late answer.
Do you mean using the filter function?
This is the behaviour of the grid: It loads “All” elements and the filter only filters these portfolio loaded – it does not make a call to the server to load more.
Hope, this answers your question.
Best regards,
GünterHey!
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Best regards,
GünterHey!
Thank you for coming back.
Could you send us a link to the page please to see, what you want to achieve?
Thanks.You can post it in the private content.
Regards,
GünterHey martindabro!
Thank you for using our theme.
Currently not.
You can post a feature request on https://kriesi.at/support/enfold-feature-requests/. Kriesi looks at these reguarly and decides, what to implement or develop.
Regards,
GünterHey muuclemens!
Danke dass Du unser Theme verwendest.
Habe mir Deine Seite angeschaut – verstehe aber nicht das Problem.
Könntest Du es genauer beschreiben – ein screenshot , wo Du die Änderung markierst, wäre sehr hilfreich.
Danke.Best regards,
GünterHi!
Thank you for using our theme.
Glad you found a solution and thank you for posting it in the forum.
Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Best regards,
GünterHi!
Thank you for using our theme.
I tried it on my installation and it worked:
In functions.php line 425:
if(!current_theme_supports('deactivate_tribe_events_calendar')) { require_once( 'config-events-calendar/config.php' ); //compatibility with the Events Calendar plugin }
if you remove these lines (do not forget to save when doing it from WP Dashboard editor) and reload the page the design changes.
Can you create us a temporary admin account please? Then we can check your code and help you. You can post it here as a private reply.
Best regards,
GünterHey!
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Best regards,
GünterMarch 25, 2016 at 10:14 am in reply to: Contact form – confirmation mail not sent when multiple recipient #603612Hey!
Danke dass Du unser Theme verwendest.
Vermutlich ist wie oben angeführt da etwas beim Upload der files passiert.
Versuche mit ftp das theme neu hochzuladen.
Falls das nichts hilft, fallback auf eine Sicherung die funktioniert hat (beim hoster anfragen) und das update mit ftp hochladen.
Cheers!
GünterHi!
Glad we could help you.
Can we close this thread or is there anything left concerning this thread?
You can open a new thread for other questions.
Regards,
GünterHi smartretail!
Thank you for using our theme.
This cannot be done out of the box.
You need to make heavy changes in code to files and unfortunately that kind of customisation would be out of the scope of our forum and needs to be done by a freelance developer.
Cheers!
GünterMarch 25, 2016 at 9:52 am in reply to: Can not get blog post image on home page to be the same size #603601Hi Selsi21!
Thank you for using our theme.
Probably your old theme had defined other image sizes,
Try to regenerate thumbnails of the images with a plugin like
https://de.wordpress.org/plugins/regenerate-thumbnails/
Best regards,
GünterHi!
Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Cheers!
GünterMarch 24, 2016 at 7:02 pm in reply to: Contact form – confirmation mail not sent when multiple recipient #603351Hi!
Thank you for coming back.
I’ll take care of this problem and try to find a fix.
Enjoy the theme and feel free to come back with further questions and/or problems you have. Simply open a new thread.
Cheers!
GünterHey!
I’m afraid, this seems to be a problem with the twitter feed widget:
Cheers!
Günter -
AuthorPosts