Forum Replies Created
-
AuthorPosts
-
seothemesMember
The code snippet is what's causing the issue.
It's showing an error because there is no text to be used as the item name for the "home" item, it is being replaced with an icon which is not a valid name.
Changing the code snippet to the following will fix the issue for you:
add_filter( 'genesis_breadcrumb_args', 'prefix_customize_breadcrumbs' ); /** * Customize breadcrumbs args. * * @since 1.0.0 * * @param array $args Default breadcrumb args. * * @return array */ function prefix_customize_breadcrumbs( $args ) { $args['labels']['prefix'] = ''; $args['sep'] = ' - '; $args['home'] = '<i class="fas fa-home"><span class="screen-reader-text">Home</span></i>'; return $args; }
seothemesMemberHi Craig,
Did you manage to get in touch with us?
This warning is showing because there is no index.php file in the theme root directory. It can be fixed by adding one.
This will happen with most child themes, StudioPress or third party since most do not include index files. However, servers normally handle this as you can see in the theme demo when trying to access wp-content directories - https://demo.seothemes.com/business-pro/wp-content/themes/business-pro-theme/
I'd suggest getting in touch with your host to see why this is not the default behaviour. It could be malware but it could also be an incorrect server configuration.
August 28, 2018 at 9:39 pm in reply to: StudioPress sold me a theme that advertises a search function it doesn't have #222784seothemesMemberJust to clarify, the search toggle icon was using the deprecated Nav Extras feature which has now been removed from new installs. It was still appearing in old installs up until recently, that is why it was present in the theme screenshots, but is not in the theme demo.
This functionality can be added back to the theme by using a modified version of the code snippet from the page Brad linked to, see below:
add_filter( 'wp_nav_menu_items', 'theme_menu_extras', 10, 2 ); /** * Filter menu items, appending a search form. * * @param string $menu HTML string of list items. * @param stdClass $args Menu arguments. * * @return string Amended HTML string of list items. */ function theme_menu_extras( $menu, $args ) { if ( 'primary' !== $args->theme_location ) { return $menu; } ob_start(); get_search_form(); $search = ob_get_clean(); $menu .= '<li class="right search">' . $search . '</li>'; return $menu; }
Also, the link at the bottom of that page is working for me https://my.studiopress.com/documentation/tutorials/general/how-to-customize-and-troubleshoot-css/ - However you need to be logged in to my.studiopress.com to view it.
seothemesMemberHi Joanna,
Sorry to hear that.
We have just added a list of recommended plugins to the documentation - https://docs.seothemes.com/article/90-corporate-pro-recommended-plugins. There is also an admin notice upon installing the theme which lists the recommended plugins to install.
Also, I'm not sure if you noticed the setup video on the theme installation article. This demonstrates how you can get the theme looking exactly like the demo in just a few clicks - https://docs.seothemes.com/article/71-corporate-pro-installing-your-theme
If you feel that there is anything else missing from the documentation please let me know and I'll be more than happy to add it.
Thanks,
seothemesMemberHi there,
Marc is correct, the footer credits can be edited from the Footer Credits widget area. I moved this to it's own widget area to hopefully make it easier to edit.
Please refer to the last section of this article for further instructions https://docs.seothemes.com/article/77-corporate-pro-site-wide-widget-areas
seothemesMemberHi Roger,
Sorry for the delayed response.
The YouTube embed uses the built-in WordPress Video widget.
Let me know if you have any other questions.
seothemesMemberHi Michelle,
Just wanted to let you know that Corporate Pro comes with a 'Boxed Template' which creates a similar look to Executive Pro when applied to a page.
Here's the demo https://demo.seothemes.com/corporate-pro/templates/boxed-template/.
Thought this might help in making your decision. Please let me know if you have any questions.
seothemesMemberHi Marc,
Sorry to keep you waiting, I realize that 36 hours is a long wait for a simple question.
We try to respond to every support request within 24 hours, yesterday was just an off day and I do apologize.
I’ve replied to your message and hopefully this fixes the issue for you.
If you have any further questions please let me know.
-
AuthorPosts