Forum Replies Created
- AuthorPosts
You’re welcome.
We may also revisit the idea of a collaborative language translation project too.
Already planned, soon. This will also be apart of an overall general design freshen up to keep up with popular design trends.
Yes, until explicitly declaring a custom menu, WordPress, by default, auto-fills the menu.
Yeah, that’s a common quirk with WordPress. Another thing to look out for when making changes and WP gets confused about widgets, is that they’ll be dropped down under Inactive Widgets. So luckily, they’ll never be lost, just need to be rearranged sometimes if you’re registering/unregistering widget areas.
No need to add the additional function, just register the new widget areas below:
register_sidebar( array ( 'name' => __( 'Content Widget Area', 'startup' ), 'id' => 'content-widget-area', 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => "</li>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );
Like so:
register_sidebar( array ( 'name' => __( 'Content Widget Area', 'startup' ), 'id' => 'content-widget-area', 'before_widget' => '<li id="%1$s" class="widget-container %2$s">', 'after_widget' => "</li>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array ( 'name' => __( 'Banner Center Widget Area', 'startup' ), 'id' => 'bannercenter-widget-area', 'before_widget' => '<div id="%1$s">', 'after_widget' => "</div>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array ( 'name' => __( 'Banner Right Widget Area', 'startup' ), 'id' => 'bannerright-widget-area', 'before_widget' => '<div id="%1$s">', 'after_widget' => "</div>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );
Great to hear, and just to mention this here, if it might be useful to others, in case they don’t wish to use a child theme (which requires file editing), they can use this plugin to add custom CSS:
You don’t need to know how to code or even have to edit any files directly. This is a setting in the theme options, please read:
https://startupwp.com/topic/customizing-your-theme/
It’s just a matter of copying and pasting the code above into the Custom CSS box and hitting Save. :)
Should be as simple as adding:
#content{float:right} #sidebar{float:left;margin:0 0 0 2%}
Try:
hr { background: #ccc; border: none; height: 1px; }
You’re welcome.
It worked?
Try:
hr { background-color: #000; border: 1px none; color: #ccc; height: 1px; margin: 30px 0; }
Open to the community, make sure you’re logged in an go to:
https://startupwp.com/forum/projects/#new-post
Should be able to create a new topic.
You’re welcome.
1. Simply utilizing a plugin like Theme My Login plus out-of-the-box capabilities, this should be pretty straightforward:
http://wordpress.org/plugins/theme-my-login/
But, if you find additional capabilities are required you may want to think about upgrading bbPress to BuddyPress (http://wordpress.org/plugins/buddypress/) and/or use a members plugin like:
http://wordpress.org/plugins/members/
2. They won’t, their role would need to be as high as Editor (which you would have to explicitly grant them that level of permission) in order to edit pages. However, for peace of mind, you can set Theme My Login to block everyone except for Admins from being able to access /wp-admin/. Once someone gains access to view a password-protected page, it’s no different than their viewing of one of your normal, public pages.
Just tested and
<hr />
appears fine in IE. Possibly try a different tester, for example:Any IE version, or a specific version and older?
Apologies, unless we can see the issue live we cannot investigate.
In this matter, the best approach would be to go into maintenance mode (http://wordpress.org/plugins/maintenance-mode/) and then, with the help of a web pro that can work with you hands-on and privately, go over such customizations.
Not seeing the issue at the moment, is it not live?
As whole, which includes coupon creation and tons of other great features as well as pretty much endless extensibility, WooCommerce is an excellent store plugin:
You’re welcome, we’ll be here when you need us. :)
We took a closer look and wrote up a doc on it:
https://startupwp.com/topic/turn-off-responsive-design/
Hopefully, that’ll do the trick. :)
You’re welcome.
Just looked over your site and it appears the CSS solution is working fine, you might need to clear all caches and restart your browser.
You may also try:
body, #wrapper { min-width: 1000px !important; }
If that’s still a no-go, can you please share a screenshot of what you’re seeing?
Thank you.
- AuthorPosts