Forum Replies Created
-
AuthorPosts
-
Hey!
Thank you for coming back.
Add the following and adjust the value for the color:
#menu-item-433 span { background-color: green !important; }
Best regards,
GünterHey mkamir!
Thank you for using our theme.
Can we have a link to that page pls to check for the correct CSS?
Cheers!
GünterHi axelfx07!
Thank you for coming back.
You can use the following code to change the text.
Put in in functions.php at the bottom and replace the text:
add_filter( 'avia_breadcrumbs_args', 'my_avia_breadcrumbs_args', 10, 1 ); function my_avia_breadcrumbs_args($args) { $args['show_home'] = 'My Home text'; return $args; }
Cheers!
GünterHey frankster1234!
Thank you for using our theme.
Can you send us a link to the page so we can check for the correct CSS?
Best regards,
GünterHey!
Thank you for coming back.
There may be 2 reasons:
1) The php memory limit is to low – add the code above in wp-config and/or contact your hoster
2) One of the plugins is causing the troubles. Try to reactivate one after the other and see, when the theme breaks. Try to activate all the rest of the plugins. If the theme does not break any longer, than that plugin might cause the error.
Deactivate all plugins again and try to activate ONLY the plugin(s), that caused the problem. If it works, than it is a php memory problem (or a problem between the plugins).
Cheers!
GünterHey Hamdi!
Thank you for using our theme.
Can you give us a link to your site and explain more closely, what exactly you want to do and you have problems with?
Cheers!
GünterHi!
Thank you for coming back.
Remove the following from custom.css:
.title_container .breadcrumb { top: 20px !important; }
Use the following CSS and adjust the values:
.title_container .main-title { top: 15px !important; } .title_container .breadcrumb { top: 20px !important; }
Cheers!
GünterHi allinmom!
Thank you for using our theme.
Check you have latest WP version.
First deactivate all plugins and try to activate the theme.
There might be a php memory problem.
In wp-config.php at the bottom before
/* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/');
insert the following.
define( 'WP_MAX_MEMORY_LIMIT', '128M' );
If this does not help you might have to contact your hoster to increase memory in php.ini.
Best regards,
GünterHi volmering!
Thank you for using the forum.
Not out of the box. The only thing you might do is to manipulate the length of the string by eliminating parts of the path.
You find the code in enfold\framework\php\class-breadcrumb.php.
Look for apply_filters to find filter hooks or modify the core file.
Cheers!
GünterJanuary 29, 2015 at 11:30 am in reply to: Kann ich im child theme elemente von plugins einfügen? #387626Hi adrianwackernah!
Danke, dass Sie das Forum benutzen.
Man kann alle CSS Änderungen entweder im der Datei enfold-child\style.css eintragen oder auch in Enfold-Child->General Styling->QuickCSS.
Best regards,
GünterHey!
Thank you for coming back.
There is only a workaround:
In functions.php at the bottom activate custom css for the ALB:
/* * add option to edit elements via css class */ add_theme_support('avia_template_builder_custom_css');
This adds a field Custom Css Class at the bottom of the post slider popup.
Enter there a name to the slider(s) you want to change, e.g. my_random_slidersReplace the code above with the following:
add_filter('avia_post_slide_query', 'my_avia_post_slide_query', 10, 2); function my_avia_post_slide_query($query, $params) { $needle = 'my_random_sliders'; if( isset($params['class']) && ( stripos( $params['class'], $needle ) !== false) ) { $query['orderby'] = 'rand'; } return $query; }
Cheers!
GünterHi!
Thank you for coming back.
Try to replace the code above with the following:
add_filter( 'excerpt_length', 'new_excerpt_length' ); function new_excerpt_length( $more ) { if(is_home()) { return 550; } else { return 50; } }
If it does not work, can you give us an admin access to your site pls?
Cheers!
GünterHey!
Glad you found a solution. Thank you for this update.
Enjoy the theme.
Best regards,
GünterHi reddishpinkmedia!
Thank you for coming back.
There is a filter hook, where you can manipulate the query parameters.
In functions.php use code like:
add_filter('avia_post_slide_query', 'my_avia_post_slide_query', 10, 2); function my_avia_post_slide_query($query, $params) { $query['orderby'] = 'rand'; return $query; }
More info about $param you find at: enfold\config-templatebuilder\avia-shortcodes\postslider.php line 452 – 510.
Cheers!
GünterJanuary 28, 2015 at 2:26 pm in reply to: "Title Bar Settings": how to set this to "only breadcrumbs"? #386966Hi!
I implemented it and posted the update request to Kriesi.
Enjoy the theme.Best regards,
GünterJanuary 28, 2015 at 1:13 pm in reply to: "Title Bar Settings": how to set this to "only breadcrumbs"? #386939Hi!
Thank you for coming back.
If you have only few pages that need the title you can modify the filter hook:
add_filter('avf_title_args', 'my_avf_title_args', 10, 2 ); function my_avf_title_args ($args, $id) { // enter all the ID's of the pages that need a title seperated by , $pages_titles = array( 150, 200, 210 ); if ( ! in_array( $id, $pages_titles ) ) { $args['title'] = ''; } return $args; }
I will try to implement this feature, so it will be in the core in one of the next updates.
Cheers!
GünterHey donbaek!
Thank you for using our theme.
In functions.php put something like the following code:
add_filter( 'excerpt_length', 'new_excerpt_length' ); function new_excerpt_length( $more ) { if(is_front_page()) { return 150; } else { return 50; } }
Also see the following post:
http://wordpress.stackexchange.com/questions/6310/how-to-control-manual-excerpt-length
Cheers!
GünterHi!
@wingman
Thank you for using the forum.
Try the following:
.ajax_search_excerpt { display: none !important; }
If it does not help, can you send us a link to your page so we can have a look?
Regards,
GünterHey!
Thank you for coming back.
Check again in your setup of the contact form, that all opening <div> have a closing </div> – I think there is one missing.
To get access to your WP Backend we need an admin account: Add a username and password and give that user admin rights. You can post this data in the private section and after we are finished delete this user.
Best regards,
GünterHi buellfire!
Thank you for using our theme.
To change the color of all del elements you can use:
del { color: red !important; }
To limit it to a special page, e.g :
.page-id-2632 del { color: red !important; }
Regards,
GünterHey!
Thank you for coming back.
For the given link the code is:
.home .entry-content-header { display: none !important; }
Regards,
GünterJanuary 28, 2015 at 11:49 am in reply to: "Title Bar Settings": how to set this to "only breadcrumbs"? #386906Hey COLORIT!
Thank you for using our theme.
Currently the easiest way is with CSS and limiting the code to the pages, where you want to hide the title like:
.page-id-2630 .title_container .main-title, .page-id-2632 .title_container .main-title { display: none !important; }
Alternative you can use a filter hook. Add the following to functions.php at the end:
add_filter('avf_title_args', 'my_avf_title_args', 10, 2 ); function my_avf_title_args ($args, $id) { // enter all the ID's of the pages with no title seperated by , $no_titles = array( 150, 200, 210 ); if ( in_array( $id, $no_titles ) ) { $args['title'] = ''; } return $args; }
Best regards,
GünterJanuary 28, 2015 at 11:24 am in reply to: How to change the "You are here:" text in breadcrumbs #386898Hi ShortieD!
Thank you for coming back.
It looks fine for me on FF. Did you clear your browser cache and reload the page?
Cheers!
GünterJanuary 27, 2015 at 6:26 pm in reply to: Auto-update current year in footer copyright notice #386478January 27, 2015 at 6:25 pm in reply to: How to increase the text size inside an accordion element? #386474 -
AuthorPosts