Forum Replies Created
- AuthorPosts
Hi Larita,
Please see https://startupwp.com/topic/upgrading/
And if you have any specific questions we would be happy to help.
If you would still like a refund we just need your final confirmation on that.
Thank You
There’s no set limitation. You may upload a logo or a full width header/banner graphic (1000px wide) if you like.
This will be a multi-step customization.
You’ll need a good text/code editor:
http://www.barebones.com/products/textwrangler/ (Mac)
http://notepad-plus-plus.org/ (Win)And you’ll also need to know how to FTP (check with your host support/documentation if you need help with this).
1. Unless you intend on not upgrading to new versions and just managing the theme yourself you’ll need to setup a child theme:
https://startupwp.com/topic/child-theming/
2. Copy over functions.php to the child theme folder and find the widget code inside, the last registered widget area should look like:
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>',
) );Just copy that and add your new one below with whatever details you’d like to use, suggested:
register_sidebar( array (
'name' => __('Far Right Sidebar Widget Area', 'startup' ),
'id' => 'frsidebar-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>',
) );3. Copy over the template-sidebar-right-right.php file from the /templates/ folder, but just place it in the root of the child theme folder (so no templates folder) and rename to template-sidebar-three-right.php or whatever you like.
4. Open it up, and find this line:
<?php get_footer(); ?>
Just above that paste in:
<div id="frsidebar-sidebar">
<?php if ( is_active_sidebar("frsidebar-widget-area") ) : ?>
<div id="frsidebar" class="widget-area">
<ul class="sid">
<?php dynamic_sidebar("frsidebar-widget-area"); ?>
</ul>
<div class="clear"></div>
</div>
<?php endif; ?>
</div>5. Add the following CSS to the child theme stylesheet:
.page-template-template-sidebar-three-right-php #content{width:48%;padding:0;margin:0 0 0 2%}
#frsidebar-sidebar{width:14%;margin:0 2%;float:left}6. Upload and activate the child theme like any other theme (though manually – or you could just zip it and do it the automatic way too).
7. Edit a page and switch the template to the new one you just created and save, add widgets to the new sidebar under Appearance > Widgets.
Please Note: This has not been tested. However should work just fine. The only thing that could likely need adjustment is the CSS.
Great, be sure to share it with everyone when you’re done:
Private email sent to the email address associated with your forum account.
Hi finucap2,
You followed https://startupwp.com/topic/setting-up-the-slider/ and checked it twice?
Make sure to delete out the old free slider plugin just to be sure you’re not accidentally using that one.
Link to your site please and I might be able to investigate further. Are you using a caching/minification plugin at all?
Have you tried deactivating all other plugins?
Thank You
Great, let us know if you need further help.
.comments-link{display:none}
You’re welcome.
Follow up here that contains a link with some more info:
But, for the most part you’ll need to contact your host support about your PHP settings as I initially thought.
Happy to hear you got it working.
Yes, free essentially uses the free version of the slider plugin and pro uses a different pro version of the slider plugin.
Delete out all current slider plugins (so not to confuse them and make sure you activate just the pro plugin) and follow the documentation exactly:
Hi arjan,
I cannot pinpoint the issue for you so I’ve moved support over to:
http://support.dev7studios.com/discussions/nivo-slider-wordpress-plugin/1494-error-when-uploading
to see if they have any insight into what could be causing this.
Thank You
It might be related to the issue where you’re not properly uploading images and saving so that they’re set and available to be seen:
I think I see what’s happening. You’re uploading images, but then you’re clicking “Upload files” again which is actually interrupting the the upload.
Click “Upload files” just once and then select your files either double-clicking or clicking “Open” then stop, don’t do anything. Let your files upload and then adjust your slider settings further or save, but do not click “Upload files” again and you should be good.
Hi ballonbutikken,
Thanks for going Pro!
StartupPro uses an entirely different (and much better) slider plugin/feature.
See: https://startupwp.com/topic/setting-up-the-slider/
Thank You
See: https://startupwp.com/topic/setting-up-the-slider/
And also you can reference other documentation here:
Hi arjan,
I’m just trying to understand the issue, one way or the other and I apologize that I am still a little unclear. Please be patient while we troubleshoot the issue.
I couldn’t find much info on “Error: -300, Message: IO error“, certainly nothing specifically related to WordPress, themes or plugins (http://support.dev7studios.com/kb/nivo-slider-wordpress-plugin/using-custom-themes is too broad to be of any help here – please note that the theme does support featured images anyways and seems completely unrelated to issues of uploading images). I also do not experience this issue myself in any browser nor has there been any other report of this issue yet (so this is likely an isolated issue).
My best guess is that it’s a PHP upload limitation (especially if you’re trying to upload many images at once), in which case you’ll need to contact your host support.
– What hosting/kind of hosting do you use?
– Is everything up-to-date? (check under Dashboard > Updates)
– Have you tried deactivating all other plugins except for Nivo Slider? (to see if one of the other plugins is causing the conflict)Thank You
Hi arjan,
Not entirely sure what you’re trying to do. We can utilize the slider, but you’ll need to setup a child theme:
https://startupwp.com/topic/child-theming/
And I can then instruct you on moving the slider to above the menu if I am indeed understanding what you want correctly?
Thank You
September 20, 2012 at 6:50 AM in reply to: Sidebar not displaying properly in Internet Explorer #245You’re welcome.
Actually, since it’s only an IE8 (and possibly under) issue we can apply a specific hack so we don’t mess with the quality of the design in IE9.
Try this instead:
#sidebar{width:29.9%\9}
Reference browser-specific hacks here:
http://css-tricks.com/snippets/css/browser-specific-hacks/
If others report this issue as well we’ll officially add it to the theme.
Just with the plugin options page? But, the slider itself is appearing fine for you on your website in all browsers? Just want to make sure for quality assurance.
September 19, 2012 at 10:05 PM in reply to: Sidebar not displaying properly in Internet Explorer #236Hi gotbob,
This only happens in IE8, or is this also happening in IE9?
Try:
#sidebar{width:29.9%}
https://startupwp.com/topic/customizing-your-theme/
If it still isn’t working try lowering 29.9 until it does fit.
Thank You
Just to be sure, everything is resolved now? Just a temporary hiccup?
You’re welcome.
You’ll want to setup a child theme:
https://startupwp.com/topic/child-theming/
Then copy over header.php from your parent theme. In your theme options you’ll want to choose the logo option. Then find the following in header.php:
<?php
if (!is_singular()) {echo '<h1>';}
echo '<a href="'.home_url().'/" title="'.esc_attr(get_bloginfo('name')).'" rel="home">';
if ($options['logo']!="")
echo '<img src="'.esc_url($options['logo']).'" alt="'.esc_attr(get_bloginfo('name')).'" id="logo" />';
else
echo esc_html(bloginfo( 'name' ));
echo '</a>';
if (!is_singular() ) {echo '</h1>';} ?>Either above or below this block of code, you’ll want to add:
<h1>Your Site Title</h1>
- AuthorPosts