Forum Replies Created
- AuthorPosts
There are 3 possible approaches for this, in order from least hacks required, to the most:
1. We can add a menu directly to the content of the page using the Creative template. — Requires no child theme.
2. We can add the main menu to the Creative template. — Requires a child theme.
3. We can create a new menu just for this page and have it controllable under Appearance > Menus. — Requires a child theme.
Which option are you thinking?
Happy to hear.
Just add
.home
in front of the CSS solution you found and it should only affect the homepage.Are you on the pro version of the theme? Do you have the latest package downloaded? Have you followed these instructions?:
https://startupwp.com/topic/setting-up-the-slider/
In either the free version or pro, from your main admin menu, simply navigate to:
Appearance > Startup Options
Then among the checkbox options you’ll find the option to disable the slider. Additionally you may want to check under Plugins and make sure that any plugins you aren’t using are deactivating and then deleted.
You’re welcome.
July 25, 2015 at 7:51 PM in reply to: StartupWP and WordPress credits are not removed by default #2369Happy to hear it.
This reply should answer both your support questions and possibly other issues you may have been having:
https://startupwp.com/topic/startupwp-and-wordpress-credits-are-not-removed-by-default/#post-2358
July 24, 2015 at 7:51 PM in reply to: StartupWP and WordPress credits are not removed by default #2358This is because you do not have the pro version activated. In fact, you’re on an out-dated version of the free version of Startup.
If you just recently purchased the pro version, keep in mind that it doesn’t automatically upgrade your free version to pro. You have to download and install the pro version like a separate theme:
https://startupwp.com/topic/installing-your-theme/
There’s arguments for and against a paywall structure like that that would allow for auto-upgrading to pro, but this is currently against the wordpress.org theme guidelines.
Welcome.
You’re welcome.
The theme is responsive by default meaning it will adjust automatically. However if you’re looking for even more advanced control, a plugin like the following might do the trick:
Add:
.woocommerce ul.products li.product .onsale { left: 0; right: auto; }
And update:
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { width: 100%; }
to:
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { background: #f6f6f6; box-sizing: border-box; min-height: 360px; padding: 10%; text-align: center; width: 100%; }
And update:
.woocommerce ul.products li.product a img { max-height: 150px; width: auto; }
to:
.woocommerce ul.products li.product a img { margin: 10px auto; max-height: 150px; width: auto; }
Give this a try:
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { width: 100%; } .woocommerce ul.products li.product a img { max-height: 150px; width: auto; } .woocommerce ul.products li.product::before, .woocommerce-page ul.products li.before { content: ""; } @media all and (max-width: 600px) { .product-boxes { width: 100%; } }
The issue appears to be with this style you’ve added:
.widget-container, .post-template-templatestemplate-home-grid-post-php .widget-container { float: left; padding: 0 1%; width: 31.3%; }
Please update that to:
.post-template-templatestemplate-home-grid-post-php .widget-container { float: left; padding: 0 1%; width: 31.3%; }
Please note that these aren’t issues, errors, warnings, bugs, or broken code, these are optional suggestions and recommendations given by the tool. No matter what website, there will always be something that can be improved. As we move forward with this discussion, please keep in mind that when using these kind of tools the goal isn’t to appease them 100% which realistically isn’t possible, but to look to it for ideas on how to improve.
Your site: http://www.blessedfurever.com/.
The most important factor of site speed is your hosting, it looks like you’re using BlueHost shared hosting. This is a great place to start for new websites and your website is loading fairly quickly. Are you running Google Analytics? How many monthly visitors are getting? Once this increases significantly is when the time will come to upgrade your hosting to a faster package.
Things you can do now include installing W3 Total Cache (free):
https://wordpress.org/plugins/w3-total-cache/
And if you want to take it a step even further, you could consider a CDN service like CloudFlare (paid):
CloudFlare partners with BlueHost so it’s fairly easy to get going, but still, we would recommend not paying for services like this til your traffic is way up and you’re actually seeing major loading issues.
One last question, what kind of internet are you using and what’s your internet speed?
Thank you.
Are you on the free or pro version? In the pro version this is possible from the settings.
On free, we can easily add this to header.php via a child theme.
Which route would you like to take?
Also, please share the link to your site.
May 8, 2015 at 11:38 PM in reply to: Clickable featured images at category view + read more button #2240Have you tried?:
<section class="entry-summary"> <a href="<?php the_permalink(); ?><?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?></a> <?php the_excerpt(); ?> <a href="<?php the_permalink(); ?>Olvass Tovább</a> <?php if ( is_search() ) { ?><div class="entry-links"><?php wp_link_pages(); ?></div><?php } ?> </section>
May 6, 2015 at 3:13 PM in reply to: Clickable featured images at category view + read more button #2237Please share your code for entry-summary.php.
You’re welcome. May have gone into your spam folder.
Thanks for the note. We’ll forward this along to the Nivo developers.
April 25, 2015 at 11:47 AM in reply to: Clickable featured images at category view + read more button #2231Referring to https://startupwp.com/topic/featured-images-in-category-view/, wrap:
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?>
With:
<a href="<?php the_permalink(); ?><?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?></a>
Then, you can simply manually add the read more here too:
<a href="<?php the_permalink(); ?>Olvass Tovább</a>
#header { margin-top: -30px; }
#menu ul li a { color: #6E6262; text-shadow: none; }
Link to your site please. There might be a slight variation in the code.
- AuthorPosts